pax_global_header00006660000000000000000000000064146033010540014506gustar00rootroot0000000000000052 comment=3fbebb36621c03b2981ccee03246ea40455bd792 yaegi-0.16.1/000077500000000000000000000000001460330105400126715ustar00rootroot00000000000000yaegi-0.16.1/.github/000077500000000000000000000000001460330105400142315ustar00rootroot00000000000000yaegi-0.16.1/.github/ISSUE_TEMPLATE/000077500000000000000000000000001460330105400164145ustar00rootroot00000000000000yaegi-0.16.1/.github/ISSUE_TEMPLATE/bug_report.yml000066400000000000000000000026251460330105400213140ustar00rootroot00000000000000name: Bug Report description: Create a report to help us improve body: - type: markdown attributes: value: | ⚠️ Make sure to browse the opened and closed issues before submit your issue. - type: textarea id: sample attributes: label: "The following program `sample.go` triggers an unexpected result" value: | package main func main() { // add a sample } render: go validations: required: true - type: textarea id: expected attributes: label: Expected result description: |- ```console $ go run ./sample.go // output ``` placeholder: $ go run ./sample.go render: console validations: required: true - type: textarea id: got attributes: label: Got description: |- ```console $ yaegi ./sample.go // output ``` placeholder: $ yaegi ./sample.go render: console validations: required: true - type: input id: version attributes: label: Yaegi Version description: Can be a tag or a hash. validations: required: true - type: textarea id: additional attributes: label: Additional Notes description: Use [Markdown syntax](https://help.github.com/articles/github-flavored-markdown) if needed. validations: required: false yaegi-0.16.1/.github/ISSUE_TEMPLATE/config.yml000066400000000000000000000005211460330105400204020ustar00rootroot00000000000000blank_issues_enabled: false contact_links: - name: Questions url: https://community.traefik.io/c/yaegi about: If you have a question, or are looking for advice, please post on our discussions forum! - name: Documentation url: https://pkg.go.dev/github.com/traefik/yaegi about: Please take a look to our documenation. yaegi-0.16.1/.github/ISSUE_TEMPLATE/feature_request.yml000066400000000000000000000015621460330105400223460ustar00rootroot00000000000000name: Feature request description: Propose a change to Yaegi body: - type: markdown attributes: value: | ⚠️ Make sure to browse the opened and closed issues before submit your issue. - type: textarea id: proposal attributes: label: Proposal description: Write your feature request in the form of a proposal to be considered for implementation. validations: required: true - type: textarea id: background attributes: label: Background description: Describe the background problem or need that led to this feature request. validations: required: true - type: textarea id: workarounds attributes: label: Workarounds description: Are there any current workarounds that you're using that others in similar positions should know about? validations: required: true yaegi-0.16.1/.github/workflows/000077500000000000000000000000001460330105400162665ustar00rootroot00000000000000yaegi-0.16.1/.github/workflows/go-cross.yml000066400000000000000000000025161460330105400205510ustar00rootroot00000000000000name: Build Cross OS on: push: branches: - master pull_request: jobs: cross: name: Go runs-on: ${{ matrix.os }} defaults: run: working-directory: ${{ github.workspace }}/go/src/github.com/traefik/yaegi strategy: matrix: go-version: [ oldstable, stable ] os: [ubuntu-latest, macos-latest, windows-latest] include: - os: ubuntu-latest go-path-suffix: /go - os: macos-latest go-path-suffix: /go - os: windows-latest go-path-suffix: \go steps: # https://github.com/marketplace/actions/checkout - name: Checkout code uses: actions/checkout@v4 with: path: go/src/github.com/traefik/yaegi # https://github.com/marketplace/actions/setup-go-environment - name: Set up Go ${{ matrix.go-version }} uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} stable: true - name: Setup GOPATH run: go env -w GOPATH=${{ github.workspace }}${{ matrix.go-path-suffix }} # TODO fail on windows # - name: Tests # run: go test -v -cover ./... # env: # GOPATH: ${{ github.workspace }}${{ matrix.go-path }} - name: Build run: go build -race -v -ldflags "-s -w" -trimpath yaegi-0.16.1/.github/workflows/main.yml000066400000000000000000000053561460330105400177460ustar00rootroot00000000000000name: Main on: push: branches: - master pull_request: env: GO_VERSION: stable GOLANGCI_LINT_VERSION: v1.56.2 jobs: linting: name: Linting runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go ${{ env.GO_VERSION }} uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} - name: Check and get dependencies run: | go mod tidy git diff --exit-code go.mod # git diff --exit-code go.sum go mod download - name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }} run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION} - name: Run golangci-lint ${{ env.GOLANGCI_LINT_VERSION }} run: make check generate: name: Checks code and generated code runs-on: ubuntu-latest needs: linting strategy: matrix: go-version: [ oldstable, stable ] steps: - name: Check out code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go ${{ matrix.go-version }} uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} stable: true - name: Check generated code run: | rm -f interp/op.go make generate git update-index -q --refresh CHANGED=$(git diff-index --name-only HEAD --) test -z "$CHANGED" || echo $CHANGED test -z "$CHANGED" main: name: Build and Test runs-on: ubuntu-latest needs: linting defaults: run: working-directory: ${{ github.workspace }}/go/src/github.com/traefik/yaegi strategy: matrix: go-version: [ oldstable, stable ] steps: - name: Check out code uses: actions/checkout@v4 with: path: go/src/github.com/traefik/yaegi fetch-depth: 0 - name: Set up Go ${{ matrix.go-version }} uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} stable: true # https://github.com/marketplace/actions/cache - name: Cache Go modules uses: actions/cache@v3 with: path: ./_test/tmp key: ${{ runner.os }}-yaegi-${{ hashFiles('**//_test/tmp/') }} restore-keys: | ${{ runner.os }}-yaegi- - name: Setup GOPATH run: go env -w GOPATH=${{ github.workspace }}/go - name: Build run: go build -v ./... - name: Run tests run: make tests env: GOPATH: ${{ github.workspace }}/go yaegi-0.16.1/.github/workflows/release.yml000066400000000000000000000011641460330105400204330ustar00rootroot00000000000000name: Release on: push: tags: - v[0-9]+.[0-9]+* env: GO_VERSION: stable jobs: release: name: Create a release runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go ${{ env.GO_VERSION }} uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} - name: Run GoReleaser uses: goreleaser/goreleaser-action@v5 with: version: latest args: release --clean env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN_REPO }} yaegi-0.16.1/.gitignore000066400000000000000000000001621460330105400146600ustar00rootroot00000000000000.*.swo .*.swp *.dot *.out .idea/ /yaegi internal/cmd/extract/extract example/inception/inception _test/tmp/ /dist yaegi-0.16.1/.golangci.yml000066400000000000000000000070241460330105400152600ustar00rootroot00000000000000run: timeout: 10m skip-files: [] linters-settings: govet: check-shadowing: false gocyclo: min-complexity: 12 maligned: suggest-new: true goconst: min-len: 3 min-occurrences: 3 funlen: lines: -1 statements: 50 misspell: locale: US depguard: rules: main: files: - $all allow: - $gostd - github.com/traefik/yaegi tagalign: align: false order: - xml - json - yaml - yml - toml - mapstructure - url godox: keywords: - FIXME gocritic: enabled-tags: - diagnostic - style - performance disabled-checks: - paramTypeCombine # already handle by gofumpt.extra-rules - whyNoLint # already handle by nonolint - unnamedResult - hugeParam - sloppyReassign - rangeValCopy - octalLiteral - ptrToRefParam - appendAssign - ruleguard - httpNoBody - exposedSyncMutex - importShadow # TODO should be fixed - commentedOutCode # TODO should be fixed revive: rules: - name: struct-tag - name: blank-imports - name: context-as-argument - name: context-keys-type - name: dot-imports - name: error-return - name: error-strings - name: error-naming - name: exported disabled: true - name: if-return - name: increment-decrement - name: var-naming - name: var-declaration - name: package-comments disabled: true - name: range - name: receiver-naming - name: time-naming - name: unexported-return - name: indent-error-flow - name: errorf - name: empty-block - name: superfluous-else - name: unused-parameter disabled: true - name: unreachable-code - name: redefines-builtin-id linters: enable-all: true disable: - deadcode # deprecated - exhaustivestruct # deprecated - golint # deprecated - ifshort # deprecated - interfacer # deprecated - maligned # deprecated - nosnakecase # deprecated - scopelint # deprecated - structcheck # deprecated - varcheck # deprecated - cyclop # duplicate of gocyclo - sqlclosecheck # not relevant (SQL) - rowserrcheck # not relevant (SQL) - execinquery # not relevant (SQL) - lll - gas - dupl - prealloc - gocyclo - cyclop - gochecknoinits - gochecknoglobals - wsl - nlreturn - godox - funlen - gocognit - stylecheck - gomnd - testpackage - paralleltest - tparallel - goerr113 - wrapcheck - nestif - exhaustive - exhaustruct - forbidigo - ifshort - forcetypeassert - varnamelen - nosnakecase - nonamedreturns - nilnil - maintidx - dupword # false positives - errorlint # TODO: must be reactivate after fixes issues: exclude-use-default: false max-issues-per-linter: 0 max-same-issues: 0 exclude: - 'fmt.Sprintf can be replaced with string' exclude-rules: - path: .+_test\.go linters: - goconst - path: .+_test\.go text: 'var-declaration:' - path: interp/interp.go text: '`in` can be `io.Reader`' - path: interp/interp.go text: '`out` can be `io.Writer`' - path: interp/interp.go text: '`Panic` should conform to the `XxxError` format' - path: interp/interp_eval_test.go linters: - thelper - path: interp/debugger.go linters: - containedctx yaegi-0.16.1/.goreleaser.yml000066400000000000000000000022721460330105400156250ustar00rootroot00000000000000project_name: yaegi builds: - id: yaegi binary: yaegi main: ./cmd/yaegi/ goos: - darwin - linux # - windows - freebsd - openbsd - solaris goarch: - amd64 - 386 - arm - arm64 goarm: - 7 - 6 - 5 ignore: - goos: darwin goarch: 386 changelog: sort: asc filters: exclude: - '^docs:' - '^doc:' - '^chore:' - '^test:' - '^tests:' archives: - id: archive name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}' format: tar.gz format_overrides: - goos: windows format: zip files: - LICENSE brews: - repository: owner: traefik name: homebrew-tap commit_author: name: traefiker email: 30906710+traefiker@users.noreply.github.com folder: Formula homepage: https://github.com/traefik/yaegi description: | Yaegi is Another Elegant Go Interpreter. It powers executable Go scripts and plugins, in embedded interpreters or interactive shells, on top of the Go runtime. test: | system "#{bin}/yaegi version" yaegi-0.16.1/CONTRIBUTING.md000066400000000000000000000022211460330105400151170ustar00rootroot00000000000000# Contributing Yaegi is an open source project, and your feedback and contributions are needed and always welcome. [Issues] and [Pull Requests] are opened at https://github.com/traefik/yaegi. Non trivial changes should be discussed with the project maintainers by opening a [Feature Request] clearly explaining rationale, background and possible implementation ideas. Feel free to provide code in such discussions. Once the proposal is approved, a Pull Request can be opened. If you want to provide early visibility to reviewers, create a [Draft Pull Request]. We will also require you to sign the [Traefik Contributor License Agreement] after you submit your first pull request to this project. The link to sign the agreement will be presented to you in the web interface of the pull request. [Issues]: https://github.com/traefik/yaegi/issues [Pull Requests]: https://github.com/traefik/yaegi/issues [Feature Request]: https://github.com/traefik/yaegi/issues/new?template=feature_request.md [Draft Pull Request]: https://github.blog/2019-02-14-introducing-draft-pull-requests/ [Traefik Labs Contributor License Agreement]: https://cla-assistant.io/traefik/yaegi yaegi-0.16.1/LICENSE000066400000000000000000000261631460330105400137060ustar00rootroot00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2019 Containous SAS Copyright 2020 Traefik Labs SAS Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. yaegi-0.16.1/Makefile000066400000000000000000000024701460330105400143340ustar00rootroot00000000000000# Static linting of source files. See .golangci.toml for options check: golangci-lint run # Generate stdlib/syscall/syscall_GOOS_GOARCH.go for all platforms gen_all_syscall: internal/cmd/extract/extract @for v in $$(go tool dist list); do \ echo syscall_$${v%/*}_$${v#*/}.go; \ GOOS=$${v%/*} GOARCH=$${v#*/} go generate ./stdlib/syscall ./stdlib/unrestricted; \ done internal/cmd/extract/extract: rm -f internal/cmd/extract/extract go generate ./internal/cmd/extract generate: gen_all_syscall go generate install: GOFLAGS=-ldflags=-X=main.version=$$(git describe --tags) go install ./... tests: go test -v ./... go test -race ./interp # https://github.com/goreleaser/godownloader install.sh: .goreleaser.yml godownloader --repo=traefik/yaegi -o install.sh .goreleaser.yml generic_list = cmp/cmp.go slices/slices.go slices/sort.go slices/zsortanyfunc.go maps/maps.go \ sync/oncefunc.go sync/atomic/type.go # get_generic_src imports stdlib files containing generic symbols definitions get_generic_src: eval "`go env`"; echo $$GOROOT; gov=$${GOVERSION#*.}; gov=$${gov%.*}; \ for f in ${generic_list}; do \ nf=stdlib/generic/go1_$${gov}_`echo $$f | tr / _`.txt; echo "nf: $$nf"; \ cat "$$GOROOT/src/$$f" > "$$nf"; \ done .PHONY: check gen_all_syscall internal/cmd/extract/extract get_generic_src install yaegi-0.16.1/README.md000066400000000000000000000120741460330105400141540ustar00rootroot00000000000000

Yaegi

[![release](https://img.shields.io/github/tag-date/traefik/yaegi.svg?label=alpha)](https://github.com/traefik/yaegi/releases) [![Build Status](https://github.com/traefik/yaegi/actions/workflows/main.yml/badge.svg)](https://github.com/traefik/yaegi/actions/workflows/main.yml) [![GoDoc](https://godoc.org/github.com/traefik/yaegi?status.svg)](https://pkg.go.dev/mod/github.com/traefik/yaegi) Yaegi is Another Elegant Go Interpreter. It powers executable Go scripts and plugins, in embedded interpreters or interactive shells, on top of the Go runtime. ## Features * Complete support of [Go specification][specs] * Written in pure Go, using only the standard library * Simple interpreter API: `New()`, `Eval()`, `Use()` * 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 the latest 2 major releases of Go (Go 1.21 and Go 1.22) ## Install ### Go package ```go import "github.com/traefik/yaegi/interp" ``` ### Command-line executable ```bash go install github.com/traefik/yaegi/cmd/yaegi@latest ``` Note that you can use [rlwrap](https://github.com/hanslub42/rlwrap) (install with your favorite package manager), and alias the `yaegi` command in `alias yaegi='rlwrap yaegi'` in your `~/.bashrc`, to have history and command line edition. ### CI Integration ```bash curl -sfL https://raw.githubusercontent.com/traefik/yaegi/master/install.sh | bash -s -- -b $GOPATH/bin v0.9.0 ``` ## Usage ### As an embedded interpreter Create an interpreter with `New()`, run Go code with `Eval()`: ```go package main import ( "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func main() { i := interp.New(interp.Options{}) i.Use(stdlib.Symbols) _, err := i.Eval(`import "fmt"`) if err != nil { panic(err) } _, err = i.Eval(`fmt.Println("Hello Yaegi")`) if err != nil { panic(err) } } ``` [Go Playground](https://play.golang.org/p/2n-EpZbMYI9) ### As a dynamic extension framework The following program is compiled ahead of time, except `bar()` which is interpreted, with the following steps: 1. use of `i.Eval(src)` to evaluate the script in the context of interpreter 2. use of `v, err := i.Eval("foo.Bar")` to get the symbol from the interpreter context, as a `reflect.Value` 3. application of `Interface()` method and type assertion to convert `v` into `bar`, as if it was compiled ```go package main import "github.com/traefik/yaegi/interp" const src = `package foo func Bar(s string) string { return s + "-Foo" }` func main() { i := interp.New(interp.Options{}) _, err := i.Eval(src) if err != nil { panic(err) } v, err := i.Eval("foo.Bar") if err != nil { panic(err) } bar := v.Interface().(func(string) string) r := bar("Kung") println(r) } ``` [Go Playground](https://play.golang.org/p/WvwH4JqrU-p) ### As a command-line interpreter The Yaegi command can run an interactive Read-Eval-Print-Loop: ```console $ yaegi > 1 + 2 3 > import "fmt" > fmt.Println("Hello World") Hello World > ``` Note that in interactive mode, all stdlib package are pre-imported, you can use them directly: ```console $ yaegi > reflect.TypeOf(time.Date) : func(int, time.Month, int, int, int, int, int, *time.Location) time.Time > ``` Or interpret Go packages, directories or files, including itself: ```console $ yaegi -syscall -unsafe -unrestricted github.com/traefik/yaegi/cmd/yaegi > ``` Or for Go scripting in the shebang line: ```console $ cat /tmp/test #!/usr/bin/env yaegi package main import "fmt" func main() { fmt.Println("test") } $ ls -la /tmp/test -rwxr-xr-x 1 dow184 dow184 93 Jan 6 13:38 /tmp/test $ /tmp/test test ``` ## Documentation Documentation about Yaegi commands and libraries can be found at usual [godoc.org][docs]. ## Limitations Beside the known [bugs] which are supposed to be fixed in the short term, there are some limitations not planned to be addressed soon: - Assembly files (`.s`) are not supported. - Calling C code is not supported (no virtual "C" package). - Directives about the compiler, the linker, or embedding files are not supported. - Interfaces to be used from the pre-compiled code can not be added dynamically, as it is required to pre-compile interface wrappers. - Representation of types by `reflect` and printing values using %T may give different results between compiled mode and interpreted mode. - Interpreting computation intensive code is likely to remain significantly slower than in compiled mode. Go modules are not supported yet. Until that, it is necessary to install the source into `$GOPATH/src/github.com/traefik/yaegi` to pass all the tests. ## Contributing [Contributing guide](CONTRIBUTING.md). ## License [Apache 2.0][License]. [specs]: https://golang.org/ref/spec [docs]: https://pkg.go.dev/github.com/traefik/yaegi [license]: https://github.com/traefik/yaegi/blob/master/LICENSE [github]: https://github.com/traefik/yaegi [bugs]: https://github.com/traefik/yaegi/issues?q=is%3Aissue+is%3Aopen+label%3Abug yaegi-0.16.1/_test/000077500000000000000000000000001460330105400140075ustar00rootroot00000000000000yaegi-0.16.1/_test/a1.go000066400000000000000000000002701460330105400146360ustar00rootroot00000000000000package main func main() { a := [6]int{1, 2, 3, 4, 5, 6} println(a[1]) // 2 for i, v := range a { println(v) if i == 3 { break } } } // Output: // 2 // 1 // 2 // 3 // 4 yaegi-0.16.1/_test/a10.go000066400000000000000000000003251460330105400147170ustar00rootroot00000000000000package main type Sample struct { Name string } var samples = []Sample{} func f(i int) { println(samples[i].Name) } func main() { samples = append(samples, Sample{Name: "test"}) f(0) } // Output: // test yaegi-0.16.1/_test/a11.go000066400000000000000000000001751460330105400147230ustar00rootroot00000000000000package main func main() { a := []int{1, 2, 3, 4} for _, v := range a { println(v) } } // Output: // 1 // 2 // 3 // 4 yaegi-0.16.1/_test/a12.go000066400000000000000000000001431460330105400147170ustar00rootroot00000000000000package main import "fmt" func main() { var buf [12]int fmt.Println(buf[0]) } // Output: // 0 yaegi-0.16.1/_test/a13.go000066400000000000000000000002451460330105400147230ustar00rootroot00000000000000package main type T1 struct { num []int } func main() { a := T1{[]int{1, 3, 5}} for i, v := range a.num { println(i, v) } } // Output: // 0 1 // 1 3 // 2 5 yaegi-0.16.1/_test/a14.go000066400000000000000000000002131460330105400147170ustar00rootroot00000000000000package main import "fmt" const size = 12 func main() { var buf [size]int fmt.Println(buf) } // Output: // [0 0 0 0 0 0 0 0 0 0 0 0] yaegi-0.16.1/_test/a15.go000066400000000000000000000002161460330105400147230ustar00rootroot00000000000000package main import "fmt" const size = 12 func main() { var buf [size]int fmt.Println(buf[:]) } // Output: // [0 0 0 0 0 0 0 0 0 0 0 0] yaegi-0.16.1/_test/a16.go000066400000000000000000000003571460330105400147320ustar00rootroot00000000000000package main func main() { a := [6]int{1, 2, 3, 4, 5, 6} println(a[1]) // 2 for k := 0; k < 2; k++ { for i, v := range a { println(v) if i == 3 { break } } } } // Output: // 2 // 1 // 2 // 3 // 4 // 1 // 2 // 3 // 4 yaegi-0.16.1/_test/a17.go000066400000000000000000000001751460330105400147310ustar00rootroot00000000000000package main import "fmt" func main() { a := make([]int, 2, 7) fmt.Println(a, len(a), cap(a)) } // Output: // [0 0] 2 7 yaegi-0.16.1/_test/a18.go000066400000000000000000000001771460330105400147340ustar00rootroot00000000000000package main func main() { a := []int64{1, 2, 3, 4} for _, v := range a { println(v) } } // Output: // 1 // 2 // 3 // 4 yaegi-0.16.1/_test/a19.go000066400000000000000000000001521460330105400147260ustar00rootroot00000000000000package main func main() { var buf [bsize]byte println(len(buf)) } const bsize = 10 // Output: // 10 yaegi-0.16.1/_test/a2.go000066400000000000000000000003021460330105400146330ustar00rootroot00000000000000package main func main() { a := [6]int{1, 2, 3, 4, 5, 6} a[1] = 5 println(a[1]) // 2 for i, v := range a { println(v) if i == 3 { break } } } // Output: // 5 // 1 // 5 // 3 // 4 yaegi-0.16.1/_test/a20.go000066400000000000000000000002671460330105400147250ustar00rootroot00000000000000package main import "fmt" type IntArray []int func (h *IntArray) Add(x int) { *h = append(*h, x) } func main() { a := IntArray{} a.Add(4) fmt.Println(a) } // Output: // [4] yaegi-0.16.1/_test/a21.go000066400000000000000000000002671460330105400147260ustar00rootroot00000000000000package main import "fmt" func main() { a := []byte("hello") fmt.Println(a) a = append(a, '=') fmt.Println(a) } // Output: // [104 101 108 108 111] // [104 101 108 108 111 61] yaegi-0.16.1/_test/a22.go000066400000000000000000000001531460330105400147210ustar00rootroot00000000000000package main func main() { a := [256]int{} var b uint8 = 12 a[b] = 1 println(a[b]) } // Output: // 1 yaegi-0.16.1/_test/a23.go000066400000000000000000000005721460330105400147270ustar00rootroot00000000000000package main import "fmt" func main() { var key, salt [32]byte for i := range key { key[i] = byte(i) salt[i] = byte(i + 32) } fmt.Println(key) fmt.Println(salt) } // Output: // [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31] // [32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63] yaegi-0.16.1/_test/a24.go000066400000000000000000000004631460330105400147270ustar00rootroot00000000000000package main import "fmt" func main() { for i := 0; i < 2; i++ { var buf [8]byte var x int fmt.Println(buf, x) for i := range buf { buf[i] = byte(i) x = i } fmt.Println(buf, x) } } // Output: // [0 0 0 0 0 0 0 0] 0 // [0 1 2 3 4 5 6 7] 7 // [0 0 0 0 0 0 0 0] 0 // [0 1 2 3 4 5 6 7] 7 yaegi-0.16.1/_test/a25.go000066400000000000000000000003261460330105400147260ustar00rootroot00000000000000package main import "fmt" func main() { var buf [8]byte for i := 0; i < 2; i++ { for i := range buf { buf[i] += byte(i) } fmt.Println(buf) } } // Output: // [0 1 2 3 4 5 6 7] // [0 2 4 6 8 10 12 14] yaegi-0.16.1/_test/a26.go000066400000000000000000000001571460330105400147310ustar00rootroot00000000000000package main func main() { a := [3]int{1, 2, 3} b := [3]int{1, 2, 3} println(a == b) } // Output: // true yaegi-0.16.1/_test/a27.go000066400000000000000000000002241460330105400147250ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]string{"hello", "world"} fmt.Printf("%v %T\n", a, a) } // Output: // [hello world] [2]string yaegi-0.16.1/_test/a28.go000066400000000000000000000002221460330105400147240ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]string{9: "hello"} fmt.Printf("%v %T\n", a, a) } // Output: // [ hello] [10]string yaegi-0.16.1/_test/a29.go000066400000000000000000000004151460330105400147310ustar00rootroot00000000000000package main import "fmt" const ( zero = iota one two three ) func main() { a := [...]string{ zero: "zero", one: "one", three: "three", three + 2: "five", } fmt.Printf("%v %T\n", a, a) } // Output: // [zero one three five] [6]string yaegi-0.16.1/_test/a3.go000066400000000000000000000001701460330105400146370ustar00rootroot00000000000000package main import "fmt" func main() { a := [6]int{1, 2, 3, 4, 5, 6} fmt.Println(a[2:]) } // Output: // [3 4 5 6] yaegi-0.16.1/_test/a30.go000066400000000000000000000001341460330105400147170ustar00rootroot00000000000000package main func main() { for range []struct{}{} { } println("ok") } // Output: // ok yaegi-0.16.1/_test/a31.go000066400000000000000000000001751460330105400147250ustar00rootroot00000000000000package main func main() { for range []int{0, 1, 2} { print("hello ") } println("") } // Output: // hello hello hello yaegi-0.16.1/_test/a32.go000066400000000000000000000001621460330105400147220ustar00rootroot00000000000000package main import "fmt" type T struct{} var a = []T{{}} func main() { fmt.Println(a) } // Output: // [{}] yaegi-0.16.1/_test/a33.go000066400000000000000000000001631460330105400147240ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{1, 2, 3} b := a fmt.Println(b) } // Output: // [1 2 3] yaegi-0.16.1/_test/a34.go000066400000000000000000000001751460330105400147300ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{1, 2, 3} var b [3]int = a fmt.Println(b) } // Output: // [1 2 3] yaegi-0.16.1/_test/a35.go000066400000000000000000000001761460330105400147320ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{1, 2, 3} b := a b[0] = -1 fmt.Println(a) } // Output: // [1 2 3] yaegi-0.16.1/_test/a36.go000066400000000000000000000002101460330105400147200ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{1, 2, 3} var b [3]int = a b[0] = -1 fmt.Println(a) } // Output: // [1 2 3] yaegi-0.16.1/_test/a37.go000066400000000000000000000001531460330105400147270ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{1, 2, 3} fmt.Println(a) } // Output: // [1 2 3] yaegi-0.16.1/_test/a38.go000066400000000000000000000001551460330105400147320ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]byte{} fmt.Printf("%T\n", a) } // Output: // [0]uint8 yaegi-0.16.1/_test/a39.go000066400000000000000000000002041460330105400147260ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]byte{} b := a fmt.Printf("%T %T\n", a, b) } // Output: // [0]uint8 [0]uint8 yaegi-0.16.1/_test/a4.go000066400000000000000000000001651460330105400146440ustar00rootroot00000000000000package main import "fmt" func main() { a := [6]int{1, 2, 3, 4, 5, 6} fmt.Println(a[2:4]) } // Output: // [3 4] yaegi-0.16.1/_test/a40.go000066400000000000000000000002541460330105400147230ustar00rootroot00000000000000package main import "fmt" type rule uint8 const ( r0 rule = iota r1 r2 ) var a = [...]int{ r0: 1, r1: 12, } func main() { fmt.Println(a) } // Output: // [1 12] yaegi-0.16.1/_test/a41.go000066400000000000000000000001501460330105400147170ustar00rootroot00000000000000package main var a = [...]bool{true, true} func main() { println(a[0] && true) } // Output: // true yaegi-0.16.1/_test/a42.go000066400000000000000000000002651460330105400147270ustar00rootroot00000000000000package main import ( "encoding/binary" "fmt" ) func main() { var b [8]byte binary.LittleEndian.PutUint64(b[:], uint64(1)) fmt.Println(b) } // Output: // [1 0 0 0 0 0 0 0] yaegi-0.16.1/_test/a43.go000066400000000000000000000002111460330105400147170ustar00rootroot00000000000000package main import "fmt" type T [l1 + l2]int const ( l1 = 2 l2 = 3 ) func main() { fmt.Println(T{}) } // Output: // [0 0 0 0 0] yaegi-0.16.1/_test/a44.go000066400000000000000000000001451460330105400147260ustar00rootroot00000000000000package main var a = [max]int{} const max = 32 func main() { println(len(a)) } // Output: // 32 yaegi-0.16.1/_test/a5.go000066400000000000000000000001701460330105400146410ustar00rootroot00000000000000package main import "fmt" func main() { a := [6]int{1, 2, 3, 4, 5, 6} fmt.Println(a[:4]) } // Output: // [1 2 3 4] yaegi-0.16.1/_test/a6.go000066400000000000000000000001731460330105400146450ustar00rootroot00000000000000package main import "fmt" func main() { a := [6]int{1, 2, 3, 4, 5, 6} fmt.Println(a[:]) } // Output: // [1 2 3 4 5 6] yaegi-0.16.1/_test/a7.go000066400000000000000000000001611460330105400146430ustar00rootroot00000000000000package main import "fmt" func main() { a := [6]int{1, 2, 3, 4, 5, 6} fmt.Println(len(a)) } // Output: // 6 yaegi-0.16.1/_test/a8.go000066400000000000000000000002221460330105400146420ustar00rootroot00000000000000package main import "fmt" func main() { //a := []int{1, 2} a := make([]int, 2) //a[0] = 1 //a[1] = 2 fmt.Println(a) } // Output: // [0 0] yaegi-0.16.1/_test/a9.go000066400000000000000000000002731460330105400146510ustar00rootroot00000000000000package main import "fmt" //var ( // samples = []int{} // b = 1 //) func main() { var samples = []int{} samples = append(samples, 1) fmt.Println(samples) } // Output: // [1] yaegi-0.16.1/_test/add0.go000066400000000000000000000001341460330105400151440ustar00rootroot00000000000000package main func main() { var a interface{} = 2 + 5 println(a.(int)) } // Output: // 7 yaegi-0.16.1/_test/add1.go000066400000000000000000000007401460330105400151500ustar00rootroot00000000000000package main func main() { b := 2 // int var c int = 5 + b println(c) var d int32 = 6 + int32(b) println(d) var a interface{} = 7 + b println(a.(int)) var e int32 = 2 var f interface{} = 8 + e println(f.(int32)) a = 9 + e println(a.(int32)) var g int = 2 a = 10 + g println(a.(int)) // multiple assignment var foo interface{} foo, a = "hello", 11 + g println(a.(int)) println(foo.(string)) } // Output: // 7 // 8 // 9 // 10 // 11 // 12 // 13 // hello yaegi-0.16.1/_test/add2.go000066400000000000000000000001661460330105400151530ustar00rootroot00000000000000package main type iface interface{} func main() { b := 2 var a iface = 5 + b println(a.(int)) } // Output: // 7 yaegi-0.16.1/_test/addr0.go000066400000000000000000000004131460330105400153260ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type extendedRequest struct { http.Request Data string } func main() { r := extendedRequest{} req := &r.Request fmt.Printf("%T\n", r.Request) fmt.Printf("%T\n", req) } // Output: // http.Request // *http.Request yaegi-0.16.1/_test/addr1.go000066400000000000000000000003351460330105400153320ustar00rootroot00000000000000package main import "fmt" type T struct { A int B int } func main() { a := &[]T{ {1, 2}, {3, 4}, } fmt.Println("a:", a) x := &(*a)[1:][0] fmt.Println("x:", x) } // Output: // a: &[{1 2} {3 4}] // x: &{3 4} yaegi-0.16.1/_test/addr2.go000066400000000000000000000020161460330105400153310ustar00rootroot00000000000000package main import ( "encoding/xml" "errors" "fmt" ) type Email struct { Where string `xml:"where,attr"` Addr string } func f(r interface{}) error { return withPointerAsInterface(&r) } func withPointerAsInterface(r interface{}) error { _ = (r).(*interface{}) rp, ok := (r).(*interface{}) if !ok { return errors.New("cannot assert to *interface{}") } em, ok := (*rp).(*Email) if !ok { return errors.New("cannot assert to *Email") } em.Where = "work" em.Addr = "bob@work.com" return nil } func ff(s string, r interface{}) error { return xml.Unmarshal([]byte(s), r) } func fff(s string, r interface{}) error { return xml.Unmarshal([]byte(s), &r) } func main() { data := ` bob@work.com ` v := Email{} err := f(&v) fmt.Println(err, v) vv := Email{} err = ff(data, &vv) fmt.Println(err, vv) vvv := Email{} err = ff(data, &vvv) fmt.Println(err, vvv) } // Output: // {work bob@work.com} // {work bob@work.com} // {work bob@work.com} yaegi-0.16.1/_test/addr3.go000066400000000000000000000003241460330105400153320ustar00rootroot00000000000000package main import ( "fmt" ) func main() { var a interface{} a = 2 fmt.Println(a) var b *interface{} b = &a fmt.Println(*b) var c **interface{} c = &b fmt.Println(**c) } // Output: // 2 // 2 // 2 yaegi-0.16.1/_test/addr4.go000066400000000000000000000030041460330105400153310ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" "log" ) const jsonData = `[ "foo", "bar" ]` const jsonData2 = `[ {"foo": "foo"}, {"bar": "bar"} ]` const jsonData3 = `{ "foo": "foo", "bar": "bar" }` func fromSlice() { var a []interface{} var c, d interface{} c = 2 d = 3 a = []interface{}{c, d} if err := json.Unmarshal([]byte(jsonData), &a); err != nil { log.Fatalln(err) } for k, v := range a { fmt.Println(k, ":", v) } } func fromEmpty() { var a interface{} var c, d interface{} c = 2 d = 3 a = []interface{}{c, d} if err := json.Unmarshal([]byte(jsonData), &a); err != nil { log.Fatalln(err) } b := a.([]interface{}) for k, v := range b { fmt.Println(k, ":", v) } } func sliceOfObjects() { var a interface{} if err := json.Unmarshal([]byte(jsonData2), &a); err != nil { log.Fatalln(err) } b := a.([]interface{}) for k, v := range b { fmt.Println(k, ":", v) } } func intoMap() { var a interface{} if err := json.Unmarshal([]byte(jsonData3), &a); err != nil { log.Fatalln(err) } b := a.(map[string]interface{}) seenFoo := false for k, v := range b { vv := v.(string) if vv != "foo" { if seenFoo { fmt.Println(k, ":", vv) break } kk := k vvv := vv defer fmt.Println(kk, ":", vvv) continue } seenFoo = true fmt.Println(k, ":", vv) } } func main() { fromSlice() fromEmpty() sliceOfObjects() intoMap() } // Output: // 0 : foo // 1 : bar // 0 : foo // 1 : bar // 0 : map[foo:foo] // 1 : map[bar:bar] // foo : foo // bar : bar yaegi-0.16.1/_test/addr5.go000066400000000000000000000021551460330105400153400ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" "net/url" ) func main() { body := []byte(`{ "BODY_1": "VALUE_1", "BODY_2": "VALUE_2", "BODY_3": null, "BODY_4": { "BODY_1": "VALUE_1", "BODY_2": "VALUE_2", "BODY_3": null }, "BODY_5": [ "VALUE_1", "VALUE_2", "VALUE_3" ] }`) values := url.Values{} var rawData map[string]interface{} err := json.Unmarshal(body, &rawData) if err != nil { fmt.Println("can't parse body") return } for key, val := range rawData { switch val.(type) { case string, bool, float64: values.Add(key, fmt.Sprint(val)) case nil: values.Add(key, "") case map[string]interface{}, []interface{}: jsonVal, err := json.Marshal(val) if err != nil { fmt.Println("can't encode json") return } values.Add(key, string(jsonVal)) } } fmt.Println(values.Get("BODY_1")) fmt.Println(values.Get("BODY_2")) fmt.Println(values.Get("BODY_3")) fmt.Println(values.Get("BODY_4")) fmt.Println(values.Get("BODY_5")) } // Output: // VALUE_1 // VALUE_2 // // {"BODY_1":"VALUE_1","BODY_2":"VALUE_2","BODY_3":null} // ["VALUE_1","VALUE_2","VALUE_3"] yaegi-0.16.1/_test/and.go000066400000000000000000000003561460330105400151040ustar00rootroot00000000000000package main func main() { a, b := 1, 2 if f1() && f2() { println(a, b) } } func f1() bool { println("f1") //return true return 0 == 0 } func f2() bool { println("f2") //return false return 1 == 0 } // Output: // f1 // f2 yaegi-0.16.1/_test/and0.go000066400000000000000000000003061460330105400151570ustar00rootroot00000000000000package main func main() { a, b := 1, 2 if f2() && f1() { println(a, b) } } func f1() bool { println("f1") return true } func f2() bool { println("f2") return false } // Output: // f2 yaegi-0.16.1/_test/and1.go000066400000000000000000000002711460330105400151610ustar00rootroot00000000000000package main func main() { a := f2() && f1() println(a) } func f1() bool { println("f1") return true } func f2() bool { println("f2") return false } // Output: // f2 // false yaegi-0.16.1/_test/and2.go000066400000000000000000000003521460330105400151620ustar00rootroot00000000000000package main func f() bool { println("in f") return true } func main() { var ( cl = 0 ct = "some text" ce = "" ) if ce == "" && (cl == 0 || cl > 1000) && (ct == "" || f()) { println("ok") } } // Output: // in f // ok yaegi-0.16.1/_test/and3.go000066400000000000000000000001241460330105400151600ustar00rootroot00000000000000package main var a = true && true func main() { println(a) } // Output: // true yaegi-0.16.1/_test/append0.go000066400000000000000000000002671460330105400156720ustar00rootroot00000000000000package main import "fmt" func f(a []int, b int) interface{} { return append(a, b) } func main() { a := []int{1, 2} r := f(a, 3) fmt.Println(r.([]int)) } // Output: // [1 2 3] yaegi-0.16.1/_test/append1.go000066400000000000000000000003401460330105400156630ustar00rootroot00000000000000package main import ( "bufio" "bytes" ) func main() { s := bufio.NewScanner(bytes.NewReader([]byte("Hello\nTest\nLine3"))) s.Scan() println(string(append(s.Bytes(), []byte(" World")...))) } // Output: // Hello World yaegi-0.16.1/_test/append2.go000066400000000000000000000003301460330105400156630ustar00rootroot00000000000000package main import ( "bufio" "bytes" ) func main() { s := bufio.NewScanner(bytes.NewReader([]byte("Hello\nTest\nLine3"))) s.Scan() println(string(append(s.Bytes(), " World"...))) } // Output: // Hello World yaegi-0.16.1/_test/append3.go000066400000000000000000000003001460330105400156610ustar00rootroot00000000000000package main import "fmt" func main() { a := []int{1, 2} b := [2]int{3, 4} fmt.Println(append(a, b[:]...)) fmt.Println(append(a, []int{5, 6}...)) } // Output: // [1 2 3 4] // [1 2 5 6] yaegi-0.16.1/_test/append4.go000066400000000000000000000001661460330105400156740ustar00rootroot00000000000000package main import "fmt" func main() { a := []*int{} a = append(a, nil) fmt.Println(a) } // Output: // [] yaegi-0.16.1/_test/assert0.go000066400000000000000000000047121460330105400157230ustar00rootroot00000000000000package main import ( "fmt" "time" ) type MyWriter interface { Write(p []byte) (i int, err error) } type DummyWriter interface { Write(p []byte) (i int, err error) } type TestStruct struct{} func (t TestStruct) Write(p []byte) (n int, err error) { return len(p), nil } func usesWriter(w MyWriter) { n, _ := w.Write([]byte("hello world")) fmt.Println(n) } type MyStringer interface { String() string } type DummyStringer interface { String() string } func usesStringer(s MyStringer) { fmt.Println(s.String()) } func main() { // TODO(mpl): restore when we can deal with empty interface. // var t interface{} var t DummyWriter t = TestStruct{} var tw MyWriter var ok bool tw, ok = t.(MyWriter) if !ok { fmt.Println("TestStruct does not implement MyWriter") } else { fmt.Println("TestStruct implements MyWriter") usesWriter(tw) } n, _ := t.(MyWriter).Write([]byte("hello world")) fmt.Println(n) // not redundant with the above, because it goes through a slightly different code path. if _, ok := t.(MyWriter); !ok { fmt.Println("TestStruct does not implement MyWriter") return } else { fmt.Println("TestStruct implements MyWriter") } // TODO(mpl): restore /* t = 42 foo, ok := t.(MyWriter) if !ok { fmt.Println("42 does not implement MyWriter") } else { fmt.Println("42 implements MyWriter") } _ = foo if _, ok := t.(MyWriter); !ok { fmt.Println("42 does not implement MyWriter") } else { fmt.Println("42 implements MyWriter") } */ // var tt interface{} var tt DummyStringer tt = time.Nanosecond var myD MyStringer myD, ok = tt.(MyStringer) if !ok { fmt.Println("time.Nanosecond does not implement MyStringer") } else { fmt.Println("time.Nanosecond implements MyStringer") usesStringer(myD) } fmt.Println(tt.(MyStringer).String()) if _, ok := tt.(MyStringer); !ok { fmt.Println("time.Nanosecond does not implement MyStringer") } else { fmt.Println("time.Nanosecond implements MyStringer") } // TODO(mpl): restore /* tt = 42 bar, ok := tt.(MyStringer) if !ok { fmt.Println("42 does not implement MyStringer") } else { fmt.Println("42 implements MyStringer") } _ = bar if _, ok := tt.(MyStringer); !ok { fmt.Println("42 does not implement MyStringer") } else { fmt.Println("42 implements MyStringer") } */ } // Output: // TestStruct implements MyWriter // 11 // 11 // TestStruct implements MyWriter // time.Nanosecond implements MyStringer // 1ns // 1ns // time.Nanosecond implements MyStringer yaegi-0.16.1/_test/assert1.go000066400000000000000000000034471460330105400157300ustar00rootroot00000000000000package main import ( "fmt" "reflect" "time" ) type TestStruct struct{} func (t TestStruct) String() string { return "hello world" } type DummyStringer interface{ String() string } func main() { aType := reflect.TypeOf((*fmt.Stringer)(nil)).Elem() var t interface{} t = time.Nanosecond s, ok := t.(fmt.Stringer) if !ok { fmt.Println("time.Nanosecond does not implement fmt.Stringer") return } fmt.Println(s.String()) fmt.Println(t.(fmt.Stringer).String()) bType := reflect.TypeOf(time.Nanosecond) fmt.Println(bType.Implements(aType)) // not redundant with the above, because it goes through a slightly different code path. if _, ok := t.(fmt.Stringer); !ok { fmt.Println("time.Nanosecond does not implement fmt.Stringer") return } else { fmt.Println("time.Nanosecond implements fmt.Stringer") } t = 42 foo, ok := t.(fmt.Stringer) if !ok { fmt.Println("42 does not implement fmt.Stringer") } else { fmt.Println("42 implements fmt.Stringer") return } _ = foo if _, ok := t.(fmt.Stringer); !ok { fmt.Println("42 does not implement fmt.Stringer") } else { fmt.Println("42 implements fmt.Stringer") return } // TODO(mpl): restore when fixed // var tt interface{} var tt DummyStringer tt = TestStruct{} ss, ok := tt.(fmt.Stringer) if !ok { fmt.Println("TestStuct does not implement fmt.Stringer") return } fmt.Println(ss.String()) fmt.Println(tt.(fmt.Stringer).String()) if _, ok := tt.(fmt.Stringer); !ok { fmt.Println("TestStuct does not implement fmt.Stringer") return } else { fmt.Println("TestStuct implements fmt.Stringer") } } // Output: // 1ns // 1ns // true // time.Nanosecond implements fmt.Stringer // 42 does not implement fmt.Stringer // 42 does not implement fmt.Stringer // hello world // hello world // TestStuct implements fmt.Stringer yaegi-0.16.1/_test/assert2.go000066400000000000000000000011661460330105400157250ustar00rootroot00000000000000package main import ( "strings" "sync" ) // Define an interface of stringBuilder that is compatible with // strings.Builder(go 1.10) and bytes.Buffer(< go 1.10). type stringBuilder interface { WriteRune(r rune) (n int, err error) WriteString(s string) (int, error) Reset() Grow(n int) String() string } var builderPool = sync.Pool{New: func() interface{} { return newStringBuilder() }} func newStringBuilder() stringBuilder { return &strings.Builder{} } func main() { i := builderPool.Get() sb := i.(stringBuilder) _, _ = sb.WriteString("hello") println(sb.String()) builderPool.Put(i) } // Output: // hello yaegi-0.16.1/_test/assert3.go000066400000000000000000000003061460330105400157210ustar00rootroot00000000000000package main import "crypto/rsa" func main() { var pKey interface{} = &rsa.PublicKey{} if _, ok := pKey.(*rsa.PublicKey); ok { println("ok") } else { println("nok") } } // Output: // ok yaegi-0.16.1/_test/assert4.go000066400000000000000000000001461460330105400157240ustar00rootroot00000000000000package main var cc interface{} = 2 var dd = cc.(int) func main() { println(dd) } // Output: // 2 yaegi-0.16.1/_test/assign.go000066400000000000000000000001411460330105400156160ustar00rootroot00000000000000package main func main() { a, b := 1, 2 // Multiple assign println(a, b) } // Output: // 1 2 yaegi-0.16.1/_test/assign0.go000066400000000000000000000004361460330105400157050ustar00rootroot00000000000000package main import ( "fmt" "net/http" "time" ) func main() { http.DefaultClient.Timeout = time.Second * 10 fmt.Println(http.DefaultClient) http.DefaultClient = &http.Client{} fmt.Println(http.DefaultClient) } // Output: // &{ 10s} // &{ 0s} yaegi-0.16.1/_test/assign1.go000066400000000000000000000001541460330105400157030ustar00rootroot00000000000000package main import "fmt" func main() { var buf []byte buf = nil fmt.Println(buf) } // Output: // [] yaegi-0.16.1/_test/assign10.go000066400000000000000000000001221460330105400157560ustar00rootroot00000000000000package main func main() { var a uint a = 1 + 2 println(a) } // Output: // 3 yaegi-0.16.1/_test/assign11.go000066400000000000000000000002401460330105400157600ustar00rootroot00000000000000package main import "fmt" func main() { _, _, _ = fmt.Println("test") } // Error: // 6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values yaegi-0.16.1/_test/assign12.go000066400000000000000000000002631460330105400157660ustar00rootroot00000000000000package main import "fmt" func main() { a, b, c := fmt.Println("test") println(a, b, c) } // Error: // 6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values yaegi-0.16.1/_test/assign13.go000066400000000000000000000004131460330105400157640ustar00rootroot00000000000000package main import "fmt" func getStr() string { return "test" } func main() { m := make(map[string]string, 0) m["a"] = fmt.Sprintf("%v", 0.1) m["b"] = string(fmt.Sprintf("%v", 0.1)) m["c"] = getStr() fmt.Println(m) } // Output: // map[a:0.1 b:0.1 c:test] yaegi-0.16.1/_test/assign14.go000066400000000000000000000002771460330105400157750ustar00rootroot00000000000000package main var optionsG map[string]string = nil var roundG = 30 func main() { dummy := roundG roundG = dummy + 1 println(roundG) println(optionsG == nil) } // Output: // 31 // true yaegi-0.16.1/_test/assign15.go000066400000000000000000000003341460330105400157700ustar00rootroot00000000000000package main func main() { var c chan<- struct{} = make(chan struct{}) var d <-chan struct{} = c _ = d } // Error: // _test/assign15.go:5:26: cannot use type chan<- struct {} as type <-chan struct {} in assignment yaegi-0.16.1/_test/assign16.go000066400000000000000000000002071460330105400157700ustar00rootroot00000000000000package main type H struct { bits uint } func main() { h := &H{8} var x uint = (1 << h.bits) >> 6 println(x) } // Output: // 4 yaegi-0.16.1/_test/assign17.go000066400000000000000000000004671460330105400160010ustar00rootroot00000000000000package main func main() { s := make([]map[string]string, 0) m := make(map[string]string) m["m1"] = "m1" m["m2"] = "m2" s = append(s, m) tmpStr := "start" println(tmpStr) for _, v := range s { tmpStr, ok := v["m1"] println(tmpStr, ok) } println(tmpStr) } // Output: // start // m1 true // start yaegi-0.16.1/_test/assign18.go000066400000000000000000000004551460330105400157770ustar00rootroot00000000000000package main func main() { s := make([]map[string]string, 0) m := make(map[string]string) m["m1"] = "m1" m["m2"] = "m2" s = append(s, m) tmpStr := "start" println(tmpStr) for _, v := range s { tmpStr, _ := v["m1"] println(tmpStr) } println(tmpStr) } // Output: // start // m1 // start yaegi-0.16.1/_test/assign2.go000066400000000000000000000002311460330105400157000ustar00rootroot00000000000000package main func main() { r := uint32(2000000000) r = hello(r) println(r) } func hello(r uint32) uint32 { return r + 1 } // Output: // 2000000001 yaegi-0.16.1/_test/assign3.go000066400000000000000000000001611460330105400157030ustar00rootroot00000000000000package main func main() { a, b := 1, 2 println(a, b) a, b = b, a println(a, b) } // Output: // 1 2 // 2 1 yaegi-0.16.1/_test/assign4.go000066400000000000000000000002071460330105400157050ustar00rootroot00000000000000package main func main() { a, b, c := 1, 2, 3 println(a, b, c) a, b, c = c, a, b println(a, b, c) } // Output: // 1 2 3 // 3 1 2 yaegi-0.16.1/_test/assign5.go000066400000000000000000000002251460330105400157060ustar00rootroot00000000000000package main import "fmt" func main() { t := []int{1, 2} fmt.Println(t) t[0], t[1] = t[1], t[0] fmt.Println(t) } // Output: // [1 2] // [2 1] yaegi-0.16.1/_test/assign6.go000066400000000000000000000003061460330105400157070ustar00rootroot00000000000000package main import "fmt" func main() { t := map[string]int{"a": 1, "b": 2} fmt.Println(t["a"], t["b"]) t["a"], t["b"] = t["b"], t["a"] fmt.Println(t["a"], t["b"]) } // Output: // 1 2 // 2 1 yaegi-0.16.1/_test/assign7.go000066400000000000000000000003521460330105400157110ustar00rootroot00000000000000package main import "fmt" func main() { a := 3 t := map[string]int{"a": 1, "b": 2} s := []int{4, 5} fmt.Println(a, t["b"], s) a, t["b"], s[1] = t["b"], s[1], a fmt.Println(a, t["b"], s) } // Output: // 3 2 [4 5] // 2 5 [4 3] yaegi-0.16.1/_test/assign8.go000066400000000000000000000001021460330105400157030ustar00rootroot00000000000000package main func main() { _ = 1 println(1) } // Output: // 1 yaegi-0.16.1/_test/assign9.go000066400000000000000000000002131460330105400157070ustar00rootroot00000000000000package main type foo func(b int) func boo(b int) { println("boo", b) } func main() { var f foo f = boo f(4) } // Output: // boo 4 yaegi-0.16.1/_test/b1/000077500000000000000000000000001460330105400143115ustar00rootroot00000000000000yaegi-0.16.1/_test/b1/foo/000077500000000000000000000000001460330105400150745ustar00rootroot00000000000000yaegi-0.16.1/_test/b1/foo/foo.go000066400000000000000000000001651460330105400162100ustar00rootroot00000000000000package foo import bar "github.com/traefik/yaegi/_test/b2/foo" var Desc = "in b1/foo" var Desc2 = Desc + bar.Desc yaegi-0.16.1/_test/b2/000077500000000000000000000000001460330105400143125ustar00rootroot00000000000000yaegi-0.16.1/_test/b2/foo/000077500000000000000000000000001460330105400150755ustar00rootroot00000000000000yaegi-0.16.1/_test/b2/foo/foo.go000066400000000000000000000000441460330105400162050ustar00rootroot00000000000000package foo var Desc = "in b2/foo" yaegi-0.16.1/_test/bad0.go000066400000000000000000000001061460330105400151410ustar00rootroot00000000000000println("Hello") // Error: // 1:1: expected 'package', found println yaegi-0.16.1/_test/baz-bat/000077500000000000000000000000001460330105400153275ustar00rootroot00000000000000yaegi-0.16.1/_test/baz-bat/baz-bat.go000066400000000000000000000000421460330105400171720ustar00rootroot00000000000000package baz var Name = "baz-bat" yaegi-0.16.1/_test/bin.go000066400000000000000000000001371460330105400151070ustar00rootroot00000000000000package main import "fmt" func main() { f := fmt.Println f("Hello") } // Output: // Hello yaegi-0.16.1/_test/bin0.go000066400000000000000000000001771460330105400151730ustar00rootroot00000000000000package main import "strings" func main() { a := strings.SplitN("truc machin", " ", 2) println(a[0]) } // Output: // truc yaegi-0.16.1/_test/bin1.go000066400000000000000000000003461460330105400151720ustar00rootroot00000000000000package main import ( "crypto/sha1" "fmt" ) func main() { d := sha1.New() d.Write([]byte("password")) a := d.Sum(nil) fmt.Println(a) } // Output: // [91 170 97 228 201 185 63 63 6 130 37 11 108 248 51 27 126 230 143 216] yaegi-0.16.1/_test/bin2.go000066400000000000000000000001451460330105400151700ustar00rootroot00000000000000package main import ( "fmt" "math" ) func main() { fmt.Println(math.Abs(-5)) } // Output: // 5 yaegi-0.16.1/_test/bin3.go000066400000000000000000000002131460330105400151650ustar00rootroot00000000000000package main import "fmt" func main() { str := "part1" str += fmt.Sprintf("%s", "part2") fmt.Println(str) } // Output: // part1part2 yaegi-0.16.1/_test/bin4.go000066400000000000000000000004711460330105400151740ustar00rootroot00000000000000package main import ( "fmt" "strings" ) func Bar(s string) bool { a := strings.HasPrefix("fas", "f") b := strings.HasPrefix("aaaaa", "a") a_and_b := strings.HasPrefix("fas", "f") && strings.HasPrefix("aaaaa", "a") fmt.Println(a, b, a && b, a_and_b) return a && b } func main() { println(Bar("kung")) } yaegi-0.16.1/_test/bin5.go000066400000000000000000000003001460330105400151640ustar00rootroot00000000000000package main import ( "fmt" "net" ) func main() { addr := net.TCPAddr{IP: net.IPv4(1, 1, 1, 1), Port: 80} var s fmt.Stringer = &addr fmt.Println(s.String()) } // Output: // 1.1.1.1:80 yaegi-0.16.1/_test/binstruct_ptr_map0.go000066400000000000000000000003061460330105400201540ustar00rootroot00000000000000package main import ( "fmt" "image" ) func main() { v := map[string]*image.Point{ "foo": {X: 3, Y: 2}, "bar": {X: 4, Y: 5}, } fmt.Println(v["foo"], v["bar"]) } // Output: // (3,2) (4,5) yaegi-0.16.1/_test/binstruct_ptr_slice0.go000066400000000000000000000002401460330105400204730ustar00rootroot00000000000000package main import ( "fmt" "image" ) func main() { v := []*image.Point{ {X: 3, Y: 2}, {X: 4, Y: 5}, } fmt.Println(v) } // Output: // [(3,2) (4,5)] yaegi-0.16.1/_test/binstruct_slice0.go000066400000000000000000000002111460330105400176040ustar00rootroot00000000000000package main import ( "fmt" "image" ) func main() { v := []image.Point{ {X: 3, Y: 2}, } fmt.Println(v) } // Output: // [(3,2)] yaegi-0.16.1/_test/bltn.go000066400000000000000000000001051460330105400152710ustar00rootroot00000000000000package main func main() { println("Hello") } // Output: // Hello yaegi-0.16.1/_test/bltn0.go000066400000000000000000000001671460330105400153610ustar00rootroot00000000000000package main func main() { f := println f("Hello") } // Error: // 4:7: use of builtin println not in function call yaegi-0.16.1/_test/bool.go000066400000000000000000000001401460330105400152640ustar00rootroot00000000000000package main import "fmt" func main() { fmt.Println(false, true) } // Output: // false true yaegi-0.16.1/_test/bool0.go000066400000000000000000000001231460330105400153450ustar00rootroot00000000000000package main import "fmt" func main() { fmt.Println(true) } // Output: // true yaegi-0.16.1/_test/bool1.go000066400000000000000000000002161460330105400153510ustar00rootroot00000000000000package main type T struct { v bool } func main() { a := T{} if a.v { println("ok") } else { println("nok") } } // Output: // nok yaegi-0.16.1/_test/bool2.go000066400000000000000000000002171460330105400153530ustar00rootroot00000000000000package main type T struct { v bool } func main() { a := &T{} if a.v { println("ok") } else { println("nok") } } // Output: // nok yaegi-0.16.1/_test/bool3.go000066400000000000000000000002071460330105400153530ustar00rootroot00000000000000package main func main() { m := map[int]bool{0: false, 1: true} if m[0] { println(0) } else { println(1) } } // Output: // 1 yaegi-0.16.1/_test/bool4.go000066400000000000000000000001731460330105400153560ustar00rootroot00000000000000package main func main() { m := []bool{false, true} if m[0] { println(0) } else { println(1) } } // Output: // 1 yaegi-0.16.1/_test/bool5.go000066400000000000000000000001651460330105400153600ustar00rootroot00000000000000package main func main() { var b bool m := &b if *m { println(0) } else { println(1) } } // Output: // 1 yaegi-0.16.1/_test/break0.go000066400000000000000000000005001460330105400154750ustar00rootroot00000000000000package main func main() { n := 2 m := 2 foo := true OuterLoop: println("Boo") for i := 0; i < n; i++ { println("I: ", i) for j := 0; j < m; j++ { switch foo { case true: println(foo) break OuterLoop case false: println(foo) } } } } // Error: // 15:5: invalid break label OuterLoop yaegi-0.16.1/_test/break1.go000066400000000000000000000004331460330105400155030ustar00rootroot00000000000000package main func main() { n := 2 m := 2 foo := true OuterLoop: for i := 0; i < n; i++ { println("I: ", i) for j := 0; j < m; j++ { switch foo { case true: println(foo) break OuterLoop case false: println(foo) } } } } // Output: // I: 0 // true yaegi-0.16.1/_test/break2.go000066400000000000000000000004621460330105400155060ustar00rootroot00000000000000package main func main() { n := 2 m := 2 foo := true OuterLoop: for i := 0; i < n; i++ { println("I: ", i) for j := 0; j < m; j++ { switch foo { case true: println(foo) break OuterLoop case false: println(foo) continue OuterLoop } } } } // Output: // I: 0 // true yaegi-0.16.1/_test/break3.go000066400000000000000000000005161460330105400155070ustar00rootroot00000000000000package main func main() { n := 2 m := 2 foo := true goto OuterLoop println("Boo") OuterLoop: for i := 0; i < n; i++ { println("I: ", i) for j := 0; j < m; j++ { switch foo { case true: println(foo) break OuterLoop case false: println(foo) goto OuterLoop } } } } // Output: // I: 0 // true yaegi-0.16.1/_test/c1/000077500000000000000000000000001460330105400143125ustar00rootroot00000000000000yaegi-0.16.1/_test/c1/c1.go000066400000000000000000000001151460330105400151410ustar00rootroot00000000000000package c1 import "github.com/traefik/yaegi/_test/c2" var C1 = c2.C2 + "x" yaegi-0.16.1/_test/c2/000077500000000000000000000000001460330105400143135ustar00rootroot00000000000000yaegi-0.16.1/_test/c2/c2.go000066400000000000000000000001151460330105400151430ustar00rootroot00000000000000package c2 import "github.com/traefik/yaegi/_test/c1" var C2 = c1.C1 + "Y" yaegi-0.16.1/_test/cap0.go000066400000000000000000000003021460330105400151540ustar00rootroot00000000000000package main func f(a []int) interface{} { return cap(a) } func g(a []int) int { return cap(a) } func main() { a := []int{1, 2} println(g(a)) println(f(a).(int)) } // Output: // 2 // 2 yaegi-0.16.1/_test/chan0.go000066400000000000000000000002761460330105400153340ustar00rootroot00000000000000package main type Channel chan string func send(c Channel) { c <- "ping" } func main() { channel := make(Channel) go send(channel) msg := <-channel println(msg) } // Output: // ping yaegi-0.16.1/_test/chan1.go000066400000000000000000000002561460330105400153330ustar00rootroot00000000000000package main func send(c chan<- string) { c <- "ping" } func main() { channel := make(chan string) go send(channel) msg := <-channel println(msg) } // Output: // ping yaegi-0.16.1/_test/chan10.go000066400000000000000000000002331460330105400154060ustar00rootroot00000000000000package main import "time" func main() { var tick <-chan time.Time = time.Tick(time.Millisecond) _ = tick println("success") } // Output: // success yaegi-0.16.1/_test/chan2.go000066400000000000000000000002521460330105400153300ustar00rootroot00000000000000package main import "fmt" func main() { messages := make(chan string) go func() { messages <- "ping" }() msg := <-messages fmt.Println(msg) } // Output: // ping yaegi-0.16.1/_test/chan3.go000066400000000000000000000002501460330105400153270ustar00rootroot00000000000000package main func send(c chan<- int32) { c <- 123 } func main() { channel := make(chan int32) go send(channel) msg := <-channel println(msg) } // Output: // 123 yaegi-0.16.1/_test/chan4.go000066400000000000000000000003061460330105400153320ustar00rootroot00000000000000package main func send(c chan<- bool) { c <- false } func main() { channel := make(chan bool) go send(channel) if <-channel { println("ok") } else { println("nok") } } // Output: // nok yaegi-0.16.1/_test/chan5.go000066400000000000000000000007551460330105400153430ustar00rootroot00000000000000package main import "time" func main() { // For our example we'll select across two channels. c1 := make(chan string) c2 := make(chan string) // Each channel will receive a value after some amount // of time, to simulate e.g. blocking RPC operations // executing in concurrent goroutines. go func() { //time.Sleep(1 * time.Second) time.Sleep(1e9) c1 <- "one" }() go func() { time.Sleep(2e9) c2 <- "two" }() msg1 := <-c1 println(msg1) msg2 := <-c2 println(msg2) } yaegi-0.16.1/_test/chan6.go000066400000000000000000000002351460330105400153350ustar00rootroot00000000000000package main func send(c chan<- int32) { c <- 123 } func main() { channel := make(chan int32) go send(channel) msg, ok := <-channel println(msg, ok) } yaegi-0.16.1/_test/chan7.go000066400000000000000000000003051460330105400153340ustar00rootroot00000000000000package main import "fmt" func main() { queue := make(chan string, 2) queue <- "one" queue <- "two" close(queue) for elem := range queue { fmt.Println(elem) } } // Output: // one // two yaegi-0.16.1/_test/chan8.go000066400000000000000000000002201460330105400153310ustar00rootroot00000000000000package main func main() { messages := make(chan bool) go func() { messages <- true }() println(<-messages && true) } // Output: // true yaegi-0.16.1/_test/chan9.go000066400000000000000000000003521460330105400153400ustar00rootroot00000000000000package main type Channel chan string type T struct { Channel } func send(c Channel) { c <- "ping" } func main() { t := &T{} t.Channel = make(Channel) go send(t.Channel) msg := <-t.Channel println(msg) } // Output: // ping yaegi-0.16.1/_test/cli1.go000066400000000000000000000015031460330105400151650ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net" "net/http" ) func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } func server(ln net.Listener, ready chan bool) { http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) { var r1 *http.Request = r fmt.Fprintln(w, "Welcome to my website!", r1.RequestURI) }) go http.Serve(ln, nil) ready <- true } func main() { ln, err := net.Listen("tcp", "localhost:0") if err != nil { log.Fatal(err) } defer ln.Close() ready := make(chan bool) go server(ln, ready) <-ready client(fmt.Sprintf("http://%s/hello", ln.Addr().String())) http.DefaultServeMux = &http.ServeMux{} } // Output: // Welcome to my website! /hello yaegi-0.16.1/_test/cli2.go000066400000000000000000000016571460330105400152000ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net" "net/http" ) type T struct { ln net.Listener } func (t *T) Close() { t.ln.Close() } func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } func server(ln net.Listener, ready chan bool) { http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) { var r1 *http.Request = r fmt.Fprintln(w, "Welcome to my website!", r1.RequestURI) }) go http.Serve(ln, nil) ready <- true } func main() { ln, err := net.Listen("tcp", "localhost:0") t := &T{ln} if err != nil { log.Fatal(err) } defer t.Close() // defer ln.Close() ready := make(chan bool) go server(ln, ready) <-ready client(fmt.Sprintf("http://%s/hello", ln.Addr().String())) http.DefaultServeMux = &http.ServeMux{} } // Output: // Welcome to my website! /hello yaegi-0.16.1/_test/cli3.go000066400000000000000000000010431460330105400151660ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net/http" "net/http/httptest" ) func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } func main() { mux := http.NewServeMux() mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Welcome to my website!") }) server := httptest.NewServer(mux) defer server.Close() client(server.URL) } // Output: // Welcome to my website! yaegi-0.16.1/_test/cli4.go000066400000000000000000000013751460330105400151770ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net/http" "net/http/httptest" ) type mw1 struct { next http.Handler } func (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) { m.next.ServeHTTP(rw, rq) } type mw0 struct{} func (m *mw0) ServeHTTP(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Welcome to my website!") } func main() { m0 := &mw0{} m1 := &mw1{m0} mux := http.NewServeMux() mux.HandleFunc("/", m1.ServeHTTP) server := httptest.NewServer(mux) defer server.Close() client(server.URL) } func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } // Output: // Welcome to my website! yaegi-0.16.1/_test/cli5.go000066400000000000000000000014031460330105400151700ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net/http" "net/http/httptest" ) type mw1 struct { next http.Handler } func (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) { m.next.ServeHTTP(rw, rq) } type mw0 struct{} func (m *mw0) ServeHTTP(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Welcome to my website!") } func main() { m0 := &mw0{} m1 := &mw1{next: m0} mux := http.NewServeMux() mux.HandleFunc("/", m1.ServeHTTP) server := httptest.NewServer(mux) defer server.Close() client(server.URL) } func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } // Output: // Welcome to my website! yaegi-0.16.1/_test/cli6.go000066400000000000000000000013401460330105400151710ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net/http" "net/http/httptest" ) type T struct { http.ResponseWriter } type mw1 struct { next http.Handler } func (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) { t := &T{ ResponseWriter: rw, } x := t.Header() fmt.Fprint(rw, "Welcome to my website!", x) } func main() { m1 := &mw1{} mux := http.NewServeMux() mux.HandleFunc("/", m1.ServeHTTP) server := httptest.NewServer(mux) defer server.Close() client(server.URL) } func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } // Output: // Welcome to my website!map[] yaegi-0.16.1/_test/cli7.go000066400000000000000000000014401460330105400151730ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "net/http" "net/http/httptest" ) type T struct { http.ResponseWriter } type mw1 struct { } var obj = map[string]interface{}{} func (m *mw1) ServeHTTP(rw http.ResponseWriter, rq *http.Request) { t := &T{ ResponseWriter: rw, } x := t.Header() i := obj["m1"].(*mw1) fmt.Fprint(rw, "Welcome to my website!", x, i) } func main() { m1 := &mw1{} obj["m1"] = m1 mux := http.NewServeMux() mux.HandleFunc("/", m1.ServeHTTP) server := httptest.NewServer(mux) defer server.Close() client(server.URL) } func client(uri string) { resp, err := http.Get(uri) if err != nil { log.Fatal(err) } body, err := io.ReadAll(resp.Body) if err != nil { log.Fatal(err) } fmt.Println(string(body)) } // Output: // Welcome to my website!map[] &{} yaegi-0.16.1/_test/cli8.go000066400000000000000000000013421460330105400151750ustar00rootroot00000000000000package main import ( "net/http" "net/http/httptest" ) type T struct { name string next http.Handler } func (t *T) ServeHTTP(rw http.ResponseWriter, req *http.Request) { println("in T.ServeHTTP") if t.next != nil { t.next.ServeHTTP(rw, req) } } func New(name string, next http.Handler) (http.Handler, error) { return &T{name, next}, nil } func main() { next := func(rw http.ResponseWriter, req *http.Request) { println("in next") } t, err := New("test", http.HandlerFunc(next)) if err != nil { panic(err) } recorder := httptest.NewRecorder() req := httptest.NewRequest(http.MethodGet, "/", nil) t.ServeHTTP(recorder, req) println(recorder.Result().Status) } // Output: // in T.ServeHTTP // in next // 200 OK yaegi-0.16.1/_test/closure0.go000066400000000000000000000003021460330105400160650ustar00rootroot00000000000000package main type adder func(int, int) int func genAdd(k int) adder { return func(i, j int) int { return i + j + k } } func main() { f := genAdd(5) println(f(3, 4)) } // Output: // 12 yaegi-0.16.1/_test/closure1.go000066400000000000000000000003521460330105400160730ustar00rootroot00000000000000package main type adder func(int, int) int func genAdd(k int) adder { return func(i, j int) int { return i + j + k } } func main() { f := genAdd(5) g := genAdd(8) println(f(3, 4)) println(g(3, 4)) } // Output: // 12 // 15 yaegi-0.16.1/_test/closure10.go000066400000000000000000000003321460330105400161510ustar00rootroot00000000000000package main func main() { foos := []func(){} for i := 0; i < 3; i++ { a, b := i, i foos = append(foos, func() { println(i, a, b) }) } foos[0]() foos[1]() foos[2]() } // Output: // 3 0 0 // 3 1 1 // 3 2 2 yaegi-0.16.1/_test/closure11.go000066400000000000000000000003541460330105400161560ustar00rootroot00000000000000package main type T struct { F func() } func main() { foos := []T{} for i := 0; i < 3; i++ { a := i foos = append(foos, T{func() { println(i, a) }}) } foos[0].F() foos[1].F() foos[2].F() } // Output: // 3 0 // 3 1 // 3 2 yaegi-0.16.1/_test/closure12.go000066400000000000000000000004471460330105400161620ustar00rootroot00000000000000package main import "fmt" type T struct { F func() } func main() { foos := []T{} for i := 0; i < 3; i++ { a := i n := fmt.Sprintf("i=%d", i) foos = append(foos, T{func() { println(i, a, n) }}) } foos[0].F() foos[1].F() foos[2].F() } // Output: // 3 0 i=0 // 3 1 i=1 // 3 2 i=2 yaegi-0.16.1/_test/closure13.go000066400000000000000000000007361460330105400161640ustar00rootroot00000000000000package main import ( "fmt" "strconv" ) type monkey struct { test func() int } func main() { input := []string{"1", "2", "3"} var monkeys []*monkey for _, v := range input { kong := monkey{} divisor, err := strconv.Atoi(v) if err != nil { panic(err) } fmt.Print(divisor, " ") kong.test = func() int { return divisor } monkeys = append(monkeys, &kong) } for _, mk := range monkeys { fmt.Print(mk.test(), " ") } } // Output: // 1 2 3 1 2 3 yaegi-0.16.1/_test/closure14.go000066400000000000000000000007161460330105400161630ustar00rootroot00000000000000package main import "fmt" type monkey struct { test func() int } func getk(k int) (int, error) { return k, nil } func main() { input := []string{"1", "2", "3"} var monkeys []*monkey for k := range input { kong := monkey{} divisor, _ := getk(k) fmt.Print(divisor, " ") kong.test = func() int { return divisor } monkeys = append(monkeys, &kong) } for _, mk := range monkeys { fmt.Print(mk.test(), " ") } } // Output: // 0 1 2 0 1 2 yaegi-0.16.1/_test/closure2.go000066400000000000000000000005031460330105400160720ustar00rootroot00000000000000package main func adder() func(int) int { sum := 0 return func(x int) int { sum = sum + x return sum } } func main() { pos, neg := adder(), adder() for i := 0; i < 10; i++ { println(pos(i), neg(-2*i)) } } // Output: // 0 0 // 1 -2 // 3 -6 // 6 -12 // 10 -20 // 15 -30 // 21 -42 // 28 -56 // 36 -72 // 45 -90 yaegi-0.16.1/_test/closure3.go000066400000000000000000000003721460330105400160770ustar00rootroot00000000000000package main type T1 struct { Name string } func (t *T1) genAdd(k int) func(int) int { return func(i int) int { println(t.Name) return i + k } } var t = &T1{"test"} func main() { f := t.genAdd(4) println(f(5)) } // Output: // test // 9 yaegi-0.16.1/_test/closure4.go000066400000000000000000000003711460330105400160770ustar00rootroot00000000000000package main type T1 struct { Name string } func (t *T1) genAdd(k int) func(int) int { return func(i int) int { println(t.Name) return i + k } } var t = T1{"test"} func main() { f := t.genAdd(4) println(f(5)) } // Output: // test // 9 yaegi-0.16.1/_test/closure5.go000066400000000000000000000003701460330105400160770ustar00rootroot00000000000000package main type T1 struct { Name string } func (t T1) genAdd(k int) func(int) int { return func(i int) int { println(t.Name) return i + k } } var t = T1{"test"} func main() { f := t.genAdd(4) println(f(5)) } // Output: // test // 9 yaegi-0.16.1/_test/closure6.go000066400000000000000000000003721460330105400161020ustar00rootroot00000000000000package main type T1 struct { Name string } func (t *T1) genAdd(k int) func(int) int { return func(i int) int { println(t.Name) return i + k } } var t = &T1{"test"} func main() { f := t.genAdd(4) println(f(5)) } // Output: // test // 9 yaegi-0.16.1/_test/closure7.go000066400000000000000000000004111460330105400160750ustar00rootroot00000000000000package main import ( "fmt" ) type Config struct { A string } var conf *Config = &Config{} func SetConfig() func(*Config) { return func(cf *Config) { conf = cf } } func main() { conf := &Config{ A: "foo", } fmt.Println(conf.A) } // Output: // foo yaegi-0.16.1/_test/closure8.go000066400000000000000000000001501460330105400160760ustar00rootroot00000000000000package main var f = func(a int) int { return 2 + a } func main() { println(f(3)) } // Output: // 5 yaegi-0.16.1/_test/closure9.go000066400000000000000000000003131460330105400161000ustar00rootroot00000000000000package main func main() { foos := []func(){} for i := 0; i < 3; i++ { a := i foos = append(foos, func() { println(i, a) }) } foos[0]() foos[1]() foos[2]() } // Output: // 3 0 // 3 1 // 3 2 yaegi-0.16.1/_test/comp0.go000066400000000000000000000001041460330105400153470ustar00rootroot00000000000000package main func main() { println(2 < 2.4) } // Output: // true yaegi-0.16.1/_test/comp1.go000066400000000000000000000001401460330105400153500ustar00rootroot00000000000000package main func main() { var a interface{} = 1 < 2 println(a.(bool)) } // Output: // true yaegi-0.16.1/_test/comp2.go000066400000000000000000000002021460330105400153500ustar00rootroot00000000000000package main type delta int32 func main() { a := delta(-1) println(a != -1) println(a == -1) } // Output: // false // true yaegi-0.16.1/_test/complex0.go000066400000000000000000000001741460330105400160670ustar00rootroot00000000000000package main import "fmt" func main() { a := complex(3, 2) fmt.Println(a, real(a), imag(a)) } // Output: // (3+2i) 3 2 yaegi-0.16.1/_test/complex1.go000066400000000000000000000002031460330105400160610ustar00rootroot00000000000000package main import "fmt" func main() { var c complex128 c = 1 fmt.Printf("%T %v\n", c, c) } // Output: // complex128 (1+0i) yaegi-0.16.1/_test/complex2.go000066400000000000000000000002061460330105400160650ustar00rootroot00000000000000package main import "fmt" func main() { c := complex(1, 0) c += 1 fmt.Printf("%T %v\n", c, c) } // Output: // complex128 (2+0i) yaegi-0.16.1/_test/complex3.go000066400000000000000000000001751460330105400160730ustar00rootroot00000000000000package main import "fmt" func main() { var s int = 1 + complex(1, 0) fmt.Printf("%T %v\n", s, s) } // Output: // int 2 yaegi-0.16.1/_test/complex4.go000066400000000000000000000002501460330105400160660ustar00rootroot00000000000000package main import "fmt" func f(a, b float64) interface{} { return complex(a, b) } func main() { a := f(3, 2) fmt.Println(a.(complex128)) } // Output: // (3+2i) yaegi-0.16.1/_test/composite0.go000066400000000000000000000001761460330105400164240ustar00rootroot00000000000000package main import "fmt" var a = &[]*T{} type T struct{ name string } func main() { fmt.Println(a) } // Output: // &[] yaegi-0.16.1/_test/composite1.go000066400000000000000000000002061460330105400164170ustar00rootroot00000000000000package main import "fmt" var a = &[]*T{{}} type T struct{ name string } func main() { fmt.Println((*a)[0]) } // Output: // &{} yaegi-0.16.1/_test/composite10.go000066400000000000000000000002241460330105400164770ustar00rootroot00000000000000package main import "fmt" func main() { a := []map[int]int{make(map[int]int)} for _, b := range a { fmt.Println(b) } } // Output: // map[] yaegi-0.16.1/_test/composite11.go000066400000000000000000000002121460330105400164750ustar00rootroot00000000000000package main import ( "fmt" "image/color" ) func main() { c := color.NRGBA64{1, 1, 1, 1} fmt.Println(c) } // Output: // {1 1 1 1} yaegi-0.16.1/_test/composite12.go000066400000000000000000000002171460330105400165030ustar00rootroot00000000000000package main type A struct { C D } type D struct { E string } func main() { a := A{} a.C = D{"bb"} println(a.C.E) } // Output: // bb yaegi-0.16.1/_test/composite13.go000066400000000000000000000002221460330105400165000ustar00rootroot00000000000000package main type A struct { C D } type D struct { E string } func main() { a := A{} a.C = D{E: "bb"} println(a.C.E) } // Output: // bb yaegi-0.16.1/_test/composite14.go000066400000000000000000000001721460330105400165050ustar00rootroot00000000000000package main import "fmt" type T struct { b []byte } func main() { t := T{nil} fmt.Println(t) } // Output: // {[]} yaegi-0.16.1/_test/composite15.go000066400000000000000000000010421460330105400165030ustar00rootroot00000000000000package main import ( "fmt" ) func interfaceAsInts() { var a interface{} b := 2 c := 3 a = []int{b, c} d, ok := a.([]int) if !ok { println("nope") return } for _, v := range d { fmt.Println(v) } } func interfaceAsInterfaces() { var a, b, c interface{} b = 2 c = 3 a = []interface{}{b, c} d, ok := a.([]interface{}) if !ok { println("nope") return } fmt.Println(d) for _, v := range d { fmt.Println(v) } } func main() { interfaceAsInts() interfaceAsInterfaces() } // Output: // 2 // 3 // [2 3] // 2 // 3 yaegi-0.16.1/_test/composite16.go000066400000000000000000000002371460330105400165110ustar00rootroot00000000000000package main import ( "fmt" "net/url" ) func main() { body := url.Values{ "Action": {"none"}, } fmt.Println(body) } // Output: // map[Action:[none]] yaegi-0.16.1/_test/composite17.go000066400000000000000000000005731460330105400165150ustar00rootroot00000000000000package main import ( "html/template" ) var str = `{{ stringOr .Data "test" }}` func main() { _, err := template.New("test"). Funcs(template.FuncMap{ "stringOr": stringOr, }). Parse(str) if err != nil { println(err.Error()) return } println("success") } func stringOr(v, def string) string { if v == "" { return def } return v } // Output: // success yaegi-0.16.1/_test/composite18.go000066400000000000000000000005641460330105400165160ustar00rootroot00000000000000package main import "fmt" type fn func(string, string) bool var funcs = []fn{ cmpLessFn, cmpGreaterFn, nil, } func cmpLessFn(a string, b string) bool { return a < b } func cmpGreaterFn(a string, b string) bool { return a > b } func main() { for _, f := range funcs { if f == nil { continue } fmt.Println(f("a", "b")) } } // Output: // true // false yaegi-0.16.1/_test/composite19.go000066400000000000000000000007151460330105400165150ustar00rootroot00000000000000package main import "fmt" type fn func(string, string) bool var funcs = map[string]fn{ "less": cmpLessFn, "greater": cmpGreaterFn, "none": nil, } func cmpLessFn(a string, b string) bool { return a < b } func cmpGreaterFn(a string, b string) bool { return a > b } func main() { for _, n := range []string{"less", "greater", "none"} { f := funcs[n] if f == nil { continue } fmt.Println(f("a", "b")) } } // Output: // true // false yaegi-0.16.1/_test/composite2.go000066400000000000000000000002221460330105400164160ustar00rootroot00000000000000package main import "fmt" var a = &[]*T{{"hello"}} type T struct{ name string } func main() { fmt.Println((*a)[0]) } // Output: // &{hello} yaegi-0.16.1/_test/composite3.go000066400000000000000000000002061460330105400164210ustar00rootroot00000000000000package main func main() { var err error var ok bool _, ok = err.(interface{ IsSet() bool }) println(ok) } // Output: // false yaegi-0.16.1/_test/composite4.go000066400000000000000000000001721460330105400164240ustar00rootroot00000000000000package main func main() { var err error _, ok := err.(interface{ IsSet() bool }) println(ok) } // Output: // false yaegi-0.16.1/_test/composite5.go000066400000000000000000000002051460330105400164220ustar00rootroot00000000000000package main import "fmt" type T struct { m uint16 } var t = T{1<<2 | 1<<3} func main() { fmt.Println(t) } // Output: // {12} yaegi-0.16.1/_test/composite6.go000066400000000000000000000002571460330105400164320ustar00rootroot00000000000000package main import ( "fmt" "github.com/traefik/yaegi/_test/ct1" ) type T struct { m uint16 } var t = T{1 << ct1.R} func main() { fmt.Println(t) } // Output: // {2} yaegi-0.16.1/_test/composite7.go000066400000000000000000000002651460330105400164320ustar00rootroot00000000000000package main type T struct { name string } var tab = []*T{{ name: "foo", }, { name: "bar", }} func main() { println(len(tab)) println(tab[0].name) } // Output: // 2 // foo yaegi-0.16.1/_test/composite8.go000066400000000000000000000002731460330105400164320ustar00rootroot00000000000000package main type T struct{ I int } func main() { t := []*T{} s := []int{1, 2} for _, e := range s { x := &T{e} t = append(t, x) } println(t[0].I, t[1].I) } // Output: // 1 2 yaegi-0.16.1/_test/composite8bis.go000066400000000000000000000002761460330105400171330ustar00rootroot00000000000000package main type T struct{ I int } func main() { t := []*T{} s := []int{1, 2} for _, e := range s { x := &T{I: e} t = append(t, x) } println(t[0].I, t[1].I) } // Output: // 1 2 yaegi-0.16.1/_test/composite9.go000066400000000000000000000002071460330105400164300ustar00rootroot00000000000000package main import "fmt" func main() { a := [][]int{make([]int,0)} for _, b := range a { fmt.Println(b) } } // Output: // [] yaegi-0.16.1/_test/const0.go000066400000000000000000000001301460330105400155360ustar00rootroot00000000000000package main const ( a = iota b ) func main() { println(a, b) } // Output: // 0 1 yaegi-0.16.1/_test/const1.go000066400000000000000000000002031460330105400155400ustar00rootroot00000000000000package main type T struct { a int b string } var t = T{1, "hello"} func main() { println(t.a, t.b) } // Output: // 1 hello yaegi-0.16.1/_test/const10.go000066400000000000000000000001751460330105400156300ustar00rootroot00000000000000package main const ( a = 2 b = c + d c = a + d d = e + f e = 3 f = 4 ) func main() { println(b) } // Output: // 16 yaegi-0.16.1/_test/const11.go000066400000000000000000000001751460330105400156310ustar00rootroot00000000000000package main func main() { const ( x = 2 * iota dim ) var t [dim * 2]int println(t[0], len(t)) } // Output: // 0 4 yaegi-0.16.1/_test/const12.go000066400000000000000000000002701460330105400156260ustar00rootroot00000000000000package main type Kind int const ( None Kind = 0 Left Kind = 1 << iota Right Both Kind = Left | Right ) func main() { println(None, Left, Right, Both) } // Output: // 0 2 4 6 yaegi-0.16.1/_test/const13.go000066400000000000000000000003211460330105400156240ustar00rootroot00000000000000package main import ( "fmt" ) func main() { const tooBig = 1267650600228229401496703205376 const huge = 1 << 100 const large = huge >> 38 fmt.Println(int64(large)) } // Output: // 4611686018427387904 yaegi-0.16.1/_test/const14.go000066400000000000000000000002151460330105400156270ustar00rootroot00000000000000package main import "compress/flate" func f1(i int) { println("i:", i) } func main() { i := flate.BestSpeed f1(i) } // Output: // i: 1 yaegi-0.16.1/_test/const15.go000066400000000000000000000001671460330105400156360ustar00rootroot00000000000000package main type T1 t1 type t1 int8 const ( P2 T1 = 2 P3 T1 = 3 ) func main() { println(P3) } // Output: // 3 yaegi-0.16.1/_test/const16.go000066400000000000000000000001261460330105400156320ustar00rootroot00000000000000package main import ( "fmt" ) func main() { fmt.Println(7 / 3) } // Output: // 2 yaegi-0.16.1/_test/const17.go000066400000000000000000000001711460330105400156330ustar00rootroot00000000000000package main import "fmt" var t [7/3]int func main() { t[0] = 3/2 t[1] = 5/2 fmt.Println(t) } // Output: // [1 2] yaegi-0.16.1/_test/const18.go000066400000000000000000000001541460330105400156350ustar00rootroot00000000000000package main import "time" func main() { a := int64(time.Second) println(a) } // Output: // 1000000000 yaegi-0.16.1/_test/const19.go000066400000000000000000000002601460330105400156340ustar00rootroot00000000000000package main import ( "fmt" "time" ) func get10Hours() time.Duration { return 10 * time.Hour } func main() { fmt.Println(get10Hours().String()) } // Output: // 10h0m0s yaegi-0.16.1/_test/const2.go000066400000000000000000000001221460330105400155410ustar00rootroot00000000000000package main func main() { println(a) } const a = "hello" // Output: // hello yaegi-0.16.1/_test/const20.go000066400000000000000000000002221460330105400156220ustar00rootroot00000000000000package main import "fmt" const maxLen = int64(int64(^uint64(0) >> 1)) func main() { fmt.Println(maxLen) } // Output: // 9223372036854775807 yaegi-0.16.1/_test/const21.go000066400000000000000000000001441460330105400156260ustar00rootroot00000000000000package main const a = 64 var b uint = a * a / 2 func main() { println(b) } // Output: // 2048 yaegi-0.16.1/_test/const22.go000066400000000000000000000002251460330105400156270ustar00rootroot00000000000000package main const ( numDec uint8 = (1 << iota) / 2 numHex numOct numFloat ) func main() { println(13 & (numHex | numOct)) } // Output: // 1 yaegi-0.16.1/_test/const23.go000066400000000000000000000001711460330105400156300ustar00rootroot00000000000000package main const maxlen = len("hello") var gfm = [maxlen]byte{} func main() { println(len(gfm)) } // Output: // 5 yaegi-0.16.1/_test/const24.go000066400000000000000000000002201460330105400156240ustar00rootroot00000000000000package main var aa = [...]int{1, 2, 3} const maxlen = cap(aa) var gfm = [maxlen]byte{} func main() { println(len(gfm)) } // Output: // 3 yaegi-0.16.1/_test/const25.go000066400000000000000000000001561460330105400156350ustar00rootroot00000000000000package main const ( FGBlack Attribute = iota + 30 ) type Attribute int func main() { println(FGBlack) } yaegi-0.16.1/_test/const26.go000066400000000000000000000004351460330105400156360ustar00rootroot00000000000000package main import ( "fmt" ) func init() { fmt.Println(constString) fmt.Println(const2) fmt.Println(varString) } const constString string = "hello" const ( const1 = iota + 10 const2 const3 ) var varString string = "test" func main() {} // Output: // hello // 11 // test yaegi-0.16.1/_test/const3.go000066400000000000000000000001411460330105400155430ustar00rootroot00000000000000package main const a, b, c int = 1, 2, 3 func main() { println(a, b, c) } // Output: // 1 2 3 yaegi-0.16.1/_test/const4.go000066400000000000000000000001411460330105400155440ustar00rootroot00000000000000package main const ( a = 2 b = 3 c ) func main() { println(a, b, c) } // Output: // 2 3 3 yaegi-0.16.1/_test/const5.go000066400000000000000000000002411460330105400155460ustar00rootroot00000000000000package main import ( "fmt" ) const ( a uint8 = 2 * iota b c ) func main() { fmt.Printf("%T\n", c) fmt.Println(a, b, c) } // Output: // uint8 // 0 2 4 yaegi-0.16.1/_test/const6.go000066400000000000000000000004141460330105400155510ustar00rootroot00000000000000package main const ( maxNonStarters = 30 maxBufferSize = maxNonStarters + 2 ) type reorderBuffer struct { rune [maxBufferSize]Properties } type Properties struct { pos uint8 size uint8 } func main() { println(len(reorderBuffer{}.rune)) } // Output: // 32 yaegi-0.16.1/_test/const7.go000066400000000000000000000002001460330105400155430ustar00rootroot00000000000000package main import "fmt" const ( a = iota b c d ) type T [c]int func main() { fmt.Println(T{}) } // Output: // [0 0] yaegi-0.16.1/_test/const8.go000066400000000000000000000001651460330105400155560ustar00rootroot00000000000000package main const ( a = 2 b = c + d c = 4 d = 5 ) func main() { println(a, b, c, d) } // Output: // 2 9 4 5 yaegi-0.16.1/_test/const9.go000066400000000000000000000002331460330105400155530ustar00rootroot00000000000000package main const ( a = 2 b = c + d c = a + d d = e + f e = b + 2 f = 4 ) func main() { println(b) } // Error: // 5:2: constant definition loop yaegi-0.16.1/_test/cont.go000066400000000000000000000002131460330105400152750ustar00rootroot00000000000000package main func main() { for i := 0; i < 10; i++ { if i < 5 { continue } println(i) } } // Output: // 5 // 6 // 7 // 8 // 9 yaegi-0.16.1/_test/cont0.go000066400000000000000000000002541460330105400153620ustar00rootroot00000000000000package main func main() { i := 0 for { if i > 10 { break } i++ if i < 5 { continue } println(i) } } // Output: // 5 // 6 // 7 // 8 // 9 // 10 // 11 yaegi-0.16.1/_test/cont1.go000066400000000000000000000002551460330105400153640ustar00rootroot00000000000000package main func main() { i := 0 for { if i > 10 { break } if i < 5 { i++ continue } println(i) i++ } } // Output: // 5 // 6 // 7 // 8 // 9 // 10 yaegi-0.16.1/_test/cont2.go000066400000000000000000000004571460330105400153710ustar00rootroot00000000000000package main func main() { n := 2 m := 2 foo := true OuterLoop: for i := 0; i < n; i++ { println("I: ", i) for j := 0; j < m; j++ { switch foo { case true: println(foo) continue OuterLoop case false: println(foo) } } } } // Output: // I: 0 // true // I: 1 // true yaegi-0.16.1/_test/cont3.go000066400000000000000000000005061460330105400153650ustar00rootroot00000000000000package main func main() { n := 2 m := 2 foo := true OuterLoop: println("boo") for i := 0; i < n; i++ { println("I: ", i) for j := 0; j < m; j++ { switch foo { case true: println(foo) continue OuterLoop case false: println(foo) } } } } // Error: // 15:5: invalid continue label OuterLoop yaegi-0.16.1/_test/context.go000066400000000000000000000004451460330105400160250ustar00rootroot00000000000000package main import "context" func get(ctx context.Context, k string) string { var r string if v := ctx.Value(k); v != nil { r = v.(string) } return r } func main() { ctx := context.WithValue(context.Background(), "hello", "world") println(get(ctx, "hello")) } // Output: // world yaegi-0.16.1/_test/context2.go000066400000000000000000000005141460330105400161040ustar00rootroot00000000000000package main import "context" func get(ctx context.Context, k string) string { var r string var ok bool if v := ctx.Value(k); v != nil { r, ok = v.(string) println(ok) } return r } func main() { ctx := context.WithValue(context.Background(), "hello", "world") println(get(ctx, "hello")) } // Output: // true // world yaegi-0.16.1/_test/convert0.go000066400000000000000000000004111460330105400160720ustar00rootroot00000000000000package main type T struct { v int } type comparator func(T, T) bool func sort(items []T, comp comparator) { println("in sort") } func compT(t0, t1 T) bool { return t0.v < t1.v } func main() { a := []T{} sort(a, comparator(compT)) } // Output: // in sort yaegi-0.16.1/_test/convert1.go000066400000000000000000000003221460330105400160740ustar00rootroot00000000000000package main import "strconv" type atoidef func(s string) (int, error) func main() { stdatoi := atoidef(strconv.Atoi) n, err := stdatoi("7") if err != nil { panic(err) } println(n) } // Output: // 7 yaegi-0.16.1/_test/convert2.go000066400000000000000000000004501460330105400160770ustar00rootroot00000000000000package main import "bufio" func fakeSplitFunc(data []byte, atEOF bool) (advance int, token []byte, err error) { return 7, nil, nil } func main() { splitfunc := bufio.SplitFunc(fakeSplitFunc) n, _, err := splitfunc(nil, true) if err != nil { panic(err) } println(n) } // Output: // 7 yaegi-0.16.1/_test/convert3.go000066400000000000000000000005021460330105400160760ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) func main() { next := func(rw http.ResponseWriter, req *http.Request) { rw.Header().Set("Cache-Control", "max-age=20") rw.WriteHeader(http.StatusOK) } f := http.HandlerFunc(next) fmt.Printf("%T\n", f.ServeHTTP) } // Output: // func(http.ResponseWriter, *http.Request) yaegi-0.16.1/_test/copy0.go000066400000000000000000000002261460330105400153700ustar00rootroot00000000000000package main import "fmt" func main() { a := []int{10, 20, 30} b := [4]int{} c := b[:] copy(c, a) fmt.Println(c) } // Output: // [10 20 30 0] yaegi-0.16.1/_test/copy1.go000066400000000000000000000002271460330105400153720ustar00rootroot00000000000000package main import "fmt" func main() { a := []int{10, 20, 30} b := &[4]int{} c := b[:] copy(c, a) fmt.Println(c) } // Output: // [10 20 30 0] yaegi-0.16.1/_test/copy2.go000066400000000000000000000003111460330105400153650ustar00rootroot00000000000000package main import "fmt" func f(a, b []int) interface{} { return copy(a, b) } func main() { a := []int{10, 20, 30} b := [4]int{} c := b[:] r := f(c, a) fmt.Println(r.(int)) } // Output: // 3 yaegi-0.16.1/_test/ct/000077500000000000000000000000001460330105400144155ustar00rootroot00000000000000yaegi-0.16.1/_test/ct/ct1.go000066400000000000000000000000661460330105400154350ustar00rootroot00000000000000package ct func init() { println("hello from ct1") } yaegi-0.16.1/_test/ct/ct2.go000066400000000000000000000001101460330105400154240ustar00rootroot00000000000000// +build !dummy package ct func init() { println("hello from ct2") } yaegi-0.16.1/_test/ct/ct3.go000066400000000000000000000001071460330105400154330ustar00rootroot00000000000000// +build dummy package ct func init() { println("hello from ct3") } yaegi-0.16.1/_test/ct1/000077500000000000000000000000001460330105400144765ustar00rootroot00000000000000yaegi-0.16.1/_test/ct1/ct1.go000066400000000000000000000000771460330105400155200ustar00rootroot00000000000000package ct1 type Class uint const ( L Class = iota R AL ) yaegi-0.16.1/_test/d1/000077500000000000000000000000001460330105400143135ustar00rootroot00000000000000yaegi-0.16.1/_test/d1/d1.go000066400000000000000000000001711460330105400151450ustar00rootroot00000000000000package d1 type T struct { Name string } func (t *T) F() { println(t.Name) } func NewT(s string) *T { return &T{s} } yaegi-0.16.1/_test/d2/000077500000000000000000000000001460330105400143145ustar00rootroot00000000000000yaegi-0.16.1/_test/d2/d2.go000066400000000000000000000001361460330105400151500ustar00rootroot00000000000000package d2 import "github.com/traefik/yaegi/_test/d1" var ( X = d1.NewT("test") F = X.F ) yaegi-0.16.1/_test/d3.go000066400000000000000000000001561460330105400146460ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/d2" func main() { f := d2.F f() } // Output: // test yaegi-0.16.1/_test/defer0.go000066400000000000000000000002741460330105400155060ustar00rootroot00000000000000package main import "fmt" func main() { println("hello") defer fmt.Println("bye") defer fmt.Println("au revoir") println("world") } // Output: // hello // world // au revoir // bye yaegi-0.16.1/_test/defer1.go000066400000000000000000000002371460330105400155060ustar00rootroot00000000000000package main import "fmt" func main() { println("hello") defer func() { fmt.Println("bye") }() println("world") } // Output: // hello // world // bye yaegi-0.16.1/_test/defer2.go000066400000000000000000000002641460330105400155070ustar00rootroot00000000000000package main import "fmt" func main() { println("hello") i := 12 defer func() { fmt.Println("i:", i) }() i = 20 println("world") } // Output: // hello // world // i: 20 yaegi-0.16.1/_test/defer3.go000066400000000000000000000003061460330105400155050ustar00rootroot00000000000000package main import ( "net/http" "net/http/httptest" ) func main() { println("hello") mux := http.NewServeMux() server := httptest.NewServer(mux) defer server.Close() } // Output: // hello yaegi-0.16.1/_test/defer4.go000066400000000000000000000003601460330105400155060ustar00rootroot00000000000000package main import "sync" type T struct { mu sync.RWMutex name string } func (t *T) get() string { t.mu.RLock() defer t.mu.RUnlock() return t.name } var d = T{name: "test"} func main() { println(d.get()) } // Output: // test yaegi-0.16.1/_test/defer5.go000066400000000000000000000005421460330105400155110ustar00rootroot00000000000000package main func f1() { defer println("f1-begin") f2() defer println("f1-end") } func f2() { defer println("f2-begin") f3() defer println("f2-end") } func f3() { defer println("f3-begin") println("hello") defer println("f3-end") } func main() { f1() } // Output: // hello // f3-end // f3-begin // f2-end // f2-begin // f1-end // f1-begin yaegi-0.16.1/_test/defer6.go000066400000000000000000000005241460330105400155120ustar00rootroot00000000000000package main func f1() { defer print("f1-begin ") f2() defer print("f1-end ") } func f2() { defer print("f2-begin ") f3() defer print("f2-end ") } func f3() { defer print("f3-begin ") print("hello ") defer print("f3-end ") } func main() { f1() println() } // Output: // hello f3-end f3-begin f2-end f2-begin f1-end f1-begin yaegi-0.16.1/_test/defer7.go000066400000000000000000000003211460330105400155060ustar00rootroot00000000000000package main import "fmt" func f1(in, out []string) { defer copy(out, in) } func main() { in := []string{"foo", "bar"} out := make([]string, 2) f1(in, out) fmt.Println(out) } // Output: // [foo bar] yaegi-0.16.1/_test/defer8.go000066400000000000000000000004301460330105400155100ustar00rootroot00000000000000package main import "fmt" func f1(m map[string]string) { defer delete(m, "foo") defer delete(m, "test") fmt.Println(m) } func main() { m := map[string]string{ "foo": "bar", "baz": "bat", } f1(m) fmt.Println(m) } // Output: // map[baz:bat foo:bar] // map[baz:bat] yaegi-0.16.1/_test/defer9.go000066400000000000000000000003111460330105400155070ustar00rootroot00000000000000package main import "fmt" func f1(ch chan string) { defer close(ch) ch <- "foo" } func main() { ch := make(chan string, 1) f1(ch) for s := range ch { fmt.Println(s) } } // Output: // foo yaegi-0.16.1/_test/delete0.go000066400000000000000000000002311460330105400156540ustar00rootroot00000000000000package main import "fmt" func main() { a := map[string]int{"hello": 1, "world": 3} delete(a, "hello") fmt.Println(a) } // Output: // map[world:3] yaegi-0.16.1/_test/eval0.go000066400000000000000000000006541460330105400153520ustar00rootroot00000000000000package main import ( "log" "os" "github.com/traefik/yaegi/interp" ) func main() { log.SetFlags(log.Lshortfile) i := interp.New(interp.Options{Stdout: os.Stdout}) if _, err := i.Eval(`func f() (int, int) { return 1, 2 }`); err != nil { log.Fatal(err) } if _, err := i.Eval(`a, b := f()`); err != nil { log.Fatal(err) } if _, err := i.Eval(`println(a, b)`); err != nil { log.Fatal(err) } } // Output: // 1 2 yaegi-0.16.1/_test/export0.go000066400000000000000000000001111460330105400157300ustar00rootroot00000000000000package main func Test() { println("Hello from test") } // Output: // yaegi-0.16.1/_test/export1.go000066400000000000000000000002021460330105400157320ustar00rootroot00000000000000package sample type Sample struct{ Name string } func (s *Sample) Test() { println("Hello from test", s.Name) } // Output: // yaegi-0.16.1/_test/factor.go000066400000000000000000000010751460330105400156170ustar00rootroot00000000000000package main import ( "fmt" "math/big" ) func main() { // 157 bit n = pq with p ~= 78 bits n := big.NewInt(0) n.SetString("273966616513101251352941655302036077733021013991", 10) i := big.NewInt(0) // Set i to be p - 10e6 i.SetString("496968652506233112158689", 10) // Move temp big int out here so no possible GC thrashing temp := big.NewInt(0) // Avoid creating the new bigint each time two := big.NewInt(2) for { // Check if the odd number is a divisor of n temp.Mod(n, i) if temp.Sign() == 0 { fmt.Println(i) break } i.Add(i, two) } } yaegi-0.16.1/_test/fib.go000066400000000000000000000003001460330105400150670ustar00rootroot00000000000000package main // Compute fibonacci numbers, no memoization func fib(n int) int { if n < 2 { return n } return fib(n-2) + fib(n-1) } func main() { println(fib(35)) //println(fib(10)) } yaegi-0.16.1/_test/fib0.go000066400000000000000000000002741460330105400151610ustar00rootroot00000000000000package main // Compute fibonacci numbers, no memoization func fib(n int) int { if n < 2 { return n } return fib(n-2) + fib(n-1) } func main() { println(fib(4)) } // Output: // 3 yaegi-0.16.1/_test/file_access.go000066400000000000000000000007541460330105400166040ustar00rootroot00000000000000package main import ( "fmt" "os" ) func main() { file, err := os.CreateTemp("", "yeagibench") if err != nil { panic(err) } n, err := file.Write([]byte("hello world")) if err != nil { panic(err) } fmt.Println("n:", n) err = file.Close() if err != nil { panic(err) } b, err := os.ReadFile(file.Name()) if err != nil { panic(err) } fmt.Println("b:", string(b)) err = os.Remove(file.Name()) if err != nil { panic(err) } } // Output: // n: 11 // b: hello world yaegi-0.16.1/_test/flag0.go000066400000000000000000000002011460330105400153200ustar00rootroot00000000000000package main import ( "flag" "fmt" ) func main() { flag.Parse() fmt.Println("Narg:", flag.NArg()) } // Output: // Narg: 0 yaegi-0.16.1/_test/foo-bar/000077500000000000000000000000001460330105400153345ustar00rootroot00000000000000yaegi-0.16.1/_test/foo-bar/foo-bar.go000066400000000000000000000000421460330105400172040ustar00rootroot00000000000000package bar var Name = "foo-bar" yaegi-0.16.1/_test/foo/000077500000000000000000000000001460330105400145725ustar00rootroot00000000000000yaegi-0.16.1/_test/foo/bar.go000066400000000000000000000002061460330105400156630ustar00rootroot00000000000000package foo import "github.com/traefik/yaegi/_test/foo/boo" var Bar = "BARR" var Boo = boo.Boo func init() { println("init foo") } yaegi-0.16.1/_test/foo/bir.go000066400000000000000000000001271460330105400156750ustar00rootroot00000000000000package foo import "github.com/traefik/yaegi/_test/foo/boo" var Bir = boo.Boo + "22" yaegi-0.16.1/_test/foo/boo/000077500000000000000000000000001460330105400153515ustar00rootroot00000000000000yaegi-0.16.1/_test/foo/boo/boo.go000066400000000000000000000001021460330105400164500ustar00rootroot00000000000000package boo var Boo = "Boo" func init() { println("init boo") } yaegi-0.16.1/_test/for0.go000066400000000000000000000002351460330105400152040ustar00rootroot00000000000000package main func main() { i := 0 //for ;i >= 0; i++ { for { if i > 5 { break } println(i) i++ } } // Output: // 0 // 1 // 2 // 3 // 4 // 5 yaegi-0.16.1/_test/for1.go000066400000000000000000000002111460330105400151770ustar00rootroot00000000000000package main func main() { i := 0 for i < 10 { if i > 4 { break } println(i) i++ } } // Output: // 0 // 1 // 2 // 3 // 4 yaegi-0.16.1/_test/for10.go000066400000000000000000000001741460330105400152670ustar00rootroot00000000000000package main func main() { for a := 0; false; { println("nok", a) a++ break } println("bye") } // Output: // bye yaegi-0.16.1/_test/for11.go000066400000000000000000000002111460330105400152600ustar00rootroot00000000000000package main func main() { a := 0 for ; true; a++ { println("nok", a) break } println("bye", a) } // Output: // nok 0 // bye 0 yaegi-0.16.1/_test/for12.go000066400000000000000000000001721460330105400152670ustar00rootroot00000000000000package main func main() { for a := 0; false; a++ { println("nok", a) break } println("bye") } // Output: // bye yaegi-0.16.1/_test/for13.go000066400000000000000000000002011460330105400152610ustar00rootroot00000000000000package main func main() { a := 0 for ; false; a++ { println("nok", a) break } println("bye", a) } // Output: // bye 0 yaegi-0.16.1/_test/for14.go000066400000000000000000000002161460330105400152700ustar00rootroot00000000000000package main func main() { for a := 0; true; a++ { println(a) if a > 0 { break } } println("bye") } // Output: // 0 // 1 // bye yaegi-0.16.1/_test/for15.go000066400000000000000000000002561460330105400152750ustar00rootroot00000000000000package main func f() int { println("in f"); return 1 } func main() { for i := f(); ; { println("in loop") if i > 0 { break } } } // Output: // in f // in loop yaegi-0.16.1/_test/for16.go000066400000000000000000000002321460330105400152700ustar00rootroot00000000000000package main func main() { max := 1 for ; ; max-- { if max == 0 { break } println("in for") } println("bye") } // Output: // in for // bye yaegi-0.16.1/_test/for2.go000066400000000000000000000001701460330105400152040ustar00rootroot00000000000000package main func main() { for i := 2; ; i++ { println(i) if i > 3 { break } } } // Output: // 2 // 3 // 4 yaegi-0.16.1/_test/for3.go000066400000000000000000000006161460330105400152120ustar00rootroot00000000000000package main import ( "fmt" "sort" ) func main() { m := map[string][]string{ "hello": []string{"foo", "bar"}, "world": []string{"truc", "machin"}, } var content []string for key, values := range m { for _, value := range values { content = append(content, key+value) } } sort.Strings(content) fmt.Println(content) } // Output: // [hellobar hellofoo worldmachin worldtruc] yaegi-0.16.1/_test/for4.go000066400000000000000000000002431460330105400152070ustar00rootroot00000000000000package main func main() { for i := 1; i <= 2; i++ { var x, y int println(x, y) x, y = i, 2*i println(x, y) } } // Output: // 0 0 // 1 2 // 0 0 // 2 4 yaegi-0.16.1/_test/for5.go000066400000000000000000000001631460330105400152110ustar00rootroot00000000000000package main func main() { var a bool for a { println("nok") break } println("bye") } // Output: // bye yaegi-0.16.1/_test/for6.go000066400000000000000000000004111460330105400152060ustar00rootroot00000000000000package main import "fmt" func main() { s := "三" for i := 0; i < len(s); i++ { fmt.Printf("byte %d: %d\n", i, s[i]) } for i, r := range s { fmt.Printf("rune %d: %d\n", i, r) } } // Output: // byte 0: 228 // byte 1: 184 // byte 2: 137 // rune 0: 19977 yaegi-0.16.1/_test/for7.go000066400000000000000000000001461460330105400152140ustar00rootroot00000000000000package main func main() { for i := 0; i; { } } // Error: // 4:14: non-bool used as for condition yaegi-0.16.1/_test/for8.go000066400000000000000000000002261460330105400152140ustar00rootroot00000000000000package main func main() { for i := 0; i < 4; i++ { for { break } if i == 1 { continue } println(i) } } // Output: // 0 // 2 // 3 yaegi-0.16.1/_test/for9.go000066400000000000000000000001521460330105400152130ustar00rootroot00000000000000package main func main() { for false { println("nok") break } println("bye") } // Output: // bye yaegi-0.16.1/_test/fun.go000066400000000000000000000001441460330105400151250ustar00rootroot00000000000000package main func f(i int) int { return i + 15 } func main() { println(f(4)) } // Output: // 19 yaegi-0.16.1/_test/fun10.go000066400000000000000000000003101460330105400152610ustar00rootroot00000000000000package main import "fmt" func f() func() { return nil } func main() { g := f() fmt.Printf("%T %v\n", g, g) if g == nil { fmt.Println("nil func") } } // Output: // func() // nil func yaegi-0.16.1/_test/fun11.go000066400000000000000000000001321460330105400152640ustar00rootroot00000000000000package main var f F type F func(int) func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/fun12.go000066400000000000000000000002101460330105400152620ustar00rootroot00000000000000package main func use(interface{}) {} func main() { z := map[string]interface{}{"a": 5} use(z) println("bye") } // Output: // bye yaegi-0.16.1/_test/fun13.go000066400000000000000000000003171460330105400152730ustar00rootroot00000000000000package main import "fmt" type T struct{} func newT() (T, error) { return T{}, nil } func main() { var ( i interface{} err error ) i, err = newT() fmt.Println(i, err) } // Output: // {} yaegi-0.16.1/_test/fun14.go000066400000000000000000000002361460330105400152740ustar00rootroot00000000000000package main func f() (bool, int) { return true, 2 } func g() (bool, int) { return f() } func main() { b, i := g() println(b, i) } // Output: // true 2 yaegi-0.16.1/_test/fun15.go000066400000000000000000000003161460330105400152740ustar00rootroot00000000000000package main func f1(a int) interface{} { return a + 1 } func f2(a int64) interface{} { return a + 1 } func main() { c := f1(3) println(c.(int)) b := f2(3) println(b.(int64)) } // Output: // 4 // 4 yaegi-0.16.1/_test/fun16.go000066400000000000000000000005071460330105400152770ustar00rootroot00000000000000package main func f1(a int) int { return a + 1 } func f2(a int) interface{} { // TODO: re-enable the optimized case below, once we've figured out why it // interferes with the empty interface model. // return f1(a) var foo interface{} = f1(a) return foo } func main() { c := f2(3) println(c.(int)) } // Output: // 4 yaegi-0.16.1/_test/fun17.go000066400000000000000000000002471460330105400153010ustar00rootroot00000000000000package main func f1(a int) interface{} { return a + 1 } func f2(a int) interface{} { return f1(a) } func main() { c := f2(3) println(c.(int)) } // Output: // 4 yaegi-0.16.1/_test/fun18.go000066400000000000000000000002421460330105400152750ustar00rootroot00000000000000package main var m = map[string]int{"foo": 1, "bar": 2} func f(s string) interface{} { return m[s] } func main() { println(f("foo").(int)) } // Output: // 1 yaegi-0.16.1/_test/fun19.go000066400000000000000000000002521460330105400152770ustar00rootroot00000000000000package main import ( "fmt" ) func foo() ([]string, error) { return nil, fmt.Errorf("bar") } func main() { a, b := foo() fmt.Println(a, b) } // Output: // [] bar yaegi-0.16.1/_test/fun2.go000066400000000000000000000002311460330105400152040ustar00rootroot00000000000000package main type Coord struct{ x, y int } func f(c Coord) int { return c.x + c.y } func main() { c := Coord{3, 4} println(f(c)) } // Output: // 7 yaegi-0.16.1/_test/fun20.go000066400000000000000000000003431460330105400152700ustar00rootroot00000000000000package main import "fmt" var myerr error = fmt.Errorf("bar") func ferr() error { return myerr } func foo() ([]string, error) { return nil, ferr() } func main() { a, b := foo() fmt.Println(a, b) } // Output: // [] bar yaegi-0.16.1/_test/fun21.go000066400000000000000000000001771460330105400152760ustar00rootroot00000000000000package main func Bar() string { return } func main() { println(Bar()) } // Error: // 4:2: not enough arguments to return yaegi-0.16.1/_test/fun22.go000066400000000000000000000001671460330105400152760ustar00rootroot00000000000000package main import "time" func main() { time.Date() } // Error: // 6:2: not enough arguments in call to time.Date yaegi-0.16.1/_test/fun23.go000066400000000000000000000001731460330105400152740ustar00rootroot00000000000000package main func f(x int) { return x } func main() { print("hello") } // Error: // 3:17: too many arguments to return yaegi-0.16.1/_test/fun24.go000066400000000000000000000002521460330105400152730ustar00rootroot00000000000000package main func f(x int) (int, int) { return x, "foo" } func main() { print("hello") } // Error: // cannot use "foo" (type stringT) as type intT in return argument yaegi-0.16.1/_test/fun25.go000066400000000000000000000002511460330105400152730ustar00rootroot00000000000000package main func f(x string) (a int, b int) { return x, 5 } func main() { print("hello") } // Error: // cannot use x (type stringT) as type intT in return argument yaegi-0.16.1/_test/fun26.go000066400000000000000000000003071460330105400152760ustar00rootroot00000000000000package main type F func() (int, error) func f1() (int, error) { return 3, nil } func f2(a string, f F) { c, _ := f() println(a, c) } func main() { f2("hello", F(f1)) } // Output: // hello 3 yaegi-0.16.1/_test/fun27.go000066400000000000000000000003421460330105400152760ustar00rootroot00000000000000package main import ( "fmt" "sync" ) func main() { var wg sync.WaitGroup wg.Add(1) go func() { defer wg.Done() print("test") }() wg.Wait() } func print(state string) { fmt.Println(state) } // Output: // test yaegi-0.16.1/_test/fun28.go000066400000000000000000000004041460330105400152760ustar00rootroot00000000000000package main import ( "runtime" ) type T struct { name string } func finalize(t *T) { println("finalize") } func newT() *T { t := new(T) runtime.SetFinalizer(t, finalize) return t } func main() { t := newT() println(t != nil) } // Output: // true yaegi-0.16.1/_test/fun3.go000066400000000000000000000002561460330105400152140ustar00rootroot00000000000000package main type Coord struct{ x, y int } func f(i, j int, c Coord) int { return i*c.x + j*c.y } func main() { c := Coord{3, 4} println(f(2, 3, c)) } // Output: // 18 yaegi-0.16.1/_test/fun4.go000066400000000000000000000001211460330105400152040ustar00rootroot00000000000000package main func f() {} func main() { f() println("ok") } // Output: // ok yaegi-0.16.1/_test/fun5.go000066400000000000000000000001301460330105400152050ustar00rootroot00000000000000package main func f(i int64) { println(i) } func main() { f(34) } // Output: // 34 yaegi-0.16.1/_test/fun6.go000066400000000000000000000003061460330105400152130ustar00rootroot00000000000000package main import ( "fmt" "sync" ) func NewPool() Pool { return Pool{} } type Pool struct { p *sync.Pool } var _pool = NewPool() func main() { fmt.Println(_pool) } // Output: // {} yaegi-0.16.1/_test/fun7.go000066400000000000000000000002601460330105400152130ustar00rootroot00000000000000package main import ( goflag "flag" "fmt" ) func Foo(goflag *goflag.Flag) { fmt.Println(goflag) } func main() { g := &goflag.Flag{} Foo(g) } // Output: // &{ } yaegi-0.16.1/_test/fun8.go000066400000000000000000000001221460330105400152110ustar00rootroot00000000000000package main func main() { println(f == nil) } var f func() // Output: // true yaegi-0.16.1/_test/fun9.go000066400000000000000000000001521460330105400152150ustar00rootroot00000000000000package main type T uint func main() { type myint int var i = myint(1) println(i) } // Output: // 1 yaegi-0.16.1/_test/gen1.go000066400000000000000000000012071460330105400151700ustar00rootroot00000000000000package main import "fmt" // SumInts adds together the values of m. func SumInts(m map[string]int64) int64 { var s int64 for _, v := range m { s += v } return s } // SumFloats adds together the values of m. func SumFloats(m map[string]float64) float64 { var s float64 for _, v := range m { s += v } return s } func main() { // Initialize a map for the integer values ints := map[string]int64{ "first": 34, "second": 12, } // Initialize a map for the float values floats := map[string]float64{ "first": 35.98, "second": 26.99, } fmt.Printf("Non-Generic Sums: %v and %v\n", SumInts(ints), SumFloats(floats)) } yaegi-0.16.1/_test/gen10.go000066400000000000000000000001661460330105400152530ustar00rootroot00000000000000package main func genFunc() (f func()) { return f } func main() { println(genFunc() == nil) } // Output: // true yaegi-0.16.1/_test/gen11.go000066400000000000000000000007641460330105400152600ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" "net/netip" ) type Slice[T any] struct { x []T } type IPPrefixSlice struct { x Slice[netip.Prefix] } func (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.x) } // MarshalJSON implements json.Marshaler. func (v IPPrefixSlice) MarshalJSON() ([]byte, error) { return v.x.MarshalJSON() } func main() { t := IPPrefixSlice{} fmt.Println(t) b, e := t.MarshalJSON() fmt.Println(string(b), e) } // Output: // {{[]}} // null yaegi-0.16.1/_test/gen12.go000066400000000000000000000006131460330105400152520ustar00rootroot00000000000000package main import ( "fmt" ) func MapOf[K comparable, V any](m map[K]V) Map[K, V] { return Map[K, V]{m} } type Map[K comparable, V any] struct { ж map[K]V } func (v MapView) Int() Map[string, int] { return MapOf(v.ж.Int) } type VMap struct { Int map[string]int } type MapView struct { ж *VMap } func main() { mv := MapView{&VMap{}} fmt.Println(mv.ж) } // Output: // &{map[]} yaegi-0.16.1/_test/gen13.go000066400000000000000000000003411460330105400152510ustar00rootroot00000000000000package main type Map[K comparable, V any] struct { ж map[K]V } func (m Map[K, V]) Has(k K) bool { _, ok := m.ж[k] return ok } func main() { m := Map[string, float64]{} println(m.Has("test")) } // Output: // false yaegi-0.16.1/_test/gen2.go000066400000000000000000000012331460330105400151700ustar00rootroot00000000000000package main import "fmt" // SumIntsOrFloats sums the values of map m. It supports both int64 and float64 // as types for map values. func SumIntsOrFloats[K comparable, V int64 | float64](m map[K]V) V { var s V for _, v := range m { s += v } return s } func main() { // Initialize a map for the integer values ints := map[string]int64{ "first": 34, "second": 12, } // Initialize a map for the float values floats := map[string]float64{ "first": 35.98, "second": 26.99, } fmt.Printf("Generic Sums: %v and %v\n", SumIntsOrFloats[string, int64](ints), SumIntsOrFloats[string, float64](floats)) } // Output: // Generic Sums: 46 and 62.97 yaegi-0.16.1/_test/gen3.go000066400000000000000000000004131460330105400151700ustar00rootroot00000000000000package main type Number interface { int | int64 | ~float64 } func Sum[T Number](numbers []T) T { var total T for _, x := range numbers { total += x } return total } func main() { xs := []int{3, 5, 10} total := Sum(xs) println(total) } // Output: // 18 yaegi-0.16.1/_test/gen4.go000066400000000000000000000012101460330105400151650ustar00rootroot00000000000000package main import "fmt" type List[T any] struct { head, tail *element[T] } // A recursive generic type. type element[T any] struct { next *element[T] val T } func (lst *List[T]) Push(v T) { if lst.tail == nil { lst.head = &element[T]{val: v} lst.tail = lst.head } else { lst.tail.next = &element[T]{val: v} lst.tail = lst.tail.next } } func (lst *List[T]) GetAll() []T { var elems []T for e := lst.head; e != nil; e = e.next { elems = append(elems, e.val) } return elems } func main() { lst := List[int]{} lst.Push(10) lst.Push(13) lst.Push(23) fmt.Println("list:", lst.GetAll()) } // Output: // list: [10 13 23] yaegi-0.16.1/_test/gen5.go000066400000000000000000000005011460330105400151700ustar00rootroot00000000000000package main import "fmt" type Set[Elem comparable] struct { m map[Elem]struct{} } func Make[Elem comparable]() Set[Elem] { return Set[Elem]{m: make(map[Elem]struct{})} } func (s Set[Elem]) Add(v Elem) { s.m[v] = struct{}{} } func main() { s := Make[int]() s.Add(1) fmt.Println(s) } // Output: // {map[1:{}]} yaegi-0.16.1/_test/gen6.go000066400000000000000000000004271460330105400152000ustar00rootroot00000000000000package main func MapKeys[K comparable, V any](m map[K]V) []K { r := make([]K, 0, len(m)) for k := range m { r = append(r, k) } return r } func main() { var m = map[int]string{1: "2", 2: "4", 4: "8"} // Test type inference println(len(MapKeys(m))) } // Output: // 3 yaegi-0.16.1/_test/gen7.go000066400000000000000000000004521460330105400151770ustar00rootroot00000000000000package main func MapKeys[K comparable, V any](m map[K]V) []K { r := make([]K, 0, len(m)) for k := range m { r = append(r, k) } return r } func main() { var m = map[int]string{1: "2", 2: "4", 4: "8"} // Test type inference println(len(MapKeys)) } // Error: // invalid argument for len yaegi-0.16.1/_test/gen8.go000066400000000000000000000003541460330105400152010ustar00rootroot00000000000000package main type Float interface { ~float32 | ~float64 } func add[T Float](a, b T) float64 { return float64(a) + float64(b) } func main() { var x, y int = 1, 2 println(add(x, y)) } // Error: // int does not implement main.Float yaegi-0.16.1/_test/gen9.go000066400000000000000000000003371460330105400152030ustar00rootroot00000000000000package main type Float interface { ~float32 | ~float64 } func add[T Float](a, b T) float64 { return float64(a) + float64(b) } func main() { println(add(1, 2)) } // Error: // untyped int does not implement main.Float yaegi-0.16.1/_test/goto0.go000066400000000000000000000002161460330105400153650ustar00rootroot00000000000000package main func main() { println("foo") goto L1 println("Hello") L1: println("bar") println("bye") } // Output: // foo // bar // bye yaegi-0.16.1/_test/goto1.go000066400000000000000000000001371460330105400153700ustar00rootroot00000000000000package main func main() { if true { goto here } here: println("ok") } // Output: // ok yaegi-0.16.1/_test/heap.go000066400000000000000000000017601460330105400152570ustar00rootroot00000000000000// This example demonstrates an integer heap built using the heap interface. package main import ( "container/heap" "fmt" ) // An IntHeap is a min-heap of ints. type IntHeap []int func (h IntHeap) Len() int { return len(h) } func (h IntHeap) Less(i, j int) bool { return h[i] < h[j] } func (h IntHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] } func (h *IntHeap) Push(x interface{}) { // Push and Pop use pointer receivers because they modify the slice's length, // not just its contents. *h = append(*h, x.(int)) } func (h *IntHeap) Pop() interface{} { old := *h n := len(old) x := old[n-1] *h = old[0 : n-1] return x } // This example inserts several ints into an IntHeap, checks the minimum, // and removes them in order of priority. func main() { h := &IntHeap{2, 1, 5} heap.Init(h) heap.Push(h, 3) fmt.Printf("minimum: %d\n", (*h)[0]) fmt.Println("h:", h) for h.Len() > 0 { fmt.Printf("%d ", heap.Pop(h)) } } // Output: // minimum: 1 // h: &[1 2 5 3] // 1 2 3 5 yaegi-0.16.1/_test/if.go000066400000000000000000000001601460330105400147310ustar00rootroot00000000000000package main func main() { if a := f(); a > 0 { println(a) } } func f() int { return 1 } // Output: // 1 yaegi-0.16.1/_test/if0.go000066400000000000000000000001641460330105400150150ustar00rootroot00000000000000package main func main() { var a bool if a { println("ok") } else { println("nok") } } // Output: // nok yaegi-0.16.1/_test/if1.go000066400000000000000000000001301460330105400150070ustar00rootroot00000000000000package main func main() { i := 1 if i > 0 { } println("bye") } // Output: // bye yaegi-0.16.1/_test/if2.go000066400000000000000000000002231460330105400150130ustar00rootroot00000000000000package main import "fmt" func main() { var i int if i % 1000000 { fmt.Println("oops") } } // Error: // 7:5: non-bool used as if condition yaegi-0.16.1/_test/if3.go000066400000000000000000000002331460330105400150150ustar00rootroot00000000000000package main func main() { a := 0 if false { println("false") a = 1 } else { println("true") a = -1 } println(a) } // Output: // true // -1 yaegi-0.16.1/_test/if4.go000066400000000000000000000002541460330105400150210ustar00rootroot00000000000000package main const bad = false func main() { a := 0 if bad { println("false") a = 1 } else { println("true") a = -1 } println(a) } // Output: // true // -1 yaegi-0.16.1/_test/if5.go000066400000000000000000000001451460330105400150210ustar00rootroot00000000000000package main func main() { if true { println("ok") } println("bye") } // Output: // ok // bye yaegi-0.16.1/_test/if6.go000066400000000000000000000001411460330105400150160ustar00rootroot00000000000000package main func main() { if false { println("nok") } println("bye") } // Output: // bye yaegi-0.16.1/_test/if7.go000066400000000000000000000001701460330105400150210ustar00rootroot00000000000000package main func main() { a := 0 b := false if (b) { a = 1 } else { a = -1 } println(a) } // Output: // -1 yaegi-0.16.1/_test/imag0.go000066400000000000000000000002531460330105400153330ustar00rootroot00000000000000package main import "fmt" func f(c complex128) interface{} { return imag(c) } func main() { c := complex(3, 2) a := f(c) fmt.Println(a.(float64)) } // Output: // 2 yaegi-0.16.1/_test/import0.go000066400000000000000000000001361460330105400157300ustar00rootroot00000000000000package main import "fmt" func main() { fmt.Println("Hello", 42) } // Output: // Hello 42 yaegi-0.16.1/_test/import1.go000066400000000000000000000001361460330105400157310ustar00rootroot00000000000000package main import f "fmt" func main() { f.Println("Hello", 42) } // Output: // Hello 42 yaegi-0.16.1/_test/import2.go000066400000000000000000000001341460330105400157300ustar00rootroot00000000000000package main import . "fmt" func main() { Println("Hello", 42) } // Output: // Hello 42 yaegi-0.16.1/_test/import3.go000066400000000000000000000002251460330105400157320ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/foo" func main() { println(foo.Bar, foo.Boo) } // Output: // init boo // init foo // BARR Boo yaegi-0.16.1/_test/import4.go000066400000000000000000000002061460330105400157320ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/p1" func main() { println("num:", p1.Uint32()) } // Output: // num: 2596996162 yaegi-0.16.1/_test/import5.go000066400000000000000000000002501460330105400157320ustar00rootroot00000000000000package main import boo "github.com/traefik/yaegi/_test/foo" func main() { println(boo.Bar, boo.Boo, boo.Bir) } // Output: // init boo // init foo // BARR Boo Boo22 yaegi-0.16.1/_test/import6.go000066400000000000000000000002561460330105400157410ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/c1" func main() { println(c1.C1) } // Error: // import cycle not allowed // imports github.com/traefik/yaegi/_test/c1 yaegi-0.16.1/_test/import7.go000066400000000000000000000001751460330105400157420ustar00rootroot00000000000000package main import bar "github.com/traefik/yaegi/_test/foo-bar" func main() { println(bar.Name) } // Output: // foo-bar yaegi-0.16.1/_test/import8.go000066400000000000000000000001721460330105400157400ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/b1/foo" func main() { println(foo.Desc) } // Output: // in b1/foo yaegi-0.16.1/_test/import9.go000066400000000000000000000001711460330105400157400ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/baz-bat" func main() { println(baz.Name) } // Output: // baz-bat yaegi-0.16.1/_test/inc.go000066400000000000000000000001251460330105400151050ustar00rootroot00000000000000package main func main() { i := 2 //i++ i = i + 1 println(i) } // Output: // 3 yaegi-0.16.1/_test/inception.go000066400000000000000000000006741460330105400163350ustar00rootroot00000000000000package main import ( "log" "github.com/traefik/yaegi/interp" ) func main() { log.SetFlags(log.Lshortfile) i := interp.New(interp.Options{}) i.Use(interp.Symbols) if _, err := i.Eval(`import "github.com/traefik/yaegi/interp"`); err != nil { log.Fatal(err) } if _, err := i.Eval(`i := interp.New(interp.Options{})`); err != nil { log.Fatal(err) } if _, err := i.Eval(`i.Eval("println(42)")`); err != nil { log.Fatal(err) } } yaegi-0.16.1/_test/init0.go000066400000000000000000000003411460330105400153570ustar00rootroot00000000000000package main func init() { println("Hello from init 1") } func init() { println("Hello from init 2") } func main() { println("Hello from main") } // Output: // Hello from init 1 // Hello from init 2 // Hello from main yaegi-0.16.1/_test/init1.go000066400000000000000000000001721460330105400153620ustar00rootroot00000000000000package main func init() { println("here") } func main() { init() } // Error: // _test/init1.go:8:2: undefined: init yaegi-0.16.1/_test/interface0.go000066400000000000000000000003451460330105400163600ustar00rootroot00000000000000package main type sample struct { count int } func run(inf interface{}, name string) { x := inf.(sample) println(x.count, name) } func main() { a := sample{2} println(a.count) run(a, "truc") } // Output: // 2 // 2 truc yaegi-0.16.1/_test/interface1.go000066400000000000000000000005351460330105400163620ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } func (b *Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") foo.Hello() } func main() { fmt.Println("in") boo := &Boo{"foo"} inCall(boo) } // Output: // in // inCall // Hello &{foo} // foo yaegi-0.16.1/_test/interface10.go000066400000000000000000000001621460330105400164360ustar00rootroot00000000000000package main type Edge interface { ReverseEdge() Edge } func main() { println("hello") } // Output: // hello yaegi-0.16.1/_test/interface11.go000066400000000000000000000005601460330105400164410ustar00rootroot00000000000000package main import "fmt" type Error interface { error Code() string } type MyError Error type T struct { Name string } func (t *T) Error() string { return "err: " + t.Name } func (t *T) Code() string { return "code: " + t.Name } func newT(s string) MyError { return &T{s} } func main() { t := newT("foo") fmt.Println(t.Code()) } // Output: // code: foo yaegi-0.16.1/_test/interface12.go000066400000000000000000000002601460330105400164370ustar00rootroot00000000000000package main type I1 interface { Truc() } type T1 struct{} func (T1) Truc() { println("in T1 truc") } var x I1 = T1{} func main() { x.Truc() } // Output: // in T1 truc yaegi-0.16.1/_test/interface13.go000066400000000000000000000004301460330105400164370ustar00rootroot00000000000000package main import ( "fmt" ) type X struct{} func (X) Foo() int { return 1 } func (X) Bar() int { return 2 } type Foo interface { Foo() int } type Bar interface { Bar() int } func main() { var x X var i Foo = x j := i.(Bar) fmt.Println(j.Bar()) } // Output: // 2 yaegi-0.16.1/_test/interface14.go000066400000000000000000000003001460330105400164340ustar00rootroot00000000000000package main type T struct{} func (t *T) Error() string { return "T: error" } var invalidT = &T{} func main() { var err error if err != invalidT { println("ok") } } // Output: // ok yaegi-0.16.1/_test/interface15.go000066400000000000000000000004711460330105400164460ustar00rootroot00000000000000package main type Fooer interface { Foo() string } type Barer interface { //fmt.Stringer Fooer Bar() } type T struct{} func (t *T) Foo() string { return "T: foo" } func (*T) Bar() { println("in bar") } var t = &T{} func main() { var f Barer if f != t { println("ok") } } // Output: // ok yaegi-0.16.1/_test/interface16.go000066400000000000000000000004341460330105400164460ustar00rootroot00000000000000package main import "fmt" type Barer interface { fmt.Stringer Bar() } type T struct{} func (*T) String() string { return "T: nothing" } func (*T) Bar() { println("in bar") } var t = &T{} func main() { var f Barer if f != t { println("ok") } } // Output: // ok yaegi-0.16.1/_test/interface17.go000066400000000000000000000002761460330105400164530ustar00rootroot00000000000000package main type T struct{} func (t T) Error() string { return "T: error" } var invalidT = T{} func main() { var err error if err != invalidT { println("ok") } } // Output: // ok yaegi-0.16.1/_test/interface18.go000066400000000000000000000003561460330105400164530ustar00rootroot00000000000000package main type T struct{} func (t *T) Error() string { return "T: error" } func (*T) Foo() { println("foo") } var invalidT = &T{} func main() { var err error if err != invalidT { println("ok") } } // Output: // ok yaegi-0.16.1/_test/interface19.go000066400000000000000000000001671460330105400164540ustar00rootroot00000000000000package main import "fmt" var I interface{} func main() { fmt.Printf("%T %v\n", I, I) } // Output: // yaegi-0.16.1/_test/interface2.go000066400000000000000000000007551460330105400163670ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo: a.Hello() default: fmt.Println("a:", a) } } func main() { boo := Boo{"foo"} inCall(boo) inCall(Bar{}) } // Output: // inCall // Hello {foo} // foo // inCall // a: {} yaegi-0.16.1/_test/interface20.go000066400000000000000000000001611460330105400164360ustar00rootroot00000000000000package main import "fmt" func main() { var a interface{} a = string("A") fmt.Println(a) } // Output: // A yaegi-0.16.1/_test/interface21.go000066400000000000000000000001671460330105400164450ustar00rootroot00000000000000package main import "fmt" func main() { s := make([]interface{}, 1) s[0] = 1 fmt.Println(s[0]) } // Output: // 1 yaegi-0.16.1/_test/interface22.go000066400000000000000000000001771460330105400164470ustar00rootroot00000000000000package main import "fmt" func main() { s := make([]interface{}, 0) s = append(s, 1) fmt.Println(s[0]) } // Output: // 1 yaegi-0.16.1/_test/interface23.go000066400000000000000000000002131460330105400164370ustar00rootroot00000000000000package main import "fmt" func main() { m := make(map[string]interface{}) m["A"] = string("A") fmt.Println(m["A"]) } // Output: // A yaegi-0.16.1/_test/interface24.go000066400000000000000000000001711460330105400164430ustar00rootroot00000000000000package main import "fmt" func main() { m := make(map[string]interface{}) fmt.Println(m["B"]) } // Output: // yaegi-0.16.1/_test/interface25.go000066400000000000000000000002271460330105400164460ustar00rootroot00000000000000package main import "fmt" func main() { m := make(map[string]interface{}) m["A"] = 1 for _, v := range m { fmt.Println(v) } } // Output: // 1 yaegi-0.16.1/_test/interface26.go000066400000000000000000000002271460330105400164470ustar00rootroot00000000000000package main import "fmt" func main() { s := make([]interface{}, 0) s = append(s, 1) for _, v := range s { fmt.Println(v) } } // Output: // 1 yaegi-0.16.1/_test/interface27.go000066400000000000000000000001751460330105400164520ustar00rootroot00000000000000package main import "fmt" var errs = map[int]error{0: nil} func main() { fmt.Println(errs) } // Output: // map[0:] yaegi-0.16.1/_test/interface28.go000066400000000000000000000001571460330105400164530ustar00rootroot00000000000000package main import "fmt" var errs = []error{nil} func main() { fmt.Println(errs) } // Output: // [] yaegi-0.16.1/_test/interface29.go000066400000000000000000000001301460330105400164430ustar00rootroot00000000000000package main func main() { var a interface{} println(a == nil) } // Output: // true yaegi-0.16.1/_test/interface3.go000066400000000000000000000005011460330105400163550ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") foo.Hello() } func main() { boo := Boo{"foo"} inCall(boo) } // Output: // inCall // Hello {foo} // foo yaegi-0.16.1/_test/interface30.go000066400000000000000000000001311460330105400164340ustar00rootroot00000000000000package main func main() { var a interface{} println(a != nil) } // Output: // false yaegi-0.16.1/_test/interface31.go000066400000000000000000000001721460330105400164420ustar00rootroot00000000000000package main import "fmt" func main() { s := []interface{}{"test", 2} fmt.Println(s[0], s[1]) } // Output: // test 2 yaegi-0.16.1/_test/interface32.go000066400000000000000000000001731460330105400164440ustar00rootroot00000000000000package main import "fmt" func main() { s := [2]interface{}{"test", 2} fmt.Println(s[0], s[1]) } // Output: // test 2 yaegi-0.16.1/_test/interface33.go000066400000000000000000000002101460330105400164350ustar00rootroot00000000000000package main import "fmt" func main() { var a = map[string]interface{}{"test": "test"} fmt.Println(a["test"]) } // Output: // test yaegi-0.16.1/_test/interface34.go000066400000000000000000000002011460330105400164360ustar00rootroot00000000000000package main import "fmt" func main() { s := [2]interface{}{1: "test", 0: 2} fmt.Println(s[0], s[1]) } // Output: // 2 test yaegi-0.16.1/_test/interface35.go000066400000000000000000000002041460330105400164420ustar00rootroot00000000000000package main import "fmt" type T struct { I interface{} } func main() { t := T{"test"} fmt.Println(t) } // Output: // {test} yaegi-0.16.1/_test/interface36.go000066400000000000000000000005771460330105400164600ustar00rootroot00000000000000package main import "fmt" var ( t *S _ I = t _ J = t ) type S struct { Name string } func (s *S) F() int { return len(s.Name) } func (s *S) G() int { return s.F() } func (s *S) Ri() I { return s } func (s *S) Rj() J { return s } type J interface { I G() int Rj() J } type I interface { F() int Ri() I } func main() { var j J fmt.Println(j) } // Output: // yaegi-0.16.1/_test/interface37.go000066400000000000000000000004111460330105400164440ustar00rootroot00000000000000package main type I interface { A() string B() string } type s struct{} func NewS() (I, error) { return &s{}, nil } func (c *s) A() string { return "a" } func (c *s) B() string { return "b" } func main() { s, _ := NewS() println(s.A()) } // Output: // a yaegi-0.16.1/_test/interface38.go000066400000000000000000000003411460330105400164470ustar00rootroot00000000000000package main import "fmt" type foo struct { bar string } func (f foo) String() string { return "Hello from " + f.bar } func main() { var f fmt.Stringer = foo{bar: "bar"} fmt.Println(f) } // Output: // Hello from bar yaegi-0.16.1/_test/interface39.go000066400000000000000000000003431460330105400164520ustar00rootroot00000000000000package main import "fmt" type foo struct { bar string } func (f *foo) String() string { return "Hello from " + f.bar } func main() { var f fmt.Stringer = &foo{bar: "bar"} fmt.Println(f) } // Output: // Hello from bar yaegi-0.16.1/_test/interface4.go000066400000000000000000000005401460330105400163610ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } type Bir struct { Boo } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") foo.Hello() } func main() { bir := Bir{Boo{"foo"}} inCall(bir) } // Output: // inCall // Hello {foo} // foo yaegi-0.16.1/_test/interface40.go000066400000000000000000000004001460330105400164340ustar00rootroot00000000000000package main import "fmt" type foo struct { bar string } func (f foo) String() string { return "Hello from " + f.bar } func Foo(s string) fmt.Stringer { return foo{s} } func main() { f := Foo("bar") fmt.Println(f) } // Output: // Hello from bar yaegi-0.16.1/_test/interface41.go000066400000000000000000000004021460330105400164370ustar00rootroot00000000000000package main import "fmt" type foo struct { bar string } func (f *foo) String() string { return "Hello from " + f.bar } func Foo(s string) fmt.Stringer { return &foo{s} } func main() { f := Foo("bar") fmt.Println(f) } // Output: // Hello from bar yaegi-0.16.1/_test/interface42.go000066400000000000000000000001431460330105400164420ustar00rootroot00000000000000package main import "fmt" func main() { v := interface{}(0) fmt.Println(v) } // Output: // 0 yaegi-0.16.1/_test/interface43.go000066400000000000000000000001511460330105400164420ustar00rootroot00000000000000package main import "fmt" func main() { v := interface{}(nil) fmt.Println(v) } // Output: // yaegi-0.16.1/_test/interface44.go000066400000000000000000000002541460330105400164470ustar00rootroot00000000000000package main type S struct { a int } func main() { var i interface{} = S{a: 1} s, ok := i.(S) if !ok { println("bad") return } println(s.a) } // Output: // 1 yaegi-0.16.1/_test/interface45.go000066400000000000000000000002121460330105400164420ustar00rootroot00000000000000package main import "fmt" func main() { var i interface{} = 1 var s struct{} s, _ = i.(struct{}) fmt.Println(s) } // Output: // {} yaegi-0.16.1/_test/interface46.go000066400000000000000000000005131460330105400164470ustar00rootroot00000000000000package main import "fmt" type I interface { Foo() string } type Printer struct { i I } func New(i I) *Printer { return &Printer{ i: i, } } func (p *Printer) Print() { fmt.Println(p.i.Foo()) } type T struct{} func (t *T) Foo() string { return "test" } func main() { g := New(&T{}) g.Print() } // Output: // test yaegi-0.16.1/_test/interface47.go000066400000000000000000000005641460330105400164560ustar00rootroot00000000000000package main type Doer interface { Do() error } type T struct { Name string } func (t *T) Do() error { println("in do"); return nil } func f() (Doer, error) { return &T{"truc"}, nil } type Ev struct { doer func() (Doer, error) } func (e *Ev) do() { d, _ := e.doer() d.Do() } func main() { e := &Ev{f} println(e != nil) e.do() } // Output: // true // in do yaegi-0.16.1/_test/interface48.go000066400000000000000000000002351460330105400164520ustar00rootroot00000000000000package main import "fmt" type I1 interface{ A } type A = I2 type I2 interface{ F() I1 } func main() { var i I1 fmt.Println(i) } // Output: // yaegi-0.16.1/_test/interface49.go000066400000000000000000000012741460330105400164570ustar00rootroot00000000000000package main type Descriptor interface { ParentFile() FileDescriptor } type FileDescriptor interface { Enums() EnumDescriptors Services() ServiceDescriptors } type EnumDescriptors interface { Get(i int) EnumDescriptor } type EnumDescriptor interface { Values() EnumValueDescriptors } type EnumValueDescriptors interface { Get(i int) EnumValueDescriptor } type EnumValueDescriptor interface { Descriptor } type ServiceDescriptors interface { Get(i int) ServiceDescriptor } type ServiceDescriptor interface { Descriptor isServiceDescriptor } type isServiceDescriptor interface{ ProtoType(ServiceDescriptor) } func main() { var d Descriptor println(d == nil) } // Output: // true yaegi-0.16.1/_test/interface5.go000066400000000000000000000003531460330105400163640ustar00rootroot00000000000000package main import "fmt" type Myint int func (i Myint) Double() { fmt.Println("Myint:", i, i) } type Boo interface { Double() } func f(boo Boo) { boo.Double() } func main() { var i Myint = 3 f(i) } // Output: // Myint: 3 3 yaegi-0.16.1/_test/interface50.go000066400000000000000000000002151460330105400164410ustar00rootroot00000000000000package main func main() { a := true var b interface{} = 5 println(b.(int)) b = a == true println(b.(bool)) } // Output: // 5 // true yaegi-0.16.1/_test/interface51.go000066400000000000000000000005001460330105400164370ustar00rootroot00000000000000package main type Error interface { error Message() string } type T struct { Msg string } func (t *T) Error() string { return t.Msg } func (t *T) Message() string { return "message:" + t.Msg } func newError() Error { return &T{"test"} } func main() { e := newError() println(e.Error()) } // Output: // test yaegi-0.16.1/_test/interface52.go000066400000000000000000000002721460330105400164460ustar00rootroot00000000000000package main import "testing" func main() { t := testing.T{} var tb testing.TB tb = &t if tb.TempDir() == "" { println("FAIL") return } println("PASS") } // Output: // PASS yaegi-0.16.1/_test/interface6.go000066400000000000000000000004031460330105400163610ustar00rootroot00000000000000package main import "fmt" type Myint int func (i Myint) Double() { fmt.Println("Myint:", i, i) } type Boo interface { Double() } func f(boo Boo) { boo.Double() } func g(i int) Boo { return Myint(i) } func main() { f(g(4)) } // Output: // Myint: 4 4 yaegi-0.16.1/_test/interface7.go000066400000000000000000000003641460330105400163700ustar00rootroot00000000000000package main import "fmt" type T int func (t T) Error() string { return fmt.Sprintf("This is an error from T: %d", t) } func f(t T) error { return t } func main() { x := T(1) fmt.Println(f(x)) } // Output: // This is an error from T: 1 yaegi-0.16.1/_test/interface8.go000066400000000000000000000004031460330105400163630ustar00rootroot00000000000000package main import ( "fmt" ) var _ = (HelloInterface)((*Hello)(nil)) type HelloInterface interface { Hi() string } type Hello struct{} func (h *Hello) Hi() string { return "hi" } func main() { h := &Hello{} fmt.Println(h.Hi()) } // Output: // hi yaegi-0.16.1/_test/interface9.go000066400000000000000000000002731460330105400163710ustar00rootroot00000000000000package main import "fmt" type Int int func (I Int) String() string { return "foo" } func main() { var i Int var st fmt.Stringer = i fmt.Println(st.String()) } // Output: // foo yaegi-0.16.1/_test/interp.gi000066400000000000000000000002351460330105400156310ustar00rootroot00000000000000package main import ( "github.com/traefik/yaegi/interp" ) func main() { i := interp.New(interp.Opt{}) i.Eval(`println("Hello")`) } // Output: // Hello yaegi-0.16.1/_test/interp2.gi000066400000000000000000000004521460330105400157140ustar00rootroot00000000000000package main import ( "github.com/traefik/yaegi/interp" ) func main() { i := interp.New(interp.Opt{}) i.Use(interp.ExportValue, interp.ExportType) i.Eval(`import "github.com/traefik/yaegi/interp"`) i.Eval(`i := interp.New(interp.Opt{})`) i.Eval(`i.Eval("println(42)")`) } // Output: // 42 yaegi-0.16.1/_test/io0.go000066400000000000000000000002771460330105400150330ustar00rootroot00000000000000package main import ( "crypto/rand" "fmt" "io" ) func main() { var buf [16]byte fmt.Println(buf) io.ReadFull(rand.Reader, buf[:]) //io.ReadFull(rand.Reader, buf) fmt.Println(buf) } yaegi-0.16.1/_test/io1.go000066400000000000000000000002561460330105400150310ustar00rootroot00000000000000package main import ( "encoding/base64" "fmt" ) func main() { var buf [4]byte s := base64.RawStdEncoding.EncodeToString(buf[:]) fmt.Println(s) } // Output: // AAAAAA yaegi-0.16.1/_test/io2.go000066400000000000000000000005371460330105400150340ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "strings" ) func main() { r := strings.NewReader("Go is a general-purpose language designed with systems programming in mind.") b, err := io.ReadAll(r) if err != nil { log.Fatal(err) } fmt.Printf("%s", b) } // Output: // Go is a general-purpose language designed with systems programming in mind. yaegi-0.16.1/_test/iota.go000066400000000000000000000003141460330105400152700ustar00rootroot00000000000000package main import "fmt" const ( Foo = iota Bar Baz ) const ( Asm = iota C Java Go ) func main() { fmt.Println(Foo, Bar, Baz) fmt.Println(Asm, C, Java, Go) } // Output: // 0 1 2 // 0 1 2 3 yaegi-0.16.1/_test/iota0.go000066400000000000000000000003271460330105400153540ustar00rootroot00000000000000package main import "fmt" func main() { const ( Foo = iota Bar Baz ) const ( Asm = iota C Java Go ) fmt.Println(Foo, Bar, Baz) fmt.Println(Asm, C, Java, Go) } // Output: // 0 1 2 // 0 1 2 3 yaegi-0.16.1/_test/ipp_as_key.go000066400000000000000000000004271460330105400164640ustar00rootroot00000000000000package main import ( "guthib.com/toto" // pkg name is actually titi "guthib.com/tata" // pkg name is actually tutu ) func main() { println("Hello", titi.Quux()) println("Hello", tutu.Quux()) } // GOPATH:testdata/redeclaration-global7 // Output: // Hello bar // Hello baz yaegi-0.16.1/_test/issue-1007.go000066400000000000000000000006301460330105400160520ustar00rootroot00000000000000package main type TypeA struct { B TypeB } type TypeB struct { C1 *TypeC C2 *TypeC } type TypeC struct { Val string D *TypeD D2 *TypeD } type TypeD struct { Name string } func build() *TypeA { return &TypeA{ B: TypeB{ C2: &TypeC{Val: "22"}, }, } } func Bar(s string) string { a := build() return s + "-" + a.B.C2.Val } func main() { println(Bar("test")) } // Output: // test-22 yaegi-0.16.1/_test/issue-1010.go000066400000000000000000000005611460330105400160470ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" ) type MyJsonMarshaler struct{ n int } func (m MyJsonMarshaler) MarshalJSON() ([]byte, error) { return []byte(fmt.Sprintf(`{"num": %d}`, m.n)), nil } func main() { ch := make(chan json.Marshaler, 1) ch <- MyJsonMarshaler{2} m, err := json.Marshal(<-ch) fmt.Println(string(m), err) } // Output: // {"num":2} yaegi-0.16.1/_test/issue-1022.go000066400000000000000000000002461460330105400160520ustar00rootroot00000000000000package main import "fmt" func main() { defer func() { r := recover() if r != nil { fmt.Println(r) } }() panic("Ho Ho Ho!") } // Output: // Ho Ho Ho! yaegi-0.16.1/_test/issue-1052.go000066400000000000000000000002731460330105400160550ustar00rootroot00000000000000package main import "fmt" func main() { a, b := 1, 1 for i := 0; i < 10; i++ { fmt.Println(a) a, b = b, a+b } } // Output: // 1 // 1 // 2 // 3 // 5 // 8 // 13 // 21 // 34 // 55 yaegi-0.16.1/_test/issue-1065.go000066400000000000000000000004401460330105400160550ustar00rootroot00000000000000package main import "fmt" type AST struct { Num int Children []AST } func newAST(num int, root AST, children ...AST) AST { return AST{num, append([]AST{root}, children...)} } func main() { ast := newAST(1, AST{}, AST{}) fmt.Println(ast) } // Output: // {1 [{0 []} {0 []}]} yaegi-0.16.1/_test/issue-1068.go000066400000000000000000000002621460330105400160620ustar00rootroot00000000000000package main type I interface { Hello() } type T struct{} func (t T) Hello() { println("hello") } type I2 I func main() { var i I2 = T{} i.Hello() } // Output: // hello yaegi-0.16.1/_test/issue-1088.go000066400000000000000000000004231460330105400160630ustar00rootroot00000000000000package main import "fmt" func main() { for i, ch := range "日本語" { fmt.Printf("%#U starts at byte position %d\n", ch, i) } } // Output: // U+65E5 '日' starts at byte position 0 // U+672C '本' starts at byte position 3 // U+8A9E '語' starts at byte position 6 yaegi-0.16.1/_test/issue-1089.go000066400000000000000000000002311460330105400160610ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { fmt.Println(`"` + time.RFC3339Nano + `"`) } // Output: // "2006-01-02T15:04:05.999999999Z07:00" yaegi-0.16.1/_test/issue-1093.go000066400000000000000000000002451460330105400160610ustar00rootroot00000000000000package main func b() string { return "b" } func main() { var x int x = "a" + b() } // Error: // 9:6: cannot use type untyped string as type int in assignment yaegi-0.16.1/_test/issue-1094.go000066400000000000000000000002211460330105400160540ustar00rootroot00000000000000package main import "fmt" func main() { var x interface{} x = "a" + fmt.Sprintf("b") fmt.Printf("%v %T\n", x, x) } // Output: // ab string yaegi-0.16.1/_test/issue-1101.go000066400000000000000000000002641460330105400160500ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) func main() { method := "POST" switch method { case http.MethodPost: fmt.Println("It's a post!") } } // Output: // It's a post! yaegi-0.16.1/_test/issue-1115.go000066400000000000000000000004121460330105400160500ustar00rootroot00000000000000package main import "fmt" func main() { outer: for y := 0; y < 10; y++ { for x := 0; x < 10; x++ { if x == 5 && y == 5 { break outer } } fmt.Println(y) } fmt.Println("Yay! I finished!") } // Output: // 0 // 1 // 2 // 3 // 4 // Yay! I finished! yaegi-0.16.1/_test/issue-1126.go000066400000000000000000000004211460330105400160520ustar00rootroot00000000000000package main import ( "errors" "fmt" "strings" ) func main() { err := errors.New("hello there") switch true { case err == nil: break case strings.Contains(err.Error(), "hello"): fmt.Println("True!") default: fmt.Println("False!") } } // Output: // True! yaegi-0.16.1/_test/issue-1128.go000066400000000000000000000001641460330105400160600ustar00rootroot00000000000000package main import "net" func main() { c := append(net.Buffers{}, []byte{}) println(len(c)) } // Output: // 1 yaegi-0.16.1/_test/issue-1134.go000066400000000000000000000003161460330105400160540ustar00rootroot00000000000000package main type I interface { Hello() } type T struct { Name string Child []*T } func (t *T) Hello() { println("Hello", t.Name) } func main() { var i I = new(T) i.Hello() } // Output: // Hello yaegi-0.16.1/_test/issue-1136.go000066400000000000000000000004251460330105400160570ustar00rootroot00000000000000package main import ( "fmt" "io" ) type T struct { r io.Reader } func (t *T) Read(p []byte) (n int, err error) { n, err = t.r.Read(p); return } func main() { x := io.LimitedReader{} y := io.Reader(&x) y = &T{y} fmt.Println(y.Read([]byte(""))) } // Output: // 0 EOF yaegi-0.16.1/_test/issue-1145.go000066400000000000000000000002151460330105400160540ustar00rootroot00000000000000package main import "sync" type F func() func main() { var wg sync.WaitGroup var f F = wg.Done println(f != nil) } // Output: // true yaegi-0.16.1/_test/issue-1156.go000066400000000000000000000004741460330105400160650ustar00rootroot00000000000000package main type myInterface interface { myFunc() string } type V struct{} func (v *V) myFunc() string { return "hello" } type U struct { v myInterface } func (u *U) myFunc() string { return u.v.myFunc() } func main() { x := V{} y := myInterface(&x) y = &U{y} println(y.myFunc()) } // Output: // hello yaegi-0.16.1/_test/issue-1163.go000066400000000000000000000012231460330105400160540ustar00rootroot00000000000000package main import "fmt" type WidgetEvent struct { Nothing string } type WidgetControl interface { HandleEvent(e *WidgetEvent) } type Button struct{} func (b *Button) HandleEvent(e *WidgetEvent) { } type WindowEvent struct { Something int } type Window struct { Widget WidgetControl } func (w *Window) HandleEvent(e *WindowEvent) { } func main() { window := &Window{ Widget: &Button{}, } windowevent := &WindowEvent{} // The next line uses the signature from the wrong method, resulting in an error. // Renaming one of the clashing method names fixes the problem. window.HandleEvent(windowevent) fmt.Println("OK!") } // Output: // OK! yaegi-0.16.1/_test/issue-1166.go000066400000000000000000000004421460330105400160610ustar00rootroot00000000000000package main import ( "fmt" "io" ) type T []byte func (t *T) Write(p []byte) (n int, err error) { *t = append(*t, p...); return len(p), nil } func foo(w io.Writer) { a := w.(*T) fmt.Fprint(a, "test") fmt.Printf("%s\n", *a) } func main() { x := T{} foo(&x) } // Output: // test yaegi-0.16.1/_test/issue-1167.go000066400000000000000000000004231460330105400160610ustar00rootroot00000000000000package main import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" ) func main() { key, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader) if err != nil { panic(err) } pub := key.Public().(*ecdsa.PublicKey) println(pub.Params().Name) } // Output: // P-256 yaegi-0.16.1/_test/issue-1173.go000066400000000000000000000001431460330105400160550ustar00rootroot00000000000000package main var real = func() { println("Hello") } func main() { real() } // Output: // Hello yaegi-0.16.1/_test/issue-1175.go000066400000000000000000000002531460330105400160610ustar00rootroot00000000000000package main type Level int8 const ( a Level = -1 b Level = 5 d = b - a + 1 ) type counters [d]int func main() { println(len(counters{})) } // Output: // 7 yaegi-0.16.1/_test/issue-1177.go000066400000000000000000000002071460330105400160620ustar00rootroot00000000000000package main type counters [3][16]int func main() { cs := &counters{} p := &cs[0][1] *p = 2 println(cs[0][1]) } // Output: // 2 yaegi-0.16.1/_test/issue-1179.go000066400000000000000000000004141460330105400160640ustar00rootroot00000000000000package main type I interface { F() } type T struct { Name string } func (t *T) F() { println("in F", t.Name) } func NewI(s string) I { return newT(s) } func newT(s string) *T { return &T{s} } func main() { i := NewI("test") i.F() } // Output: // in F test yaegi-0.16.1/_test/issue-1181.go000066400000000000000000000001351460330105400160550ustar00rootroot00000000000000package main func main() { a, b := 1, 2 a, b = b, -a println(a, b) } // Output: // 2 -1 yaegi-0.16.1/_test/issue-1185.go000066400000000000000000000003411460330105400160600ustar00rootroot00000000000000package main import "io" type B []byte func (b B) Write(p []byte) (n int, err error) { b = p return len(p), nil } func main() { b := B{} a := make([]io.Writer, 0) a = append(a, b) println(len(a)) } // Output: // 1 yaegi-0.16.1/_test/issue-1187.go000066400000000000000000000012141460330105400160620ustar00rootroot00000000000000package main import ( "io" "os" ) type sink interface { io.Writer io.Closer } func newSink() sink { // return os.Stdout // Stdout is special in yaegi tests file, err := os.CreateTemp("", "yaegi-test.*") if err != nil { panic(err) } return file } func main() { s := newSink() n, err := s.Write([]byte("Hello\n")) if err != nil { panic(err) } var writer io.Writer = s m, err := writer.Write([]byte("Hello\n")) if err != nil { panic(err) } var closer io.Closer = s err = closer.Close() if err != nil { panic(err) } err = os.Remove(s.(*os.File).Name()) if err != nil { panic(err) } println(m, n) } // Output: // 6 6 yaegi-0.16.1/_test/issue-1189.go000066400000000000000000000005651460330105400160740ustar00rootroot00000000000000package main type I interface { Foo() int } type S1 struct { i int } func (s S1) Foo() int { return s.i } type S2 struct{} func (s *S2) Foo() int { return 42 } func main() { Is := map[string]I{ "foo": S1{21}, "bar": &S2{}, } n := 0 for _, s := range Is { n += s.Foo() } bar := "bar" println(n, Is["foo"].Foo(), Is[bar].Foo()) } // Output: // 63 21 42 yaegi-0.16.1/_test/issue-1202.go000066400000000000000000000012471460330105400160540ustar00rootroot00000000000000package main import "fmt" type foobar struct { callback func(string) func() } func cb(text string) func() { return func() { fmt.Println(text) } } func main() { // These ways of invoking it all work... cb("Hi from inline callback!")() asVarTest1 := cb("Hi from asVarTest1 callback!") asVarTest1() asVarTest2 := cb asVarTest2("Hi from asVarTest2 callback!")() // But inside a struct panics in yaegi... asStructField := &foobar{callback: cb} asStructField.callback("Hi from struct field callback!")() // <--- panics here } // Output: // Hi from inline callback! // Hi from asVarTest1 callback! // Hi from asVarTest2 callback! // Hi from struct field callback! yaegi-0.16.1/_test/issue-1205.go000066400000000000000000000004541460330105400160560ustar00rootroot00000000000000package main type Option interface { apply() } func f(opts ...Option) { for _, opt := range opts { opt.apply() } } type T struct{} func (t *T) apply() { println("in apply") } func main() { opt := []Option{&T{}} f(opt[0]) // works f(opt...) // fails } // Output: // in apply // in apply yaegi-0.16.1/_test/issue-1208.go000066400000000000000000000004651460330105400160630ustar00rootroot00000000000000package main type Enabler interface { Enabled() bool } type Logger struct { core Enabler } func (log *Logger) GetCore() Enabler { return log.core } type T struct{} func (t *T) Enabled() bool { return true } func main() { base := &Logger{&T{}} println(base.GetCore().Enabled()) } // Output: // true yaegi-0.16.1/_test/issue-1260.go000066400000000000000000000030511460330105400160530ustar00rootroot00000000000000package main import ( "fmt" "io" "os" ) type WriteSyncer interface { io.Writer Sync() error } type Sink interface { WriteSyncer io.Closer } func newFileSink(path string) (Sink, error) { return os.OpenFile(path, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0666) } type Sink1 struct{ name string } func (s Sink1) Write(b []byte) (int, error) { println("in Write"); return 0, nil } func (s Sink1) Sync() error { println("in Sync"); return nil } func (s Sink1) Close() error { println("in Close", s.name); return nil } func newS1(name string) Sink { return Sink1{name} } func newS1p(name string) Sink { return &Sink1{name} } type Sink2 struct{ name string } func (s *Sink2) Write(b []byte) (int, error) { println("in Write"); return 0, nil } func (s *Sink2) Sync() error { println("in Sync"); return nil } func (s *Sink2) Close() error { println("in Close", s.name); return nil } func newS2(name string) Sink { return Sink1{name} } func main() { tmpfile, err := os.CreateTemp("", "xxx") if err != nil { panic(err) } defer os.Remove(tmpfile.Name()) closers := []io.Closer{} sink, err := newFileSink(tmpfile.Name()) if err != nil { panic(err) } closers = append(closers, sink) s1p := newS1p("ptr") s1 := newS1("struct") s2 := newS2("ptr2") closers = append(closers, s1p, s1, s2) for _, closer := range closers { fmt.Println(closer.Close()) } } // Output: // // in Close ptr // // in Close struct // // in Close ptr2 // yaegi-0.16.1/_test/issue-1276.go000066400000000000000000000004761460330105400160720ustar00rootroot00000000000000package main import ( "flag" ) type customFlag struct{} func (cf customFlag) String() string { return "custom flag" } func (cf customFlag) Set(string) error { return nil } func main() { flag.Var(customFlag{}, "cf", "custom flag") flag.Parse() println("Hello, playground") } // Output: // Hello, playground yaegi-0.16.1/_test/issue-1280.go000066400000000000000000000005001460330105400160510ustar00rootroot00000000000000package main import ( "io" "log" "os" ) type DBReader interface { io.ReadCloser io.ReaderAt } type DB struct { f DBReader } func main() { f, err := os.Open("/dev/null") if err != nil { log.Fatal(err) } d := &DB{f} data := make([]byte, 1) _, _ = d.f.ReadAt(data, 0) println("bye") } // Output: // bye yaegi-0.16.1/_test/issue-1285.go000066400000000000000000000006111460330105400160610ustar00rootroot00000000000000package main type ( T1 struct{ Path [12]int8 } T2 struct{ Path *[12]int8 } ) var ( t11 = &T1{} t21 = &T2{} ) func main() { b := [12]byte{} t12 := &T1{} t22 := &T2{} b11 := (*[len(t11.Path)]byte)(&b) b12 := (*[len(t12.Path)]byte)(&b) b21 := (*[len(t21.Path)]byte)(&b) b22 := (*[len(t22.Path)]byte)(&b) println(len(b11), len(b12), len(b21), len(b22)) } // Output: // 12 12 12 12 yaegi-0.16.1/_test/issue-1288.go000066400000000000000000000001201460330105400160570ustar00rootroot00000000000000package main func main() { println("Hi") goto done done: } // Output: // Hi yaegi-0.16.1/_test/issue-1300.go000066400000000000000000000003331460330105400160460ustar00rootroot00000000000000package main const buflen = 512 type T struct { buf []byte } func f(t *T) { *t = T{buf: make([]byte, 0, buflen)} } func main() { s := T{} println(cap(s.buf)) f(&s) println(cap(s.buf)) } // Output: // 0 // 512 yaegi-0.16.1/_test/issue-1304.go000066400000000000000000000003511460330105400160520ustar00rootroot00000000000000package main type Node struct { Name string Alias *Node Child []*Node } func main() { n := &Node{Name: "parent"} n.Child = append(n.Child, &Node{Name: "child"}) println(n.Name, n.Child[0].Name) } // Output: // parent child yaegi-0.16.1/_test/issue-1306.go000066400000000000000000000002711460330105400160550ustar00rootroot00000000000000package main import "fmt" func check() (result bool, err error) { return true, nil } func main() { result, error := check() fmt.Println(result, error) } // Output: // true yaegi-0.16.1/_test/issue-1308.go000066400000000000000000000004021460330105400160530ustar00rootroot00000000000000package main import "fmt" type test struct { v interface{} s string } type T struct { name string } func main() { t := []test{ { v: []interface{}{ T{"hello"}, }, s: "world", }, } fmt.Println(t) } // Output: // [{[{hello}] world}] yaegi-0.16.1/_test/issue-1311.go000066400000000000000000000002671460330105400160560ustar00rootroot00000000000000package main type T struct { v interface{} } func f() (ret int64, err error) { ret += 2 return } func main() { t := &T{} t.v, _ = f() println(t.v.(int64)) } // Output: // 2 yaegi-0.16.1/_test/issue-1315.go000066400000000000000000000005061460330105400160560ustar00rootroot00000000000000package main type Intf interface { M() } type T struct { s string } func (t *T) M() { println("in M") } func f(i interface{}) { switch j := i.(type) { case Intf: j.M() default: println("default") } } func main() { var i Intf var k interface{} = 1 i = &T{"hello"} f(i) f(k) } // Output: // in M // default yaegi-0.16.1/_test/issue-1320.go000066400000000000000000000007151460330105400160540ustar00rootroot00000000000000package main type Pooler interface { Get() string } type baseClient struct { connPool Pooler } type connPool struct { name string } func (c *connPool) Get() string { return c.name } func newBaseClient(i int, p Pooler) *baseClient { return &baseClient{connPool: p} } func newConnPool() *connPool { return &connPool{name: "connPool"} } func main() { b := newBaseClient(0, newConnPool()) println(b.connPool.(*connPool).name) } // Output: // connPool yaegi-0.16.1/_test/issue-1326.go000066400000000000000000000007401460330105400160600ustar00rootroot00000000000000package main type Option interface { apply(*T) } type T struct { s string } type opt struct { name string } func (o *opt) apply(t *T) { println(o.name) } func BuildOptions() []Option { return []Option{ &opt{"opt1"}, &opt{"opt2"}, } } func NewT(name string, options ...Option) *T { t := &T{name} for _, opt := range options { opt.apply(t) } return t } func main() { t := NewT("hello", BuildOptions()...) println(t.s) } // Output: // opt1 // opt2 // hello yaegi-0.16.1/_test/issue-1328.go000066400000000000000000000003541460330105400160630ustar00rootroot00000000000000package main import ( "crypto/sha1" "encoding/hex" ) func main() { script := "hello" sumRaw := sha1.Sum([]byte(script)) sum := hex.EncodeToString(sumRaw[:]) println(sum) } // Output: // aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d yaegi-0.16.1/_test/issue-1330.go000066400000000000000000000010611460330105400160500ustar00rootroot00000000000000package main import ( "fmt" "io" "net" ) type wrappedConn struct { net.Conn } func main() { _, err := net.Listen("tcp", "127.0.0.1:49153") if err != nil { panic(err) } dialer := &net.Dialer{ LocalAddr: &net.TCPAddr{ IP: net.ParseIP("127.0.0.1"), Port: 0, }, } conn, err := dialer.Dial("tcp", "127.0.0.1:49153") if err != nil { panic(err) } defer conn.Close() t := &wrappedConn{conn} var w io.Writer = t if n, err := w.Write([]byte("hello")); err != nil { fmt.Println(err) } else { fmt.Println(n) } } // Output: // 5 yaegi-0.16.1/_test/issue-1332.go000066400000000000000000000003241460330105400160530ustar00rootroot00000000000000package main func run(fn func(name string)) { fn("test") } type T2 struct { name string } func (t *T2) f(s string) { println(s, t.name) } func main() { t2 := &T2{"foo"} run(t2.f) } // Output: // test foo yaegi-0.16.1/_test/issue-1333.go000066400000000000000000000010741460330105400160570ustar00rootroot00000000000000package main import ( "fmt" "io" "net/http" "net/http/httptest" ) func mock(name string) http.HandlerFunc { return func(rw http.ResponseWriter, req *http.Request) { fmt.Fprint(rw, "Hello ", name) } } func client(uri string) { resp, err := http.Get(uri) if err != nil { panic(err) } body, err := io.ReadAll(resp.Body) if err != nil { panic(err) } fmt.Println(string(body)) } func main() { mux := http.NewServeMux() server := httptest.NewServer(mux) defer server.Close() mux.Handle("/", mock("foo")) client(server.URL) } // Output: // Hello foo yaegi-0.16.1/_test/issue-1337.go000066400000000000000000000004261460330105400160630ustar00rootroot00000000000000package main import ( "io" "os" ) func f(i interface{}) { switch at := i.(type) { case int, int8: println("integer", at) case io.Reader: println("reader") } println("bye") } func main() { var fd *os.File var r io.Reader = fd f(r) } // Output: // reader // bye yaegi-0.16.1/_test/issue-1342.go000066400000000000000000000001701460330105400160530ustar00rootroot00000000000000package main import "fmt" func main() { var a interface{} a = "a" fmt.Println(a, a == "a") } // Output: // a true yaegi-0.16.1/_test/issue-1344.go000066400000000000000000000003171460330105400160600ustar00rootroot00000000000000package main import "fmt" func main() { var m = map[string]interface{}{"a": "a"} a, _ := m["a"] b, ok := a.(string) fmt.Println("a:", a, ", b:", b, ", ok:", ok) } // Output: // a: a , b: a , ok: true yaegi-0.16.1/_test/issue-1354.go000066400000000000000000000005001460330105400160530ustar00rootroot00000000000000package main func main() { println(test()) // Go prints true, Yaegi false } func test() bool { if true { goto label } goto label label: println("Go continues here") return true println("Yaegi goes straight to this return (this line is never printed)") return false } // Output: // Go continues here // true yaegi-0.16.1/_test/issue-1355.go000066400000000000000000000004051460330105400160600ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/p2" func f(i interface{}) { _, ok := i.(p2.I) println("ok:", ok) } func main() { var v *p2.T var i interface{} i = v _, ok := i.(p2.I) println("ok:", ok) f(v) } // Output: // ok: true // ok: true yaegi-0.16.1/_test/issue-1360.go000066400000000000000000000001521460330105400160530ustar00rootroot00000000000000package main import ( "fmt" . "net" ) func main() { v := IP{} fmt.Println(v) } // Output: // yaegi-0.16.1/_test/issue-1361.go000066400000000000000000000005301460330105400160540ustar00rootroot00000000000000package main import ( "fmt" "math" ) type obj struct { num float64 } type Fun func(o *obj) (r *obj, err error) func numFun(fn func(f float64) float64) Fun { return func(o *obj) (*obj, error) { return &obj{fn(o.num)}, nil } } func main() { f := numFun(math.Cos) r, err := f(&obj{}) fmt.Println(r, err) } // Output: // &{1} yaegi-0.16.1/_test/issue-1364.go000066400000000000000000000003001460330105400160520ustar00rootroot00000000000000package main import ( "fmt" "strconv" ) func main() { var value interface{} var err error value, err = strconv.ParseFloat("123", 64) fmt.Println(value, err) } // Output: // 123 yaegi-0.16.1/_test/issue-1365.go000066400000000000000000000003201460330105400160550ustar00rootroot00000000000000package main func genInt() (int, error) { return 3, nil } func getInt() (value int) { value, err := genInt() if err != nil { panic(err) } return } func main() { println(getInt()) } // Output: // 3 yaegi-0.16.1/_test/issue-1368.go000066400000000000000000000002541460330105400160660ustar00rootroot00000000000000package main const dollar byte = 36 func main() { var c byte = 36 switch true { case c == dollar: println("ok") default: println("not ok") } } // Output: // ok yaegi-0.16.1/_test/issue-1371.go000066400000000000000000000003371460330105400160620ustar00rootroot00000000000000package main import "fmt" type node struct { parent *node child []*node key string } func main() { root := &node{key: "root"} root.child = nil fmt.Println("root:", root) } // Output: // root: &{ [] root} yaegi-0.16.1/_test/issue-1373.go000066400000000000000000000002771460330105400160670ustar00rootroot00000000000000package main import ( "fmt" "go/ast" ) func NewBadExpr() ast.Expr { return &ast.BadExpr{} } func main() { fmt.Printf("%T\n", NewBadExpr().(*ast.BadExpr)) } // Output: // *ast.BadExpr yaegi-0.16.1/_test/issue-1375.go000066400000000000000000000007021460330105400160620ustar00rootroot00000000000000package main import "fmt" type Option func(*Struct) func WithOption(opt string) Option { return func(s *Struct) { s.opt = opt } } type Struct struct { opt string } func New(opts ...Option) *Struct { s := new(Struct) for _, opt := range opts { opt(s) } return s } func (s *Struct) ShowOption() { fmt.Println(s.opt) } func main() { opts := []Option{ WithOption("test"), } s := New(opts...) s.ShowOption() } // Output: // test yaegi-0.16.1/_test/issue-1378.go000066400000000000000000000003761460330105400160740ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { t, err := time.Parse(time.RFC3339, "2006-01-02T15:04:05Z") if err != nil { panic(err) } fn := func() error { _, err := t.GobEncode() return err } fmt.Println(fn()) } // Output: // yaegi-0.16.1/_test/issue-1381.go000066400000000000000000000024011460330105400160550ustar00rootroot00000000000000package main import ( "bytes" "fmt" ) func main() { var bufPtrOne *bytes.Buffer var bufPtrTwo *bytes.Buffer var bufPtrThree *bytes.Buffer var bufPtrFour *bytes.Buffer for i := 0; i < 2; i++ { bufOne := bytes.Buffer{} bufTwo := &bytes.Buffer{} var bufThree bytes.Buffer bufFour := new(bytes.Buffer) if bufPtrOne == nil { bufPtrOne = &bufOne } else if bufPtrOne == &bufOne { fmt.Println("bufOne was not properly redeclared") } else { fmt.Println("bufOne is properly redeclared") } if bufPtrTwo == nil { bufPtrTwo = bufTwo } else if bufPtrTwo == bufTwo { fmt.Println("bufTwo was not properly redeclared") } else { fmt.Println("bufTwo is properly redeclared") } if bufPtrThree == nil { bufPtrThree = &bufThree } else if bufPtrThree == &bufThree { fmt.Println("bufThree was not properly redeclared") } else { fmt.Println("bufThree is properly redeclared") } if bufPtrFour == nil { bufPtrFour = bufFour } else if bufPtrFour == bufFour { fmt.Println("bufFour was not properly redeclared") } else { fmt.Println("bufFour is properly redeclared") } } } // Output: // bufOne is properly redeclared // bufTwo is properly redeclared // bufThree is properly redeclared // bufFour is properly redeclared yaegi-0.16.1/_test/issue-1404.go000066400000000000000000000003171460330105400160550ustar00rootroot00000000000000package main type I interface { inI() } type T struct { name string } func (t *T) inI() {} func main() { var i I = &T{name: "foo"} if i, ok := i.(*T); ok { println(i.name) } } // Output: // foo yaegi-0.16.1/_test/issue-1408.go000066400000000000000000000002261460330105400160600ustar00rootroot00000000000000package main type ( Number = int32 Number2 = Number ) func f(n Number2) { println(n) } func main() { var n Number = 5 f(n) } // Output: // 5 yaegi-0.16.1/_test/issue-1411.go000066400000000000000000000003101460330105400160440ustar00rootroot00000000000000package main type Number int32 func (n Number) IsValid() bool { return true } type Number1 = Number type Number2 = Number1 func main() { a := Number2(5) println(a.IsValid()) } // Output: true yaegi-0.16.1/_test/issue-1416.go000066400000000000000000000003131460330105400160540ustar00rootroot00000000000000package main type Number int32 type Number1 = Number type Number2 = Number1 func (n Number2) IsValid() bool { return true } func main() { a := Number(5) println(a.IsValid()) } // Output: // true yaegi-0.16.1/_test/issue-1421.go000066400000000000000000000001371460330105400160540ustar00rootroot00000000000000package main type Number = int func main() { println(Number(1) < int(2)) } // Output: true yaegi-0.16.1/_test/issue-1425.go000066400000000000000000000021241460330105400160560ustar00rootroot00000000000000package main import ( "io" "log" "os" "strings" ) type WrappedReader struct { reader io.Reader } func (wr WrappedReader) Read(p []byte) (n int, err error) { return wr.reader.Read(p) } // Of course, this implementation is completely stupid because it does not write // to the intended writer, as any honest WriteTo implementation should. its // implemtion is just to make obvious the divergence of behaviour with yaegi. func (wr WrappedReader) WriteTo(w io.Writer) (n int64, err error) { // Ignore w, send to Stdout to prove whether this WriteTo is used. data, err := io.ReadAll(wr) if err != nil { return 0, err } nn, err := os.Stdout.Write(data) return int64(nn), err } func main() { f := strings.NewReader("hello world") wr := WrappedReader{reader: f} // behind the scenes, io.Copy is supposed to use wr.WriteTo if the implementation exists. // With Go, it works as expected, i.e. the output is sent to os.Stdout. // With Yaegi, it doesn't, i.e. the output is sent to io.Discard. if _, err := io.Copy(io.Discard, wr); err != nil { log.Fatal(err) } } // Output: // hello world yaegi-0.16.1/_test/issue-1439.go000066400000000000000000000004141460330105400160630ustar00rootroot00000000000000package main type Transformer interface { Reset() } type Encoder struct { Transformer } type nop struct{} func (nop) Reset() { println("Reset") } func f(e Transformer) { e.Reset() } func main() { e := Encoder{Transformer: nop{}} f(e) } // Output: // Reset yaegi-0.16.1/_test/issue-1442.go000066400000000000000000000011211460330105400160510ustar00rootroot00000000000000package main import ( "context" ) func main() { ctx, _ := context.WithCancel(context.Background()) ch := make(chan string, 20) defer close(ch) go func(ctx context.Context, ch <-chan string) { for { select { case <-ctx.Done(): return case tmp := <-ch: _ = tmp } } }(ctx, ch) for _, i := range "abcdef" { for _, j := range "0123456789" { // i, j := "a", "0" for _, k := range "ABCDEF" { select { case <-ctx.Done(): return default: tmp := string(i) + string(j) + string(k) ch <- tmp } } } } return } // Output: // yaegi-0.16.1/_test/issue-1447.go000066400000000000000000000003011460330105400160550ustar00rootroot00000000000000package main import "fmt" type I interface { Name() string } type S struct { iMap map[string]I } func main() { s := S{} s.iMap = map[string]I{} fmt.Println(s) } // Output: // {map[]} yaegi-0.16.1/_test/issue-1451.go000066400000000000000000000002301460330105400160510ustar00rootroot00000000000000package main type t1 uint8 const ( n1 t1 = iota n2 ) type T struct { elem [n2 + 1]int } func main() { println(len(T{}.elem)) } // Output: // 2 yaegi-0.16.1/_test/issue-1454.go000066400000000000000000000003211460330105400160550ustar00rootroot00000000000000package main type I2 interface { I2() string } type I interface { I2 } type S struct{} func (*S) I2() string { return "foo" } func main() { var i I _, ok := i.(*S) println(ok) } // Output: // false yaegi-0.16.1/_test/issue-1459.go000066400000000000000000000004141460330105400160650ustar00rootroot00000000000000package main import "fmt" type funclistItem func() type funclist struct { list []funclistItem } func main() { funcs := funclist{} funcs.list = append(funcs.list, func() { fmt.Println("first") }) for _, f := range funcs.list { f() } } // Output: // first yaegi-0.16.1/_test/issue-1460.go000066400000000000000000000031071460330105400160570ustar00rootroot00000000000000package main import ( "bytes" "encoding/json" "errors" "net/netip" "reflect" ) func unmarshalJSON[T any](b []byte, x *[]T) error { if *x != nil { return errors.New("already initialized") } if len(b) == 0 { return nil } return json.Unmarshal(b, x) } func SliceOfViews[T ViewCloner[T, V], V StructView[T]](x []T) SliceView[T, V] { return SliceView[T, V]{x} } type StructView[T any] interface { Valid() bool AsStruct() T } type SliceView[T ViewCloner[T, V], V StructView[T]] struct { ж []T } type ViewCloner[T any, V StructView[T]] interface { View() V Clone() T } func (v SliceView[T, V]) MarshalJSON() ([]byte, error) { return json.Marshal(v.ж) } func (v *SliceView[T, V]) UnmarshalJSON(b []byte) error { return unmarshalJSON(b, &v.ж) } type Slice[T any] struct { ж []T } func (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.ж) } func (v *Slice[T]) UnmarshalJSON(b []byte) error { return unmarshalJSON(b, &v.ж) } func SliceOf[T any](x []T) Slice[T] { return Slice[T]{x} } type IPPrefixSlice struct { ж Slice[netip.Prefix] } type viewStruct struct { Int int Strings Slice[string] StringsPtr *Slice[string] `json:",omitempty"` } func main() { ss := SliceOf([]string{"bar"}) in := viewStruct{ Int: 1234, Strings: ss, StringsPtr: &ss, } var buf bytes.Buffer encoder := json.NewEncoder(&buf) encoder.SetIndent("", "") err1 := encoder.Encode(&in) b := buf.Bytes() var got viewStruct err2 := json.Unmarshal(b, &got) println(err1 == nil, err2 == nil, reflect.DeepEqual(got, in)) } // Output: // true true true yaegi-0.16.1/_test/issue-1465.go000066400000000000000000000004751460330105400160710ustar00rootroot00000000000000package main import ( "fmt" ) func SomeFunc[T int | string](defaultValue T) T { switch v := any(&defaultValue).(type) { case *string: *v = *v + " abc" case *int: *v -= 234 } return defaultValue } func main() { fmt.Println(SomeFunc("test")) fmt.Println(SomeFunc(1234)) } // Output: // test abc // 1000 yaegi-0.16.1/_test/issue-1466.go000066400000000000000000000004731460330105400160700ustar00rootroot00000000000000package main import ( "fmt" ) func SomeFunc(defaultValue interface{}) interface{} { switch v := defaultValue.(type) { case string: return v + " abc" case int: return v - 234 } panic("whoops") } func main() { fmt.Println(SomeFunc(1234)) fmt.Println(SomeFunc("test")) } // Output: // 1000 // test abc yaegi-0.16.1/_test/issue-1470.go000066400000000000000000000002061460330105400160550ustar00rootroot00000000000000package main type T struct { num [tnum + 2]int } const tnum = 23 func main() { t := T{} println(len(t.num)) } // Output: // 25 yaegi-0.16.1/_test/issue-1475.go000066400000000000000000000001451460330105400160640ustar00rootroot00000000000000package main type T uint16 func f() T { return 0 } func main() { println(f()) } // Output: // 0 yaegi-0.16.1/_test/issue-1488.go000066400000000000000000000004441460330105400160720ustar00rootroot00000000000000package main import "fmt" type vector interface { []int | [3]int } func sum[V vector](v V) (out int) { for i := 0; i < len(v); i++ { out += v[i] } return } func main() { va := [3]int{1, 2, 3} vs := []int{1, 2, 3} fmt.Println(sum[[3]int](va), sum[[]int](vs)) } // Output: // 6 6 yaegi-0.16.1/_test/issue-1496.go000066400000000000000000000003721460330105400160710ustar00rootroot00000000000000package main func main() { a := []byte{} == nil b := nil == []byte{} c := nil == &struct{}{} i := 100 d := nil == &i var v interface{} f := nil == v g := v == nil println(a, b, c, d, f, g) } // Output: // false false false false true true yaegi-0.16.1/_test/issue-1515.go000066400000000000000000000006341460330105400160620ustar00rootroot00000000000000package main type I1 interface { I2 Wrap() *S3 } type I2 interface { F() } type S2 struct { I2 } func newS2(i2 I2) I1 { return &S2{i2} } type S3 struct { base *S2 } func (s *S2) Wrap() *S3 { i2 := s return &S3{i2} } type T struct { name string } func (t *T) F() { println("in F", t.name) } func main() { t := &T{"test"} s2 := newS2(t) s3 := s2.Wrap() s3.base.F() } // Output: // in F test yaegi-0.16.1/_test/issue-1536.go000066400000000000000000000002361460330105400160630ustar00rootroot00000000000000package main var a [len(prefix+path) + 2]int const ( prefix = "/usr/" path = prefix + "local/bin" ) func main() { println(len(a)) } // Output: // 21 yaegi-0.16.1/_test/issue-1571.go000066400000000000000000000002441460330105400160610ustar00rootroot00000000000000package main type A struct { *B[string] } type B[T any] struct { data T } func main() { _ = &A{ B: &B[string]{}, } println("PASS") } // Output: // PASS yaegi-0.16.1/_test/issue-1594.go000066400000000000000000000003301460330105400160620ustar00rootroot00000000000000package main func main() { var fns []func() for _, v := range []int{1, 2, 3} { x := v*100 + v fns = append(fns, func() { println(x) }) } for _, fn := range fns { fn() } } // Output: // 101 // 202 // 303 yaegi-0.16.1/_test/issue-1618.go000066400000000000000000000016021460330105400160620ustar00rootroot00000000000000package main import ( "fmt" "runtime" "sync" ) func humanizeBytes(bytes uint64) string { const ( _ = iota kB uint64 = 1 << (10 * iota) mB gB tB pB ) switch { case bytes < kB: return fmt.Sprintf("%dB", bytes) case bytes < mB: return fmt.Sprintf("%.2fKB", float64(bytes)/float64(kB)) case bytes < gB: return fmt.Sprintf("%.2fMB", float64(bytes)/float64(mB)) case bytes < tB: return fmt.Sprintf("%.2fGB", float64(bytes)/float64(gB)) case bytes < pB: return fmt.Sprintf("%.2fTB", float64(bytes)/float64(tB)) default: return fmt.Sprintf("%dB", bytes) } } func main() { i := 0 wg := sync.WaitGroup{} for { var m runtime.MemStats runtime.ReadMemStats(&m) fmt.Printf("#%d: alloc = %s, routines = %d, gc = %d\n", i, humanizeBytes(m.Alloc), runtime.NumGoroutine(), m.NumGC) wg.Add(1) go func() { wg.Done() }() wg.Wait() i = i + 1 } } yaegi-0.16.1/_test/issue-435.go000066400000000000000000000004041460330105400157750ustar00rootroot00000000000000package main import ( "fmt" "strconv" ) type Foo int func (f Foo) String() string { return "foo-" + strconv.Itoa(int(f)) } func print1(arg interface{}) { fmt.Println(arg) } func main() { var arg Foo = 3 var f = print1 f(arg) } // Output: // foo-3 yaegi-0.16.1/_test/issue-558.go000066400000000000000000000014511460330105400160060ustar00rootroot00000000000000package main import ( "fmt" "io" "log" "strings" ) type readAutoCloser struct { r io.ReadCloser } func (a readAutoCloser) Read(b []byte) (n int, err error) { if a.r == nil { return 0, io.EOF } n, err = a.r.Read(b) if err == io.EOF { a.Close() } return n, err } func (a readAutoCloser) Close() error { if a.r == nil { return nil } return a.r.(io.Closer).Close() } type pipe struct { Reader readAutoCloser } func newReadAutoCloser(r io.Reader) readAutoCloser { if _, ok := r.(io.Closer); !ok { return readAutoCloser{io.NopCloser(r)} } return readAutoCloser{r.(io.ReadCloser)} } func main() { p := &pipe{} p.Reader = newReadAutoCloser(strings.NewReader("test")) b, err := io.ReadAll(p.Reader) if err != nil { log.Fatal(err) } fmt.Println(string(b)) } // Output: // test yaegi-0.16.1/_test/issue-735.go000066400000000000000000000006741460330105400160110ustar00rootroot00000000000000package main import ( "fmt" "strconv" ) var optionsG map[string]string var roundG int = 30 func strToInt(s string, defaultValue int) int { n, err := strconv.ParseInt(s, 10, 0) if err != nil { return defaultValue } return int(n) } func main() { optionsG := map[string]string{"round": "12", "b": "one"} roundG = strToInt(optionsG["round"], 50) fmt.Println(roundG) fmt.Println(optionsG) } // Output: // 12 // map[b:one round:12] yaegi-0.16.1/_test/issue-770.go000066400000000000000000000004041460330105400157770ustar00rootroot00000000000000package main import "reflect" type I interface { Foo() int } type T struct { Name string } func (t T) Foo() int { return 0 } func f(v reflect.Value) int { i := v.Interface().(I) return i.Foo() } func main() { println("hello") } // Output: // hello yaegi-0.16.1/_test/issue-772.go000066400000000000000000000005401460330105400160020ustar00rootroot00000000000000package main import ( "log" "os" "text/template" ) type Message struct { Data string } func main() { tmpl := template.New("name") _, err := tmpl.Parse("{{.Data}}") if err != nil { log.Fatal(err) } err = tmpl.Execute(os.Stdout, Message{ Data: "Hello, World!!", }) if err != nil { log.Fatal(err) } } // Output: // Hello, World!! yaegi-0.16.1/_test/issue-775.go000066400000000000000000000003631460330105400160100ustar00rootroot00000000000000package main import ( "fmt" "net/http/httptest" ) func main() { recorder := httptest.NewRecorder() recorder.Header().Add("Foo", "Bar") for key, value := range recorder.Header() { fmt.Println(key, value) } } // Output: // Foo [Bar] yaegi-0.16.1/_test/issue-776.go000066400000000000000000000010021460330105400160000ustar00rootroot00000000000000package main import "fmt" // Filter is a filter type Filter interface { Foo() } // GIFT is a gift type GIFT struct { Filters []Filter } // New is a new filter list func New(filters ...Filter) *GIFT { return &GIFT{ Filters: filters, } } // List lists filters func (g *GIFT) List() { fmt.Printf("Hello from List!\n") } // MyFilter is one of the filters type MyFilter struct{} // Foo is a foo func (f *MyFilter) Foo() {} func main() { g := New(&MyFilter{}) g.List() } // Output: // Hello from List! yaegi-0.16.1/_test/issue-782.go000066400000000000000000000002531460330105400160040ustar00rootroot00000000000000package main import "fmt" func main() { a := []int{1, 2, 3, 4, 5, 6, 7, 8, 9} from := uint32(2) to := uint32(4) b := a[from:to] fmt.Print(b) } // Output: // [3 4] yaegi-0.16.1/_test/issue-784.go000066400000000000000000000013561460330105400160130ustar00rootroot00000000000000package main import "fmt" // Filter is a filter interface type Filter interface { Bounds(srcBounds string) (dstBounds string) } // GIFT type type GIFT struct { Filters []Filter } // New creates a new filter list and initializes it with the given slice of filters. func New(filters ...Filter) *GIFT { return &GIFT{ Filters: filters, } } // Bounds calculates the appropriate bounds for the result image after applying all the added filters. func (g *GIFT) Bounds(srcBounds string) (dstBounds string) { dstBounds = srcBounds for _, f := range g.Filters { dstBounds = f.Bounds(dstBounds) } return dstBounds } func main() { var filters []Filter bounds := "foo" g := New(filters...) fmt.Println(g.Bounds(bounds)) } // Output: // foo yaegi-0.16.1/_test/issue-880.go000066400000000000000000000005131460330105400160020ustar00rootroot00000000000000package main import ( "bufio" "bytes" ) func main() { var buf1 = make([]byte, 1024) var buf2 []byte buf1 = []byte("Hallo\nTest\nLine3") s := bufio.NewScanner(bytes.NewReader(buf1)) for s.Scan() { buf2 = append(buf2, append(s.Bytes(), []byte("\n")...)...) } print(string(buf2)) } // Output: // Hallo // Test // Line3 yaegi-0.16.1/_test/issue-981.go000066400000000000000000000003421460330105400160040ustar00rootroot00000000000000package main import "fmt" func main() { dp := make(map[int]int) dp[0] = 1 for i := 1; i < 10; i++ { dp[i] = dp[i-1] + dp[i-2] } fmt.Printf("%v\n", dp) } // Output: // map[0:1 1:1 2:2 3:3 4:5 5:8 6:13 7:21 8:34 9:55] yaegi-0.16.1/_test/issue-993.go000066400000000000000000000002231460330105400160050ustar00rootroot00000000000000package main var m map[string]int64 func initVar() { m = make(map[string]int64) } func main() { initVar() println(len(m)) } // Output: // 0 yaegi-0.16.1/_test/l2.go000066400000000000000000000007101460330105400146510ustar00rootroot00000000000000package main func main() { for a := 0; a < 20000; a++ { if (a & 0x8ff) == 0x800 { println(a) } } } // Output: // 2048 // 2304 // 2560 // 2816 // 3072 // 3328 // 3584 // 3840 // 6144 // 6400 // 6656 // 6912 // 7168 // 7424 // 7680 // 7936 // 10240 // 10496 // 10752 // 11008 // 11264 // 11520 // 11776 // 12032 // 14336 // 14592 // 14848 // 15104 // 15360 // 15616 // 15872 // 16128 // 18432 // 18688 // 18944 // 19200 // 19456 // 19712 // 19968 yaegi-0.16.1/_test/l3.go000066400000000000000000000002461460330105400146560ustar00rootroot00000000000000package main //func myprint(i int) { println(i) } func main() { for a := 0; a < 20000000; a++ { if a&0x8ffff == 0x80000 { println(a) //myprint(a) } } } yaegi-0.16.1/_test/l4.go000066400000000000000000000001461460330105400146560ustar00rootroot00000000000000package main func main() { println(f(5)) } func f(i int) int { return i + 1 } // Output: // 6 yaegi-0.16.1/_test/l5.go000066400000000000000000000002361460330105400146570ustar00rootroot00000000000000package main //func myprint(i int) { println(i) } func main() { for a := 0; a < 20000000; { if a&0x8ffff == 0x80000 { println(a) } a = a + 1 } } yaegi-0.16.1/_test/len0.go000066400000000000000000000002061460330105400151720ustar00rootroot00000000000000package main func f(a []int) interface{} { return len(a) } func main() { a := []int{1, 2} println(f(a).(int)) } // Output: // 2 yaegi-0.16.1/_test/m1/000077500000000000000000000000001460330105400143245ustar00rootroot00000000000000yaegi-0.16.1/_test/m1/main.go000066400000000000000000000002221460330105400155730ustar00rootroot00000000000000package main import ( "fmt" "testing" ) func main() { fmt.Println("vim-go") } func TestWeird(t *testing.T) { fmt.Println("in TestWeird") } yaegi-0.16.1/_test/m1/main_test.go000066400000000000000000000003031460330105400166320ustar00rootroot00000000000000package main import ( "fmt" "math/rand" "testing" ) func TestMain(t *testing.T) { fmt.Println("in test") } func BenchmarkMain(b *testing.B) { for i := 0; i < b.N; i++ { rand.Int() } } yaegi-0.16.1/_test/m2/000077500000000000000000000000001460330105400143255ustar00rootroot00000000000000yaegi-0.16.1/_test/m2/m2_test.go000066400000000000000000000001471460330105400162330ustar00rootroot00000000000000package m2 import "testing" func TestM2(t *testing.T) { t.Errorf("got %s, want %s", "AAA", "BBB") } yaegi-0.16.1/_test/make.go000066400000000000000000000002031460330105400152460ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) func main() { h := make(http.Header) fmt.Println("h:", h) } // Output: // h: map[] yaegi-0.16.1/_test/make0.go000066400000000000000000000002031460330105400153260ustar00rootroot00000000000000package main func f() interface{} { return make([]int, 2) } func main() { a := f() println(len(a.([]int))) } // Output: // 2 yaegi-0.16.1/_test/make1.go000066400000000000000000000002521460330105400153330ustar00rootroot00000000000000package main import "fmt" func f() interface{} { return make(map[int]int) } func main() { a, ok := f().(map[int]int) fmt.Println(a, ok) } // Output: // map[] true yaegi-0.16.1/_test/make2.go000066400000000000000000000001721460330105400153350ustar00rootroot00000000000000package main import "fmt" func main() { var s uint = 4 t := make([]int, s) fmt.Println(t) } // Output: // [0 0 0 0] yaegi-0.16.1/_test/map.go000066400000000000000000000002251460330105400151120ustar00rootroot00000000000000package main type Dict map[string]string func main() { dict := make(Dict) dict["truc"] = "machin" println(dict["truc"]) } // Output: // machin yaegi-0.16.1/_test/map10.go000066400000000000000000000006661460330105400152640ustar00rootroot00000000000000package main import ( "fmt" "sort" ) type Foo struct { Name string } func main() { m := map[string][]Foo{ "hello": {Foo{"foo"}, Foo{"bar"}}, "world": {Foo{"truc"}, Foo{"machin"}}, } var content []string for key, values := range m { for _, value := range values { content = append(content, key+value.Name) } } sort.Strings(content) fmt.Println(content) } // Output: // [hellobar hellofoo worldmachin worldtruc] yaegi-0.16.1/_test/map11.go000066400000000000000000000006641460330105400152630ustar00rootroot00000000000000package main import ( "fmt" "sort" ) type Foo struct { Name string } func main() { m := map[string][]Foo{ "hello": []Foo{{"foo"}, {"bar"}}, "world": []Foo{{"truc"}, {"machin"}}, } var content []string for key, values := range m { for _, value := range values { content = append(content, key+value.Name) } } sort.Strings(content) fmt.Println(content) } // Output: // [hellobar hellofoo worldmachin worldtruc] yaegi-0.16.1/_test/map12.go000066400000000000000000000005431460330105400152600ustar00rootroot00000000000000package main import ( "fmt" "sort" ) type Foo struct { Name string } func main() { m := map[string]Foo{ "hello": {Name: "bar"}, "world": {Name: "machin"}, } var content []string for key, value := range m { content = append(content, key+value.Name) } sort.Strings(content) fmt.Println(content) } // Output: // [hellobar worldmachin] yaegi-0.16.1/_test/map13.go000066400000000000000000000004111460330105400152530ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) const acceptEncoding = "Accept-Encoding" func main() { opts := &http.PushOptions{ Header: http.Header{ acceptEncoding: []string{"gzip"}, }, } fmt.Println(opts) } // Output: // &{ map[Accept-Encoding:[gzip]]} yaegi-0.16.1/_test/map14.go000066400000000000000000000002741460330105400152630ustar00rootroot00000000000000package main import "fmt" var m = map[string]float64{"foo": 1.0} func f(s string) bool { return m[s] > 0.0 } func main() { fmt.Println(f("foo"), f("bar")) } // Output: // true false yaegi-0.16.1/_test/map15.go000066400000000000000000000002101460330105400152520ustar00rootroot00000000000000package main import "fmt" func main() { users := make(map[string]string) v := users["a"] fmt.Println("v:", v) } // Output: // v: yaegi-0.16.1/_test/map16.go000066400000000000000000000004161460330105400152630ustar00rootroot00000000000000package main import "fmt" func main() { users := make(map[string]string) v, exists := users["a"] fmt.Println(v, exists) if exists == true { //if exists { fmt.Println("exists", v) } else { fmt.Println("not exists") } } // Output: // false // not exists yaegi-0.16.1/_test/map17.go000066400000000000000000000003751460330105400152700ustar00rootroot00000000000000package main import "net/http" type T struct { header string } func (b *T) ServeHTTP(rw http.ResponseWriter, req *http.Request) { if b.header != "" { req.Header[b.header] = []string{"hello"} } } func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/map18.go000066400000000000000000000002041460330105400152600ustar00rootroot00000000000000package main import "fmt" var foo = make([]int, 1) func main() { for _, v := range foo { fmt.Println(v) } } // Output: // 0 yaegi-0.16.1/_test/map19.go000066400000000000000000000002631460330105400152660ustar00rootroot00000000000000package main import "fmt" type cmap struct { servers map[int64]*server } type server struct { cm *cmap } func main() { m := cmap{} fmt.Println(m) } // Output: // {map[]} yaegi-0.16.1/_test/map2.go000066400000000000000000000002051460330105400151720ustar00rootroot00000000000000package main func main() { dict := make(map[string]string) dict["truc"] = "machin" println(dict["truc"]) } // Output: // machin yaegi-0.16.1/_test/map20.go000066400000000000000000000001611460330105400152530ustar00rootroot00000000000000package main var a = map[int]bool{1: true, 2: true} func main() { println(a[1] && true) } // Output: // true yaegi-0.16.1/_test/map21.go000066400000000000000000000002151460330105400152540ustar00rootroot00000000000000package main var m = map[int]string{ 1: "foo", } func main() { var ok bool if _, ok = m[1]; ok { println("ok") } } // Output: // ok yaegi-0.16.1/_test/map22.go000066400000000000000000000001761460330105400152630ustar00rootroot00000000000000package main var m = map[int]string{ 1: "foo", } func main() { var s string s, _ = m[1] println(s) } // Output: // foo yaegi-0.16.1/_test/map23.go000066400000000000000000000001621460330105400152570ustar00rootroot00000000000000package main var m = map[int]string{ 1: "foo", } func main() { _, _ = m[1] println("ok") } // Output: // ok yaegi-0.16.1/_test/map24.go000066400000000000000000000004551460330105400152650ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" ) func main() { jb := []byte(`{"property": "test"}`) params := map[string]interface{}{"foo": 1} if err := json.Unmarshal(jb, ¶ms); err != nil { panic("marshal failed.") } fmt.Println(params["foo"], params["property"]) } // Output: // 1 test yaegi-0.16.1/_test/map25.go000066400000000000000000000005631460330105400152660ustar00rootroot00000000000000package main import ( "encoding/json" "strconv" ) func main() { jb := []byte(`{"num": "2"}`) params := map[string]interface{}{"foo": "1"} if err := json.Unmarshal(jb, ¶ms); err != nil { panic(err) } sum := 0 for _, v := range params { i, err := strconv.Atoi(v.(string)) if err != nil { panic(err) } sum += i } println(sum) } // Output: // 3 yaegi-0.16.1/_test/map26.go000066400000000000000000000002131460330105400152570ustar00rootroot00000000000000package main var m = map[string]int{"foo": 1, "bar": 2} func main() { var a interface{} = m["foo"] println(a.(int)) } // Output: // 1 yaegi-0.16.1/_test/map27.go000066400000000000000000000004671460330105400152730ustar00rootroot00000000000000package main import ( "fmt" "text/template" ) type fm map[string]interface{} type foo struct{} func main() { a := make(fm) a["foo"] = &foo{} fmt.Println(a["foo"]) b := make(template.FuncMap) // type FuncMap map[string]interface{} b["foo"] = &foo{} fmt.Println(b["foo"]) } // Output: // &{} // &{} yaegi-0.16.1/_test/map28.go000066400000000000000000000003421460330105400152640ustar00rootroot00000000000000package main import ( "net/url" ) func main() { value1 := url.Values{} value1.Set("first", "v1") value1.Set("second", "v2") l := 0 for k, v := range value1 { l += len(k) + len(v) } println(l) } // Output: // 13 yaegi-0.16.1/_test/map29.go000066400000000000000000000004351460330105400152700ustar00rootroot00000000000000package main import ( "fmt" "time" ) type Item struct { Object interface{} Expiry time.Duration } func main() { items := map[string]Item{} items["test"] = Item{ Object: "test", Expiry: time.Second, } item := items["test"] fmt.Println(item) } // Output: // {test 1s} yaegi-0.16.1/_test/map3.go000066400000000000000000000002011460330105400151670ustar00rootroot00000000000000package main func main() { dict := map[string]string{} dict["truc"] = "machin" println(dict["truc"]) } // Output: // machin yaegi-0.16.1/_test/map30.go000066400000000000000000000007031460330105400152560ustar00rootroot00000000000000package main import "strings" func f(s string) string { return "hello " + s } func g(s string) string { return "hi " + s } var methods = map[string]func(string) string{ "f": f, "h": strings.ToLower, } func main() { methods["i"] = strings.ToUpper methods["g"] = g println(methods["f"]("test")) println(methods["g"]("test")) println(methods["i"]("test")) println(methods["h"]("TEST")) } // Output: // hello test // hi test // TEST // test yaegi-0.16.1/_test/map4.go000066400000000000000000000003141460330105400151750ustar00rootroot00000000000000package main func main() { dict := map[string]string{"bidule": "machin", "truc": "bidule"} dict["hello"] = "bonjour" println(dict["bidule"]) println(dict["hello"]) } // Output: // machin // bonjour yaegi-0.16.1/_test/map5.go000066400000000000000000000003461460330105400152030ustar00rootroot00000000000000package main import "fmt" func main() { dict := map[string]string{"bidule": "machin", "truc": "bidule"} r, ok := dict["xxx"] fmt.Println(r, ok) r, ok = dict["truc"] fmt.Println(r, ok) } // Output: // false // bidule true yaegi-0.16.1/_test/map6.go000066400000000000000000000002271460330105400152020ustar00rootroot00000000000000package main func main() { dict := map[string]string{"bidule": "machin"} for k, v := range dict { println(k, v) } } // Output: // bidule machin yaegi-0.16.1/_test/map7.go000066400000000000000000000002031460330105400151750ustar00rootroot00000000000000package main func main() { dict := map[int32]int64{13: 733} for k, v := range dict { println(k, v) } } // Output: // 13 733 yaegi-0.16.1/_test/map8.go000066400000000000000000000005761460330105400152130ustar00rootroot00000000000000package main import ( "fmt" "sort" ) func main() { m := map[string][]string{ "hello": {"foo", "bar"}, "world": {"truc", "machin"}, } var content []string for key, values := range m { for _, value := range values { content = append(content, key+value) } } sort.Strings(content) fmt.Println(content) } // Output: // [hellobar hellofoo worldmachin worldtruc] yaegi-0.16.1/_test/map9.go000066400000000000000000000006521460330105400152070ustar00rootroot00000000000000package main import ( "fmt" "sort" ) type Foo struct { Name string } func main() { m := map[string][]Foo{ "hello": {{"foo"}, {"bar"}}, "world": {{"truc"}, {"machin"}}, } var content []string for key, values := range m { for _, value := range values { content = append(content, key+value.Name) } } sort.Strings(content) fmt.Println(content) } // Output: // [hellobar hellofoo worldmachin worldtruc] yaegi-0.16.1/_test/math0.go000066400000000000000000000001531460330105400153460ustar00rootroot00000000000000package main import ( "fmt" "math" ) func main() { fmt.Println(math.Cos(math.Pi)) } // Output: // -1 yaegi-0.16.1/_test/math1.go000066400000000000000000000001731460330105400153510ustar00rootroot00000000000000package main import "math" func main() { var f float32 if f < math.MaxFloat32 { println("ok") } } // Output: // ok yaegi-0.16.1/_test/math2.go000066400000000000000000000001661460330105400153540ustar00rootroot00000000000000package main const c uint64 = 2 func main() { if c&(1<<(uint64(1))) > 0 { println("yes") } } // Output: // yes yaegi-0.16.1/_test/math3.go000066400000000000000000000007631460330105400153600ustar00rootroot00000000000000package main import ( "crypto/md5" "fmt" ) func md5Crypt(password, salt, magic []byte) []byte { d := md5.New() d.Write(password) d.Write(magic) d.Write(salt) d2 := md5.New() d2.Write(password) d2.Write(salt) for i, mixin := 0, d2.Sum(nil); i < len(password); i++ { d.Write([]byte{mixin[i%16]}) } return d.Sum(nil) } func main() { b := md5Crypt([]byte("1"), []byte("2"), []byte("3")) fmt.Println(b) } // Output: // [187 141 73 89 101 229 33 106 226 63 117 234 117 149 230 21] yaegi-0.16.1/_test/method.go000066400000000000000000000002561460330105400156210ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } func main() { o := Coord{3, 4} println(o.dist()) } // Output: // 25 yaegi-0.16.1/_test/method0.go000066400000000000000000000004711460330105400157000ustar00rootroot00000000000000package main import "fmt" type Foo struct { } func (Foo) Call() { fmt.Println("Foo Called") } type Bar struct { Foo } type Baz struct { Foo } func (Baz) Call() { fmt.Println("Baz Called") } func main() { Foo{}.Call() Bar{}.Call() Baz{}.Call() } // Output: // Foo Called // Foo Called // Baz Called yaegi-0.16.1/_test/method1.go000066400000000000000000000003231460330105400156750ustar00rootroot00000000000000package main type Sample struct { Name string } func (s *Sample) foo(i int) { println("in foo", s.Name, i) } func main() { sample := Sample{"hello"} s := &sample s.foo(3) } // Output: // in foo hello 3 yaegi-0.16.1/_test/method10.go000066400000000000000000000003211460330105400157530ustar00rootroot00000000000000package main const BlockSize = 8 type Cipher struct{} func (c *Cipher) BlockSize() int { return BlockSize } func main() { println(BlockSize) s := Cipher{} println(s.BlockSize()) } // Output: // 8 // 8 yaegi-0.16.1/_test/method11.go000066400000000000000000000003631460330105400157620ustar00rootroot00000000000000package main func BlockSize() string { return "func" } type Cipher struct{} func (c *Cipher) BlockSize() string { return "method" } func main() { println(BlockSize()) s := Cipher{} println(s.BlockSize()) } // Output: // func // method yaegi-0.16.1/_test/method12.go000066400000000000000000000002661460330105400157650ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } func main() { o := Coord{3, 4} f := o.dist println(f()) } // Output: // 25 yaegi-0.16.1/_test/method13.go000066400000000000000000000003451460330105400157640ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } type Point struct { Coord z int } func main() { o := Point{Coord{3, 4}, 5} f := o.dist println(f()) } // Output: // 25 yaegi-0.16.1/_test/method14.go000066400000000000000000000002571460330105400157670ustar00rootroot00000000000000package main func main() { o := Coord{3, 4} println(o.dist()) } func (c *Coord) dist() int { return c.x*c.x + c.y*c.y } type Coord struct { x, y int } // Output: // 25 yaegi-0.16.1/_test/method15.go000066400000000000000000000002571460330105400157700ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } func main() { o := &Coord{3, 4} println(o.dist()) } // Output: // 25 yaegi-0.16.1/_test/method16.go000066400000000000000000000004031460330105400157620ustar00rootroot00000000000000package main import ( "fmt" ) type Cheese struct { property string } func (t *Cheese) Hello(param string) { fmt.Printf("%+v %+v", t, param) } func main() { (*Cheese).Hello(&Cheese{property: "value"}, "param") } // Output: // &{Xproperty:value} param yaegi-0.16.1/_test/method17.go000066400000000000000000000006561460330105400157750ustar00rootroot00000000000000package main import ( "fmt" "time" ) type MyTime struct { time.Time index int } func (m MyTime) Foo() { minute := m.Minute() fmt.Println("minute:", minute) } func (m *MyTime) Bar() { second := m.Second() fmt.Println("second:", second) } func main() { t := MyTime{} t.Time = time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) t.Foo() t.Bar() (&t).Bar() } // Output: // minute: 4 // second: 5 // second: 5 yaegi-0.16.1/_test/method18.go000066400000000000000000000006371460330105400157750ustar00rootroot00000000000000package main import ( "compress/gzip" "fmt" "net/http" ) type GzipResponseWriter struct { http.ResponseWriter index int gw *gzip.Writer } type GzipResponseWriterWithCloseNotify struct { *GzipResponseWriter } func (w GzipResponseWriterWithCloseNotify) CloseNotify() <-chan bool { return w.ResponseWriter.(http.CloseNotifier).CloseNotify() } func main() { fmt.Println("hello") } // Output: // hello yaegi-0.16.1/_test/method19.go000066400000000000000000000003271460330105400157720ustar00rootroot00000000000000package main import "fmt" func f() (string, error) { err := fmt.Errorf("a nice error") return "", err } func main() { _, err := f() if err != nil { fmt.Println(err.Error()) } } // Output: // a nice error yaegi-0.16.1/_test/method2.go000066400000000000000000000003351460330105400157010ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } type Point struct { Coord z int } func main() { o := Point{Coord{3, 4}, 5} println(o.dist()) } // Output: // 25 yaegi-0.16.1/_test/method20.go000066400000000000000000000003401460330105400157550ustar00rootroot00000000000000package main import ( "fmt" "sync" ) type Hello struct { mu sync.Mutex } func (h *Hello) Hi() string { h.mu.Lock() h.mu.Unlock() return "hi" } func main() { a := &Hello{} fmt.Println(a.Hi()) } // Output: // hi yaegi-0.16.1/_test/method21.go000066400000000000000000000002461460330105400157630ustar00rootroot00000000000000package main import ( "fmt" ) type Hello struct{} func (*Hello) Hi() string { panic("implement me") } func main() { fmt.Println(&Hello{}) } // Output: // &{} yaegi-0.16.1/_test/method22.go000066400000000000000000000002621460330105400157620ustar00rootroot00000000000000package main func Bar() { s := Obj.Foo() println(s) } var Obj = &T{} type T struct{} func (t *T) Foo() bool { return t != nil } func main() { Bar() } // Output: // true yaegi-0.16.1/_test/method23.go000066400000000000000000000003241460330105400157620ustar00rootroot00000000000000package main func Bar() { s := Obj.Foo() println(s) } var Obj = NewT() func NewT() *T { return &T{} } type T struct{} func (t *T) Foo() bool { return t != nil } func main() { Bar() } // Output: // true yaegi-0.16.1/_test/method24.go000066400000000000000000000005451460330105400157700ustar00rootroot00000000000000package main import ( "fmt" "sync" ) type Pool struct { p *sync.Pool } func (p Pool) Get() *Buffer { return &Buffer{} } func NewPool() Pool { return Pool{} } type Buffer struct { bs []byte pool Pool } var ( _pool = NewPool() Get = _pool.Get ) func main() { fmt.Println(_pool) fmt.Println(Get()) } // Output: // {} // &{[] {}} yaegi-0.16.1/_test/method25.go000066400000000000000000000005451460330105400157710ustar00rootroot00000000000000package main import ( "fmt" "sync" ) func (p Pool) Get() *Buffer { return &Buffer{} } func NewPool() Pool { return Pool{} } type Buffer struct { bs []byte pool Pool } type Pool struct { p *sync.Pool } var ( _pool = NewPool() Get = _pool.Get ) func main() { fmt.Println(_pool) fmt.Println(Get()) } // Output: // {} // &{[] {}} yaegi-0.16.1/_test/method26.go000066400000000000000000000003031460330105400157620ustar00rootroot00000000000000package main func NewT(name string) *T { return &T{name} } var C = NewT("test") func (t *T) f() { println(t == C) } type T struct { Name string } func main() { C.f() } // Output: // true yaegi-0.16.1/_test/method27.go000066400000000000000000000003271460330105400157710ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type AuthenticatedRequest struct { http.Request Username string } func main() { a := &AuthenticatedRequest{} fmt.Println("ua:", a.UserAgent()) } // Output: // ua: yaegi-0.16.1/_test/method28.go000066400000000000000000000002551460330105400157720ustar00rootroot00000000000000package main import "fmt" type T struct { Name string } func (T) create() *T { return &T{"Hello"} } func main() { fmt.Println(T{}.create()) } // Output: // &{Hello} yaegi-0.16.1/_test/method29.go000066400000000000000000000003441460330105400157720ustar00rootroot00000000000000package main import ( "context" "net" ) var lookupHost = net.DefaultResolver.LookupHost func main() { res, err := lookupHost(context.Background(), "localhost") println(len(res) > 0, err == nil) } // Output: // true true yaegi-0.16.1/_test/method3.go000066400000000000000000000003431460330105400157010ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } type Point struct { Coord z int } func main() { o := Point{Coord{3, 4}, 5} println(o.Coord.dist()) } // Output: // 25 yaegi-0.16.1/_test/method30.go000066400000000000000000000003061460330105400157600ustar00rootroot00000000000000package main type T struct { Name string } func (t *T) foo(a string) string { return t.Name + a } var g = &T{"global"} var f = g.foo func main() { println(f("-x")) } // Output: // global-x yaegi-0.16.1/_test/method31.go000066400000000000000000000004651460330105400157670ustar00rootroot00000000000000package main import "fmt" var db dbWrapper type dbWrapper struct { DB *cmap } func (d *dbWrapper) get() *cmap { return d.DB } type cmap struct { name string } func (c *cmap) f() { fmt.Println("in f, c", c) } func main() { db.DB = &cmap{name: "test"} db.get().f() } // Output: // in f, c &{test} yaegi-0.16.1/_test/method32.go000066400000000000000000000002401460330105400157570ustar00rootroot00000000000000package main import ( "fmt" ) func main() { var a = []func(string){bar} b := a[0] b("bar") } func bar(a string) { fmt.Println(a) } // Output: // bar yaegi-0.16.1/_test/method33.go000066400000000000000000000010571460330105400157670ustar00rootroot00000000000000package main import ( "fmt" ) type T1 struct{} func (t1 T1) f() { fmt.Println("T1.f()") } func (t1 T1) g() { fmt.Println("T1.g()") } type T2 struct { T1 } func (t2 T2) f() { fmt.Println("T2.f()") } type I interface { f() } func printType(i I) { if t1, ok := i.(T1); ok { println("T1 ok") t1.f() t1.g() } if t2, ok := i.(T2); ok { println("T2 ok") t2.f() t2.g() } } func main() { println("T1") printType(T1{}) println("T2") printType(T2{}) } // Output: // T1 // T1 ok // T1.f() // T1.g() // T2 // T2 ok // T2.f() // T1.g() yaegi-0.16.1/_test/method34.go000066400000000000000000000006621460330105400157710ustar00rootroot00000000000000package main type Root struct { Name string } type One struct { Root } type Hi interface { Hello() string } type Hey interface { Hello() string } func (r *Root) Hello() string { return "Hello " + r.Name } func main() { // TODO(mpl): restore when type assertions work again. // var one interface{} = &One{Root{Name: "test2"}} var one Hey = &One{Root{Name: "test2"}} println(one.(Hi).Hello()) } // Output: // Hello test2 yaegi-0.16.1/_test/method35.go000066400000000000000000000002631460330105400157670ustar00rootroot00000000000000package main import "strconv" func main() { var err error _, err = strconv.Atoi("erwer") if _, ok := err.(*strconv.NumError); ok { println("here") } } // Output: // here yaegi-0.16.1/_test/method36.go000066400000000000000000000005071460330105400157710ustar00rootroot00000000000000package main type I interface{ Hello() } type T struct{ Name string } func (t *T) Hello() { println("Hello", t.Name) } type FT func(i I) type ST struct{ Handler FT } func newF() FT { return func(i I) { i.Hello() } } func main() { st := &ST{} st.Handler = newF() st.Handler(&T{"test"}) } // Output: // Hello test yaegi-0.16.1/_test/method37.go000066400000000000000000000003261460330105400157710ustar00rootroot00000000000000package main import ( "net" "os" ) func writeBufs(bufs ...[]byte) error { b := net.Buffers(bufs) _, err := b.WriteTo(os.Stdout) return err } func main() { writeBufs([]byte("hello")) } // Output: // hello yaegi-0.16.1/_test/method38.go000066400000000000000000000002271460330105400157720ustar00rootroot00000000000000package main import ( "fmt" "github.com/traefik/yaegi/_test/method38" ) func main() { fmt.Println(method38.Get()) } // Output: // &{[] {}} yaegi-0.16.1/_test/method38/000077500000000000000000000000001460330105400154425ustar00rootroot00000000000000yaegi-0.16.1/_test/method38/a.go000066400000000000000000000003121460330105400162050ustar00rootroot00000000000000package method38 import "sync" func NewPool() Pool { return Pool{} } type Buffer struct { bs []byte pool Pool } type Pool struct { p *sync.Pool } var ( _pool = NewPool() Get = _pool.Get ) yaegi-0.16.1/_test/method38/b.go000066400000000000000000000001031460330105400162040ustar00rootroot00000000000000package method38 func (p Pool) Get() *Buffer { return &Buffer{} } yaegi-0.16.1/_test/method39.go000066400000000000000000000005201460330105400157670ustar00rootroot00000000000000package main import ( "fmt" "sync" "github.com/traefik/yaegi/_test/method38" ) func NewPool() Pool { return Pool{} } type Buffer struct { bs []byte pool Pool } type Pool struct { p *sync.Pool } var ( _pool = NewPool() Get = _pool.Get ) func main() { fmt.Println(Get()) } // Error: // 17:11: undefined selector Get yaegi-0.16.1/_test/method4.go000066400000000000000000000004161460330105400157030ustar00rootroot00000000000000package main type Coord struct { x, y int } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } type Point struct { Coord z int } type Tpoint struct { t int Point } func main() { o := Tpoint{0, Point{Coord{3, 4}, 5}} println(o.dist()) } // Output: // 25 yaegi-0.16.1/_test/method40.go000066400000000000000000000005531460330105400157650ustar00rootroot00000000000000package main import ( "bytes" "io" ) type TMemoryBuffer struct { *bytes.Buffer size int } func newTMemoryBuffer() *TMemoryBuffer { return &TMemoryBuffer{} } var globalMemoryBuffer = newTMemoryBuffer() type TTransport interface { io.ReadWriter } func check(t TTransport) { println("ok") } func main() { check(globalMemoryBuffer) } // Output: // ok yaegi-0.16.1/_test/method5.go000066400000000000000000000007051460330105400157050ustar00rootroot00000000000000package main import "fmt" type Foo struct { } func (Foo) Show() { fmt.Println("Foo Showed") } func (f Foo) Call() { fmt.Println("Foo Called") f.Show() } type Bar struct { Foo } type Baz struct { Foo } func (Baz) Call() { fmt.Println("Baz Called") } func (Baz) Show() { fmt.Println("Baz Showed") } func main() { Foo{}.Call() Bar{}.Call() Baz{}.Call() } // Output: // Foo Called // Foo Showed // Foo Called // Foo Showed // Baz Called yaegi-0.16.1/_test/method6.go000066400000000000000000000003371460330105400157070ustar00rootroot00000000000000package main type Sample struct { Name string } func (s Sample) foo(i int) { println("in foo", s.Name, i) } var samples = []Sample{ Sample{"hello"}, } func main() { samples[0].foo(3) } // Output: // in foo hello 3 yaegi-0.16.1/_test/method7.go000066400000000000000000000003401460330105400157020ustar00rootroot00000000000000package main type Sample struct { Name string } func (s *Sample) foo(i int) { println("in foo", s.Name, i) } var samples = []Sample{ Sample{"hello"}, } func main() { samples[0].foo(3) } // Output: // in foo hello 3 yaegi-0.16.1/_test/method8.go000066400000000000000000000004131460330105400157040ustar00rootroot00000000000000package main type Sample struct { Name string Foo []string } func (s *Sample) foo(j int) { for i, v := range s.Foo { println(i, v) } } var samples = []Sample{ Sample{"hello", []string{"world"}}, } func main() { samples[0].foo(3) } // Output: // 0 world yaegi-0.16.1/_test/method9.go000066400000000000000000000002561460330105400157120ustar00rootroot00000000000000package main type Coord struct { x, y int } func main() { o := Coord{3, 4} println(o.dist()) } func (c Coord) dist() int { return c.x*c.x + c.y*c.y } // Output: // 25 yaegi-0.16.1/_test/named0.go000066400000000000000000000006641460330105400155100ustar00rootroot00000000000000package main import "fmt" type Root struct { Name string } func (r *Root) Hello() { fmt.Println("Hello", r.Name) } type One = Root func main() { one := &One{Name: "one"} displayOne(one) displayRoot(one) root := &Root{Name: "root"} displayOne(root) displayRoot(root) } func displayOne(val *One) { fmt.Println(val) } func displayRoot(val *Root) { fmt.Println(val) } // Output: // &{one} // &{one} // &{root} // &{root} yaegi-0.16.1/_test/named1.go000066400000000000000000000001761460330105400155070ustar00rootroot00000000000000package main import "fmt" type MyT T type T struct { Name string } func main() { fmt.Println(MyT{}) } // Output: // {} yaegi-0.16.1/_test/named2.go000066400000000000000000000002441460330105400155040ustar00rootroot00000000000000package main import "fmt" func (t MyT) Test() string { return "hello" } type MyT int func main() { t := MyT(1) fmt.Println(t.Test()) } // Output: // hello yaegi-0.16.1/_test/named3.go000066400000000000000000000003611460330105400155050ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/named3" var globalT *T func init() { globalT = &T{A: "test"} } type T named3.T func (t *T) PrintT() { (*named3.T)(t).Print() } func main() { globalT.PrintT() } // Output: // test yaegi-0.16.1/_test/named3/000077500000000000000000000000001460330105400151565ustar00rootroot00000000000000yaegi-0.16.1/_test/named3/named3.go000066400000000000000000000004741460330105400166610ustar00rootroot00000000000000package named3 import ( "fmt" "net/http" ) type T struct { A string } func (t *T) Print() { println(t.A) } type A http.Header func (a A) ForeachKey() error { for k, vals := range a { for _, v := range vals { fmt.Println(k, v) } } return nil } func (a A) Set(k string, v []string) { a[k] = v } yaegi-0.16.1/_test/named4.go000066400000000000000000000006121460330105400155050ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type A http.Header func (a A) Test1() { fmt.Println("test1") } type B A func (b B) Test2() { fmt.Println("test2") } func (b B) Test3() { for k, vals := range b { for _, v := range vals { fmt.Println(k, v) } } } func main() { b := B{} b.Test2() b["test"] = []string{"a", "b"} b.Test3() } // Output: // test2 // test a // test b yaegi-0.16.1/_test/neg0.go000066400000000000000000000001271460330105400151670ustar00rootroot00000000000000package main import "fmt" func main() { a := -1 fmt.Println(a) } // Output: // -1 yaegi-0.16.1/_test/new0.go000066400000000000000000000001231460330105400152030ustar00rootroot00000000000000package main func main() { a := new(int) *a = 3 println(*a) } // Output: // 3 yaegi-0.16.1/_test/new1.go000066400000000000000000000001751460330105400152130ustar00rootroot00000000000000package main import "fmt" func main() { a := [1]*int{} a[0] = new(int) *a[0] = 2 fmt.Println(*a[0]) } // Output: // 2 yaegi-0.16.1/_test/new2.go000066400000000000000000000001721460330105400152110ustar00rootroot00000000000000package main func f() interface{} { return new(int) } func main() { a := f() println(*(a.(*int))) } // Output: // 0 yaegi-0.16.1/_test/nil0.go000066400000000000000000000002561460330105400152030ustar00rootroot00000000000000package main import "fmt" func f() (host, port string, err error) { return "", "", nil } func main() { h, p, err := f() fmt.Println(h, p, err) } // Output: // yaegi-0.16.1/_test/nil1.go000066400000000000000000000002101460330105400151720ustar00rootroot00000000000000package main func main() { var a error = nil if a == nil || a.Error() == "nil" { println("a is nil") } } // Output: // a is nil yaegi-0.16.1/_test/nil2.go000066400000000000000000000002251460330105400152010ustar00rootroot00000000000000package main func test() error { return nil } func main() { if err := test(); nil == err { println("err is nil") } } // Output: // err is nil yaegi-0.16.1/_test/nil3.go000066400000000000000000000004531460330105400152050ustar00rootroot00000000000000package main type I interface { Hello() } type T struct { h I } func (t *T) Hello() { println("Hello") } func main() { t := &T{} println(t.h != nil) println(t.h == nil) t.h = t println(t.h != nil) println(t.h == nil) t.h.Hello() } // Output: // false // true // true // false // Hello yaegi-0.16.1/_test/not0.go000066400000000000000000000002061460330105400152140ustar00rootroot00000000000000package main func main() { a := 0 b := true c := false if b && c { a = 1 } else { a = -1 } println(a) } // Output: // -1 yaegi-0.16.1/_test/not1.go000066400000000000000000000002761460330105400152240ustar00rootroot00000000000000package main func main() { a := 0 b := true if (!b) { a = 1 } else { a = -1 } println(a) } // Output: // -1 yaegi-0.16.1/_test/not2.go000066400000000000000000000001441460330105400152170ustar00rootroot00000000000000package main func main() { var b interface{} = !(1 == 2) println(b.(bool)) } // Output: // true yaegi-0.16.1/_test/num0.go000066400000000000000000000001261460330105400152140ustar00rootroot00000000000000package main import "fmt" func main() { fmt.Printf("%g\n", 1.0) } // Output: // 1 yaegi-0.16.1/_test/op0.go000066400000000000000000000002271460330105400150350ustar00rootroot00000000000000package main import "fmt" func main() { var a, b, c uint16 a = 64 b = 64 c = a * b fmt.Printf("c: %v %T", c, c) } // Output: // c: 4096 uint16 yaegi-0.16.1/_test/op1.go000066400000000000000000000002201460330105400150270ustar00rootroot00000000000000package main func main() { var a int = 3 a += 1.3 println(a) } // Error: // 5:2: invalid operation: mismatched types int and untyped float yaegi-0.16.1/_test/op10.go000066400000000000000000000001121460330105400151070ustar00rootroot00000000000000package main func main() { _ = 1 + 1 println("ok") } // Output: // ok yaegi-0.16.1/_test/op11.go000066400000000000000000000001301460330105400151100ustar00rootroot00000000000000package main func main() { a, b := 1, 2 _ = a + b println("ok") } // Output: // ok yaegi-0.16.1/_test/op2.go000066400000000000000000000006701460330105400150410ustar00rootroot00000000000000package main import "fmt" func main() { a := 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() b := 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() c := 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() d := 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() e := 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() } // Output: // a: 128 int // b: 0 int // c: 4096 int // d: 1 int // e: 0 int yaegi-0.16.1/_test/op3.go000066400000000000000000000002771460330105400150450ustar00rootroot00000000000000package main import "fmt" func main() { a := -1.2 fmt.Printf("a: %v %T\n", a, a) b := -(2 + 1i) fmt.Printf("b: %v %T\n", b, b) } // Output: // a: -1.2 float64 // b: (-2-1i) complex128 yaegi-0.16.1/_test/op4.go000066400000000000000000000001141460330105400150340ustar00rootroot00000000000000package main func main() { i := 102 println(i % -1e2) } // Output: // 2 yaegi-0.16.1/_test/op5.go000066400000000000000000000001661460330105400150440ustar00rootroot00000000000000package main import "fmt" func main() { i := 100 j := i % 1e2 fmt.Printf("%T %v\n", j, j) } // Output: // int 0 yaegi-0.16.1/_test/op6.go000066400000000000000000000002651460330105400150450ustar00rootroot00000000000000package main type T int func (t T) Error() string { return "T: error" } var invalidT T func main() { var err error if err != invalidT { println("ok") } } // Output: // ok yaegi-0.16.1/_test/op7.go000066400000000000000000000003661460330105400150500ustar00rootroot00000000000000package main type T int func (t T) Error() string { return "T: error" } var invalidT T func main() { var err error if err > invalidT { println("ok") } } // Error: // _test/op7.go:11:5: invalid operation: operator > not defined on error yaegi-0.16.1/_test/op8.go000066400000000000000000000003161460330105400150440ustar00rootroot00000000000000package main type I interface { Get() interface{} } type T struct{} func (T) Get() interface{} { return nil } func main() { var i I = T{} var ei interface{} println(i != ei) } // Output: // true yaegi-0.16.1/_test/op9.go000066400000000000000000000002651460330105400150500ustar00rootroot00000000000000package main func main() { var i complex128 = 1i var f complex128 = 0.4i print(i > f) } // Error: // _test/op9.go:7:8: invalid operation: operator > not defined on complex128 yaegi-0.16.1/_test/opfloat32.go000066400000000000000000000012541460330105400161510ustar00rootroot00000000000000package main import "fmt" func main() { var a float32 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b float32 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c float32 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d float32 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() // FIXME expect an error // var e float32 = 64 // e %= 64 // fmt.Printf("e: %v %T", e, e) // fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == d) } // Output: // a: 128 float32 // b: 0 float32 // c: 4096 float32 // d: 1 float32 // true // true // false // false // false yaegi-0.16.1/_test/opfloat64.go000066400000000000000000000012541460330105400161560ustar00rootroot00000000000000package main import "fmt" func main() { var a float64 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b float64 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c float64 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d float64 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() // FIXME expect an error // var e float64 = 64 // e %= 64 // fmt.Printf("e: %v %T", e, e) // fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == d) } // Output: // a: 128 float64 // b: 0 float64 // c: 4096 float64 // d: 1 float64 // true // true // false // false // false yaegi-0.16.1/_test/opint16.go000066400000000000000000000012011460330105400156300ustar00rootroot00000000000000package main import "fmt" func main() { var a int16 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b int16 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c int16 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d int16 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() var e int16 = 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 128 int16 // b: 0 int16 // c: 4096 int16 // d: 1 int16 // e: 0 int16 // true // true // false // false // true yaegi-0.16.1/_test/opint32.go000066400000000000000000000012011460330105400156260ustar00rootroot00000000000000package main import "fmt" func main() { var a int32 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b int32 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c int32 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d int32 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() var e int32 = 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 128 int32 // b: 0 int32 // c: 4096 int32 // d: 1 int32 // e: 0 int32 // true // true // false // false // true yaegi-0.16.1/_test/opint64.go000066400000000000000000000012011460330105400156330ustar00rootroot00000000000000package main import "fmt" func main() { var a int64 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b int64 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c int64 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d int64 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() var e int64 = 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 128 int64 // b: 0 int64 // c: 4096 int64 // d: 1 int64 // e: 0 int64 // true // true // false // false // true yaegi-0.16.1/_test/opint8.go000066400000000000000000000011521460330105400155560ustar00rootroot00000000000000package main import "fmt" func main() { var a int8 = 6 a += 6 fmt.Printf("a: %v %T", a, a) fmt.Println() var b int8 = 6 b -= 6 fmt.Printf("b: %v %T", b, b) fmt.Println() var c int8 = 6 c *= 6 fmt.Printf("c: %v %T", c, c) fmt.Println() var d int8 = 6 d /= 6 fmt.Printf("d: %v %T", d, d) fmt.Println() var e int8 = 6 e %= 6 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 12 int8 // b: 0 int8 // c: 36 int8 // d: 1 int8 // e: 0 int8 // true // true // false // false // true yaegi-0.16.1/_test/opstring.go000066400000000000000000000013441460330105400162050ustar00rootroot00000000000000package main import "fmt" func main() { a := "hhh" a += "fff" fmt.Printf("a: %v %T", a, a) fmt.Println() // b := "hhh" // b -= "fff" // FIXME expect an error // fmt.Printf("b: %v %T", b, b) // fmt.Println() // // c := "hhh" // c *= "fff" // FIXME expect an error // fmt.Printf("c: %v %T", c, c) // fmt.Println() // // d := "hhh" // d /= "fff" // FIXME expect an error // fmt.Printf("d: %v %T", d, d) // fmt.Println() // // e := "hhh" // e %= "fff" // FIXME expect an error // fmt.Printf("e: %v %T", e, e) // fmt.Println() // FIXME panic // fmt.Println(a > "ggg") // fmt.Println(a >= "ggg") // fmt.Println(a < "ggg") // fmt.Println(a <= "ggg") // fmt.Println(a == "hhhfff") } // Output: // a: hhhfff string yaegi-0.16.1/_test/opuint16.go000066400000000000000000000012131460330105400160200ustar00rootroot00000000000000package main import "fmt" func main() { var a uint16 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b uint16 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c uint16 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d uint16 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() var e uint16 = 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 128 uint16 // b: 0 uint16 // c: 4096 uint16 // d: 1 uint16 // e: 0 uint16 // true // true // false // false // true yaegi-0.16.1/_test/opuint32.go000066400000000000000000000012131460330105400160160ustar00rootroot00000000000000package main import "fmt" func main() { var a uint32 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b uint32 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c uint32 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d uint32 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() var e uint32 = 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 128 uint32 // b: 0 uint32 // c: 4096 uint32 // d: 1 uint32 // e: 0 uint32 // true // true // false // false // true yaegi-0.16.1/_test/opuint64.go000066400000000000000000000012131460330105400160230ustar00rootroot00000000000000package main import "fmt" func main() { var a uint64 = 64 a += 64 fmt.Printf("a: %v %T", a, a) fmt.Println() var b uint64 = 64 b -= 64 fmt.Printf("b: %v %T", b, b) fmt.Println() var c uint64 = 64 c *= 64 fmt.Printf("c: %v %T", c, c) fmt.Println() var d uint64 = 64 d /= 64 fmt.Printf("d: %v %T", d, d) fmt.Println() var e uint64 = 64 e %= 64 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 128 uint64 // b: 0 uint64 // c: 4096 uint64 // d: 1 uint64 // e: 0 uint64 // true // true // false // false // true yaegi-0.16.1/_test/opuint8.go000066400000000000000000000011641460330105400157460ustar00rootroot00000000000000package main import "fmt" func main() { var a uint8 = 6 a += 6 fmt.Printf("a: %v %T", a, a) fmt.Println() var b uint8 = 6 b -= 6 fmt.Printf("b: %v %T", b, b) fmt.Println() var c uint8 = 6 c *= 6 fmt.Printf("c: %v %T", c, c) fmt.Println() var d uint8 = 6 d /= 6 fmt.Printf("d: %v %T", d, d) fmt.Println() var e uint8 = 6 e %= 6 fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == e) } // Output: // a: 12 uint8 // b: 0 uint8 // c: 36 uint8 // d: 1 uint8 // e: 0 uint8 // true // true // false // false // true yaegi-0.16.1/_test/or0.go000066400000000000000000000001201460330105400150270ustar00rootroot00000000000000package main func main() { c := false println(c || !c) } // Output: // true yaegi-0.16.1/_test/or1.go000066400000000000000000000001201460330105400150300ustar00rootroot00000000000000package main func main() { c := false println(!c || c) } // Output: // true yaegi-0.16.1/_test/or2.go000066400000000000000000000001251460330105400150360ustar00rootroot00000000000000package main var a = false || true func main() { println(a) } // Output: // true yaegi-0.16.1/_test/os0.go000066400000000000000000000003171460330105400150400ustar00rootroot00000000000000package main import ( "fmt" "os" ) func main() { _, err := os.ReadFile("__NotExisting__") if err != nil { fmt.Println(err.Error()) } } // Output: // open __NotExisting__: no such file or directory yaegi-0.16.1/_test/p1/000077500000000000000000000000001460330105400143275ustar00rootroot00000000000000yaegi-0.16.1/_test/p1/s1.go000066400000000000000000000000711460330105400151770ustar00rootroot00000000000000package p1 import "crypto/rand" var Prime = rand.Prime yaegi-0.16.1/_test/p1/s2.go000066400000000000000000000001271460330105400152020ustar00rootroot00000000000000package p1 import "math/rand" var Uint32 = rand.Uint32 func init() { rand.Seed(1) } yaegi-0.16.1/_test/p2/000077500000000000000000000000001460330105400143305ustar00rootroot00000000000000yaegi-0.16.1/_test/p2/p2.go000066400000000000000000000001171460330105400151770ustar00rootroot00000000000000package p2 type I interface { isI() } type T struct{} func (t *T) isI() {} yaegi-0.16.1/_test/p3/000077500000000000000000000000001460330105400143315ustar00rootroot00000000000000yaegi-0.16.1/_test/p3/empty000066400000000000000000000000001460330105400154000ustar00rootroot00000000000000yaegi-0.16.1/_test/p4/000077500000000000000000000000001460330105400143325ustar00rootroot00000000000000yaegi-0.16.1/_test/p4/p4.go000066400000000000000000000000421460330105400152000ustar00rootroot00000000000000package p4 var Value1 = "value1" yaegi-0.16.1/_test/p5.go000066400000000000000000000001651460330105400146640ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/p5" func main() { println(*p5.Value1) } // Output: // value1 yaegi-0.16.1/_test/p5/000077500000000000000000000000001460330105400143335ustar00rootroot00000000000000yaegi-0.16.1/_test/p5/p5.go000066400000000000000000000001441460330105400152050ustar00rootroot00000000000000package p5 import "github.com/traefik/yaegi/_test/p4" var ( Value1 = &val1 val1 = p4.Value1 ) yaegi-0.16.1/_test/p6.go000066400000000000000000000002641460330105400146650ustar00rootroot00000000000000package main import ( "fmt" "github.com/traefik/yaegi/_test/p6" ) func main() { t := p6.IPPrefixSlice{} fmt.Println(t) b, e := t.MarshalJSON() fmt.Println(string(b), e) } yaegi-0.16.1/_test/p6/000077500000000000000000000000001460330105400143345ustar00rootroot00000000000000yaegi-0.16.1/_test/p6/p6.go000066400000000000000000000005341460330105400152120ustar00rootroot00000000000000package p6 import ( "encoding/json" "net/netip" ) type Slice[T any] struct { x []T } type IPPrefixSlice struct { x Slice[netip.Prefix] } func (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.x) } // MarshalJSON implements json.Marshaler. func (v IPPrefixSlice) MarshalJSON() ([]byte, error) { return v.x.MarshalJSON() } yaegi-0.16.1/_test/panic0.go000066400000000000000000000002071460330105400155070ustar00rootroot00000000000000package main func main() { foo() } func foo() { bar() } func bar() { baz() } func baz() { panic("stop!") } // Error: // stop! yaegi-0.16.1/_test/pkgname0.go000066400000000000000000000004461460330105400160440ustar00rootroot00000000000000package main import ( "guthib.com/bar" // pkg name is actually quux baz "guthib.com/baz" // pkg name is also quux, force it to baz. ) func main() { println("Hello", quux.Quux()) println("Hello", baz.Quux()) } // GOPATH:testdata/redeclaration-global7 // Output: // Hello bar // Hello baz yaegi-0.16.1/_test/pkgname1.go000066400000000000000000000003751460330105400160460ustar00rootroot00000000000000package main import ( "guthib.com/bar" // pkg name is actually quux ) func main() { println("Hello", bar.Quux()) // bar should not be a known symbol. } // GOPATH:testdata/redeclaration-global7 // Error: // ../_test/pkgname1.go:8:19: undefined: bar yaegi-0.16.1/_test/pkgname2.go000066400000000000000000000002731460330105400160440ustar00rootroot00000000000000package main import ( "guthib.com/toto" // pkg name is actually titi ) func main() { println("Hello", titi.Quux()) } // GOPATH:testdata/redeclaration-global7 // Output: // Hello bar yaegi-0.16.1/_test/primes.go000066400000000000000000000004511460330105400156350ustar00rootroot00000000000000package main func Primes(n int) int { var xs []int for i := 2; len(xs) < n; i++ { ok := true for _, x := range xs { if i%x == 0 { ok = false break } } if !ok { continue } xs = append(xs, i) } return xs[n-1] } func main() { println(Primes(3)) } // Output: // 5 yaegi-0.16.1/_test/print0.go000066400000000000000000000001031460330105400155440ustar00rootroot00000000000000package main func main() { print("hello") } // Output: // hello yaegi-0.16.1/_test/ptr0.go000066400000000000000000000001601460330105400152200ustar00rootroot00000000000000package main type myint int func main() { var a myint = 2 var b *myint = &a println(*b) } // Output: // 2 yaegi-0.16.1/_test/ptr1.go000066400000000000000000000001241460330105400152210ustar00rootroot00000000000000package main func main() { var a int = 2 b := &a println(*b) } // Output: // 2 yaegi-0.16.1/_test/ptr2.go000066400000000000000000000001621460330105400152240ustar00rootroot00000000000000package main func f(i *int) { *i = *i + 3 } func main() { var a int = 2 f(&a) println(a) } // Output: // 5 yaegi-0.16.1/_test/ptr3.go000066400000000000000000000001531460330105400152250ustar00rootroot00000000000000package main func f(i *int) { *i++ } func main() { var a int = 2 f(&a) println(a) } // Output: // 3 yaegi-0.16.1/_test/ptr4.go000066400000000000000000000002331460330105400152250ustar00rootroot00000000000000package main type Foo struct { val int } func f(p *Foo) { p.val = p.val + 2 } func main() { var a = Foo{3} f(&a) println(a.val) } // Output: // 5 yaegi-0.16.1/_test/ptr5.go000066400000000000000000000001561460330105400152320ustar00rootroot00000000000000package main type Foo struct { val int } func main() { var a = &Foo{3} println(a.val) } // Output: // 3 yaegi-0.16.1/_test/ptr5a.go000066400000000000000000000001661460330105400153740ustar00rootroot00000000000000package main type Foo struct { val int } func main() { var a = Foo{3} b := &a println(b.val) } // Output: // 3 yaegi-0.16.1/_test/ptr6.go000066400000000000000000000001661460330105400152340ustar00rootroot00000000000000package main type Foo struct { val int } func main() { var a = Foo{3} b := &a println(b.val) } // Output: // 3 yaegi-0.16.1/_test/ptr7.go000066400000000000000000000005201460330105400152270ustar00rootroot00000000000000package main import ( "fmt" "net" "strings" ) type ipNetValue net.IPNet func (ipnet *ipNetValue) Set(value string) error { _, n, err := net.ParseCIDR(strings.TrimSpace(value)) if err != nil { return err } *ipnet = ipNetValue(*n) return nil } func main() { v := ipNetValue{} fmt.Println(v) } // Output: // { } yaegi-0.16.1/_test/ptr8.go000066400000000000000000000001701460330105400152310ustar00rootroot00000000000000package main var a = func() *bool { b := true; return &b }() func main() { println(*a && true) } // Output: // true yaegi-0.16.1/_test/ptr_array0.go000066400000000000000000000002001460330105400164110ustar00rootroot00000000000000package main type T [2]int func F0(t *T) int { return t[0] } func main() { t := &T{1, 2} println(F0(t)) } // Output: // 1 yaegi-0.16.1/_test/ptr_array1.go000066400000000000000000000002441460330105400164220ustar00rootroot00000000000000package main type T [3]int func F0(t *T) { for i, v := range t { println(i, v) } } func main() { t := &T{1, 2, 3} F0(t) } // Output: // 0 1 // 1 2 // 2 3 yaegi-0.16.1/_test/ptr_array2.go000066400000000000000000000002171460330105400164230ustar00rootroot00000000000000package main import "fmt" type T [2]int func F1(t *T) { t[0] = 1 } func main() { t := &T{} F1(t) fmt.Println(t) } // Output: // &[1 0] yaegi-0.16.1/_test/ptr_array3.go000066400000000000000000000001571460330105400164270ustar00rootroot00000000000000package main import "fmt" func main() { a := &[...]int{1, 2, 3} fmt.Println(a[:]) } // Output: // [1 2 3] yaegi-0.16.1/_test/range0.go000066400000000000000000000002301460330105400155050ustar00rootroot00000000000000package main import "fmt" func main() { v := []int{1, 2, 3} for i := range v { v = append(v, i) } fmt.Println(v) } // Output: // [1 2 3 0 1 2] yaegi-0.16.1/_test/range1.go000066400000000000000000000002201460330105400155050ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{2, 1, 0} for _, v := range a { a[v] = v } fmt.Println(a) } // Output: // [0 1 2] yaegi-0.16.1/_test/range2.go000066400000000000000000000002211460330105400155070ustar00rootroot00000000000000package main import "fmt" func main() { a := [...]int{2, 1, 0} for _, v := range &a { a[v] = v } fmt.Println(a) } // Output: // [2 1 2] yaegi-0.16.1/_test/range3.go000066400000000000000000000002461460330105400155170ustar00rootroot00000000000000package main import "fmt" func main() { m := map[int]bool{1: true, 3: true, 5: true} for k := range m { m[k*2] = true } fmt.Println("ok") } // Output: // ok yaegi-0.16.1/_test/range4.go000066400000000000000000000002511460330105400155140ustar00rootroot00000000000000package main import "fmt" func main() { m := map[int]bool{1: true, 3: true, 5: true} for _, v := range m { fmt.Println(v) } } // Output: // true // true // true yaegi-0.16.1/_test/range5.go000066400000000000000000000002361460330105400155200ustar00rootroot00000000000000package main import "fmt" func main() { m := map[int]bool{1: true, 3: true, 5: true} var n int for range m { n++ } fmt.Println(n) } // Output: // 3 yaegi-0.16.1/_test/range6.go000066400000000000000000000003251460330105400155200ustar00rootroot00000000000000package main import ( "fmt" "math" ) func main() { m := map[float64]bool{math.NaN(): true, math.NaN(): true, math.NaN(): true} for _, v := range m { fmt.Println(v) } } // Output: // true // true // true yaegi-0.16.1/_test/range7.go000066400000000000000000000003451460330105400155230ustar00rootroot00000000000000package main import ( "fmt" ) func someChan() <-chan struct{} { c := make(chan struct{}, 1) c <- struct{}{} return c } func main() { for _ = range someChan() { fmt.Println("success") return } } // Output: // successyaegi-0.16.1/_test/range8.go000066400000000000000000000002421460330105400155200ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { for _ = range time.Tick(time.Millisecond) { fmt.Println("success") return } } // Output: // success yaegi-0.16.1/_test/range9.go000066400000000000000000000003001460330105400155140ustar00rootroot00000000000000package main func main() { var c chan<- struct{} = make(chan struct{}) for _ = range c { } } // Error: // _test/range9.go:6:16: invalid operation: range c receive from send-only channel yaegi-0.16.1/_test/real0.go000066400000000000000000000002531460330105400153410ustar00rootroot00000000000000package main import "fmt" func f(c complex128) interface{} { return real(c) } func main() { c := complex(3, 2) a := f(c) fmt.Println(a.(float64)) } // Output: // 3 yaegi-0.16.1/_test/recover0.go000066400000000000000000000003031460330105400160570ustar00rootroot00000000000000package main import "fmt" func main() { println("hello") defer func() { r := recover() fmt.Println("recover:", r) }() println("world") } // Output: // hello // world // recover: yaegi-0.16.1/_test/recover1.go000066400000000000000000000003241460330105400160630ustar00rootroot00000000000000package main import "fmt" func main() { println("hello") defer func() { r := recover() fmt.Println("recover:", r) }() panic("test panic") println("world") } // Output: // hello // recover: test panic yaegi-0.16.1/_test/recover2.go000066400000000000000000000002321460330105400160620ustar00rootroot00000000000000package main func main() { println("hello") var r interface{} = 1 r = recover() if r == nil { println("world") } } // Output: // hello // world yaegi-0.16.1/_test/recover3.go000066400000000000000000000003611460330105400160660ustar00rootroot00000000000000package main import "fmt" func main() { println("hello") var r interface{} = 1 r = recover() fmt.Printf("%v\n", r) if r == nil { println("world") } if r != nil { println("exception") } } // Output: // hello // // world yaegi-0.16.1/_test/recover4.go000066400000000000000000000003731460330105400160720ustar00rootroot00000000000000package main import "fmt" func div(a, b int) (result int) { defer func() { r := recover() fmt.Printf("r = %#v\n", r) if r != nil { result = 0 } }() return a / b } func main() { println(div(30, 2)) } // Output: // r = // 15 yaegi-0.16.1/_test/recurse0.go000066400000000000000000000007771460330105400161010ustar00rootroot00000000000000package main import "fmt" type T struct { a []T b []*T c map[string]T d map[string]*T e chan T f chan *T h *T i func(T) T j func(*T) *T U } type U struct { k []T l []*T m map[string]T n map[string]*T o chan T p chan *T q *T r func(T) T s func(*T) *T } func main() { t := T{} u := U{} fmt.Println(t) fmt.Println(u) } // Output: // {[] [] map[] map[] {[] [] map[] map[] }} // {[] [] map[] map[] } yaegi-0.16.1/_test/recurse1.go000066400000000000000000000002561460330105400160720ustar00rootroot00000000000000package main type F func(a *A) type A struct { Name string F } func main() { a := &A{"Test", func(a *A) { println("in f", a.Name) }} a.F(a) } // Output: // in f Test yaegi-0.16.1/_test/recurse2.go000066400000000000000000000003711460330105400160710ustar00rootroot00000000000000package main type F func(a *A) type A struct { B string D f F } type D struct { *A E *A } func f1(a *A) { println("in f1", a.B) } func main() { a := &A{B: "b", f: f1} a.D = D{E: a} println(a.D.E.B) a.f(a) } // Output: // b // in f1 b yaegi-0.16.1/_test/recurse3.go000066400000000000000000000003341460330105400160710ustar00rootroot00000000000000package main type F func(a *A) type A struct { B string D } type D struct { *A E *A f F } func f1(a *A) { println("in f1", a.B) } func main() { a := &A{B: "b"} a.D = D{f: f1} a.f(a) } // Output: // in f1 b yaegi-0.16.1/_test/redeclaration-global0.go000066400000000000000000000003611460330105400204700ustar00rootroot00000000000000package main type time int var time string func main() { time = "hello" println(time) } // Error: // ../_test/redeclaration-global0.go:5:5: time redeclared in this block // previous declaration at ../_test/redeclaration-global0.go:3:6 yaegi-0.16.1/_test/redeclaration-global1.go000066400000000000000000000002101460330105400204620ustar00rootroot00000000000000package main var time int type time string func main() { var t time = "hello" println(t) } // TODO: expected redeclaration error. yaegi-0.16.1/_test/redeclaration-global2.go000066400000000000000000000003141460330105400204700ustar00rootroot00000000000000package main import ( "time" "time" ) func main() { var t time.Time println(t.String()) } // Error: // ../_test/redeclaration-global2.go:5:2: time/redeclaration-global2.go redeclared in this block yaegi-0.16.1/_test/redeclaration-global3.go000066400000000000000000000002621460330105400204730ustar00rootroot00000000000000package main import ( "time" ) var time string func main() { time = "hello" println(t) } // Error: // ../_test/redeclaration-global3.go:7:5: time redeclared in this block yaegi-0.16.1/_test/redeclaration-global4.go000066400000000000000000000002711460330105400204740ustar00rootroot00000000000000package main import ( "time" ) type time string func main() { var t time = "hello" println(t) } // Error: // ../_test/redeclaration-global4.go:7:6: time redeclared in this block yaegi-0.16.1/_test/redeclaration-global5.go000066400000000000000000000004011460330105400204700ustar00rootroot00000000000000package main var time int func time() string { return "hello" } func main() { t := time() println(t) } // Error: // ../_test/redeclaration-global5.go:5:6: time redeclared in this block // previous declaration at ../_test/redeclaration-global5.go:3:5 yaegi-0.16.1/_test/redeclaration-global6.go000066400000000000000000000003061460330105400204750ustar00rootroot00000000000000package main import ( "time" ) func time() string { return "hello" } func main() { t := time() println(t) } // Error: // ../_test/redeclaration-global6.go:7:1: time redeclared in this block yaegi-0.16.1/_test/redeclaration-global7.go000066400000000000000000000005031460330105400204750ustar00rootroot00000000000000package main import ( "guthib.com/bar" // pkg name is actually quux "guthib.com/baz" // pkg name is also quux ) func main() { println("Hello", quux.Quux()) } // GOPATH:testdata/redeclaration-global7 // Error: // ../_test/redeclaration-global7.go:5:2: quux/redeclaration-global7.go redeclared as imported package name yaegi-0.16.1/_test/redeclaration0.go000066400000000000000000000003541460330105400172340ustar00rootroot00000000000000package main func main() { type foo struct { yolo string } var foo int foo = 2 println(foo) } // Error: // ../_test/redeclaration0.go:8:6: foo redeclared in this block // previous declaration at ../_test/redeclaration0.go:4:7 yaegi-0.16.1/_test/redeclaration1.go000066400000000000000000000002361460330105400172340ustar00rootroot00000000000000package main func main() { var foo string var foo int foo = 2 println(foo) } // Error: // ../_test/redeclaration1.go:6:6: foo redeclared in this block yaegi-0.16.1/_test/redeclaration2.go000066400000000000000000000003531460330105400172350ustar00rootroot00000000000000package main func main() { var foo struct { yolo string } var foo int foo = 2 println(foo) } // Error: // ../_test/redeclaration2.go:8:6: foo redeclared in this block // previous declaration at ../_test/redeclaration2.go:4:6 yaegi-0.16.1/_test/redeclaration3.go000066400000000000000000000002561460330105400172400ustar00rootroot00000000000000package main func main() { var foo int foo = 2 type foo struct{} var bar foo println(bar) } // Error: // ../_test/redeclaration3.go:7:7: foo redeclared in this block yaegi-0.16.1/_test/redeclaration4.go000066400000000000000000000002721460330105400172370ustar00rootroot00000000000000package main func main() { var foo struct{ yolo string } type foo struct{} var bar foo println(bar) } // Error: // ../_test/redeclaration4.go:8:7: foo redeclared in this block yaegi-0.16.1/_test/redeclaration5.go000066400000000000000000000002731460330105400172410ustar00rootroot00000000000000package main func main() { type foo struct{ yolo string } type foo struct{} var bar foo println(bar) } // Error: // ../_test/redeclaration5.go:8:7: foo redeclared in this block yaegi-0.16.1/_test/restricted0.go000066400000000000000000000003511460330105400165650ustar00rootroot00000000000000package main import ( "fmt" "log" ) func main() { defer func() { r := recover() fmt.Println("recover:", r) }() log.Fatal("log.Fatal does not exit") println("not printed") } // Output: // recover: log.Fatal does not exit yaegi-0.16.1/_test/restricted1.go000066400000000000000000000003011460330105400165610ustar00rootroot00000000000000package main import ( "fmt" "os" ) func main() { defer func() { r := recover() fmt.Println("recover:", r) }() os.Exit(1) println("not printed") } // Output: // recover: os.Exit(1) yaegi-0.16.1/_test/restricted2.go000066400000000000000000000002231460330105400165650ustar00rootroot00000000000000package main import ( "fmt" "os" ) func main() { p, err := os.FindProcess(os.Getpid()) fmt.Println(p, err) } // Output: // restricted yaegi-0.16.1/_test/restricted3.go000066400000000000000000000005021460330105400165660ustar00rootroot00000000000000package main import ( "bytes" "fmt" "log" ) var ( buf bytes.Buffer logger = log.New(&buf, "logger: ", log.Lshortfile) ) func main() { defer func() { r := recover() fmt.Println("recover:", r, buf.String()) }() logger.Fatal("test log") } // Output: // recover: test log logger: restricted.go:39: test log yaegi-0.16.1/_test/ret1.go000066400000000000000000000001521460330105400152070ustar00rootroot00000000000000package main func f(i int) (o int) { o = i + 1; return } func main() { println(f(4)) } // Output: // 5 yaegi-0.16.1/_test/ret2.go000066400000000000000000000001641460330105400152130ustar00rootroot00000000000000package main func r2() (int, int) { return 1, 2 } func main() { a, b := r2() println(a, b) } // Output: // 1 2 yaegi-0.16.1/_test/ret3.go000066400000000000000000000001701460330105400152110ustar00rootroot00000000000000package main import "fmt" func r2() (int, int) { return 1, 2 } func main() { fmt.Println(r2()) } // Output: // 1 2 yaegi-0.16.1/_test/ret4.go000066400000000000000000000001401460330105400152070ustar00rootroot00000000000000package main func r() int { return 1 } func main() { a := r() println(a) } // Output: // 1 yaegi-0.16.1/_test/ret5.go000066400000000000000000000001721460330105400152150ustar00rootroot00000000000000package main func r2() (int, int) { return 1, 2 } var a, b int = r2() func main() { println(a, b) } // Output: // 1 2 yaegi-0.16.1/_test/ret6.go000066400000000000000000000002201460330105400152100ustar00rootroot00000000000000package main import "fmt" type Foo struct{} func foo() *Foo { return nil } func main() { f := foo() fmt.Println(f) } // Output: // yaegi-0.16.1/_test/ret7.go000066400000000000000000000001351460330105400152160ustar00rootroot00000000000000package main func one() uint { return 1 } func main() { println(one()) } // Output: // 1 yaegi-0.16.1/_test/ret8.go000066400000000000000000000006661460330105400152300ustar00rootroot00000000000000package main import "fmt" type CustomError string func (s CustomError) Error() string { return string(s) } func NewCustomError(errorText string) CustomError { return CustomError(errorText) } func fail() (err error) { return NewCustomError("Everything is going wrong!") } func main() { fmt.Println(fail()) var myError error myError = NewCustomError("ok") fmt.Println(myError) } // Output: // Everything is going wrong! // ok yaegi-0.16.1/_test/run0.go000066400000000000000000000001661460330105400152250ustar00rootroot00000000000000package main import "fmt" func f() (int, int) { return 2, 3 } func main() { fmt.Println(f()) } // Output: // 2 3 yaegi-0.16.1/_test/run1.go000066400000000000000000000002141460330105400152200ustar00rootroot00000000000000package main func f() (int, int) { return 2, 3 } func g(i, j int) int { return i + j } func main() { println(g(f())) } // Output: // 5 yaegi-0.16.1/_test/run10.go000066400000000000000000000001221460330105400152760ustar00rootroot00000000000000package main func main() { func() { println("hello") }() } // Output: // hello yaegi-0.16.1/_test/run11.go000066400000000000000000000001661460330105400153070ustar00rootroot00000000000000package main import "fmt" func main() { fmt.Println(f()) } func f() (int, int) { return 2, 3 } // Output: // 2 3 yaegi-0.16.1/_test/run12.go000066400000000000000000000002011460330105400152760ustar00rootroot00000000000000package main func f(a int) (int, int) { return a + 1, a + 2 } func main() { a, b := f(3) println(a, b) } // Output: // 4 5 yaegi-0.16.1/_test/run13.go000066400000000000000000000002011460330105400152770ustar00rootroot00000000000000package main func main() { a, b := f(3) println(a, b) } func f(a int) (int, int) { return a + 1, a + 2 } // Output: // 4 5 yaegi-0.16.1/_test/run4.go000066400000000000000000000002311460330105400152220ustar00rootroot00000000000000package main type fn func(int) func f1(i int) { println("f1", i) } func test(f fn, v int) { f(v) } func main() { test(f1, 21) } // Output: // f1 21 yaegi-0.16.1/_test/run5.go000066400000000000000000000002351460330105400152270ustar00rootroot00000000000000package main type fn func(int) func test(f fn, v int) { f(v) } func main() { f1 := func(i int) { println("f1", i) } test(f1, 21) } // Output: // f1 21 yaegi-0.16.1/_test/run6.go000066400000000000000000000002231460330105400152250ustar00rootroot00000000000000package main type fn func(int) func test(f fn, v int) { f(v) } func main() { test(func(i int) { println("f1", i) }, 21) } // Output: // f1 21 yaegi-0.16.1/_test/run7.go000066400000000000000000000002401460330105400152250ustar00rootroot00000000000000package main type fn func(int) func test(f fn, v int) { f(v) } func main() { a := 3 test(func(i int) { println("f1", i, a) }, 21) } // Output: // f1 21 3 yaegi-0.16.1/_test/run8.go000066400000000000000000000001561460330105400152340ustar00rootroot00000000000000package main func main() { a := 3 f := func(i int) { println("f1", i, a) } f(21) } // Output: // f1 21 3 yaegi-0.16.1/_test/run9.go000066400000000000000000000002271460330105400152340ustar00rootroot00000000000000package main func main() { a := 3 f := func(i int) int { println("f1", i, a); return i + 1 } b := f(21) println(b) } // Output: // f1 21 3 // 22 yaegi-0.16.1/_test/rune0.go000066400000000000000000000011421460330105400153650ustar00rootroot00000000000000package main import "fmt" func main() { a := 'r' a += 'g' fmt.Printf("a: %v %T", a, a) fmt.Println() b := 'r' b -= 'g' fmt.Printf("b: %v %T", b, b) fmt.Println() c := 'r' c *= 'g' fmt.Printf("c: %v %T", c, c) fmt.Println() d := 'r' d /= 'g' fmt.Printf("d: %v %T", d, d) fmt.Println() e := 'r' e %= 'g' fmt.Printf("e: %v %T", e, e) fmt.Println() fmt.Println(a > b) fmt.Println(a >= b) fmt.Println(a < b) fmt.Println(a <= b) fmt.Println(b == d) } // Output: // a: 217 int32 // b: 11 int32 // c: 11742 int32 // d: 1 int32 // e: 11 int32 // true // true // false // false // false yaegi-0.16.1/_test/rune1.go000066400000000000000000000001641460330105400153710ustar00rootroot00000000000000package main import "fmt" func main() { t := make([]byte, 2) t[0] = '$' fmt.Println(t) } // Output: // [36 0] yaegi-0.16.1/_test/rune2.go000066400000000000000000000003341460330105400153710ustar00rootroot00000000000000package main import "fmt" const majorVersion = '2' type hashed struct { major byte } func main() { fmt.Println(majorVersion) p := new(hashed) p.major = majorVersion fmt.Println(p) } // Output: // 50 // &{50} yaegi-0.16.1/_test/sample.plugin000066400000000000000000000004601460330105400165100ustar00rootroot00000000000000package sample import ( "fmt" "net/http" ) type Sample struct{} func (s *Sample) ServeHTTP(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) { r.Header.Set("X-sample-test", "Hello") if next != nil { next(w, r) } } func Test() { fmt.Println("Hello from toto.Test()") } yaegi-0.16.1/_test/scope0.go000066400000000000000000000001121460330105400155210ustar00rootroot00000000000000package main var a int = 1 func main() { println(a) } // Output: // 1 yaegi-0.16.1/_test/scope1.go000066400000000000000000000001641460330105400155310ustar00rootroot00000000000000package main func f(a int) int { return 2*a + 1 } var b int = f(3) func main() { println(b) } // Output: // 7 yaegi-0.16.1/_test/scope2.go000066400000000000000000000002061460330105400155270ustar00rootroot00000000000000package main var a int = 1 func f() { println(a) } func main() { println(a) a := 2 println(a) f() } // Output: // 1 // 2 // 1 yaegi-0.16.1/_test/scope3.go000066400000000000000000000001541460330105400155320ustar00rootroot00000000000000package main func main() { a := 1 if a := 2; a > 0 { println(a) } println(a) } // Output: // 2 // 1 yaegi-0.16.1/_test/scope4.go000066400000000000000000000002151460330105400155310ustar00rootroot00000000000000package main func main() { a := 1 if a := 2; a > 0 { println(a) } { a := 3 println(a) } println(a) } // Output: // 2 // 3 // 1 yaegi-0.16.1/_test/scope5.go000066400000000000000000000002051460330105400155310ustar00rootroot00000000000000package main var a int = 1 func f() { println(a) } func main() { println(a) a = 2 println(a) f() } // Output: // 1 // 2 // 2 yaegi-0.16.1/_test/scope6.go000066400000000000000000000002431460330105400155340ustar00rootroot00000000000000package main import "fmt" var a = [3]int{1, 2, 3} func f() { fmt.Println(a) } func main() { fmt.Println(a) a[1] = 5 f() } // Output: // [1 2 3] // [1 5 3] yaegi-0.16.1/_test/scope7.go000066400000000000000000000002471460330105400155410ustar00rootroot00000000000000package main import "fmt" var a = []int{1, 2, 3} func f() { fmt.Println(a) } func main() { fmt.Println(a) a = []int{6, 7} f() } // Output: // [1 2 3] // [6 7] yaegi-0.16.1/_test/secure.gi000066400000000000000000000020761460330105400156230ustar00rootroot00000000000000package main import ( "net/http" "github.com/unrolled/secure" // or "gopkg.in/unrolled/secure.v1" ) var myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("hello world")) }) func main() { secureMiddleware := secure.New(secure.Options{ AllowedHosts: []string{"example.com", "ssl.example.com"}, HostsProxyHeaders: []string{"X-Forwarded-Host"}, SSLRedirect: true, SSLHost: "ssl.example.com", SSLProxyHeaders: map[string]string{"X-Forwarded-Proto": "https"}, STSSeconds: 315360000, STSIncludeSubdomains: true, STSPreload: true, FrameDeny: true, ContentTypeNosniff: true, BrowserXssFilter: true, ContentSecurityPolicy: "script-src $NONCE", PublicKey: `pin-sha256="base64+primary=="; pin-sha256="base64+backup=="; max-age=5184000; includeSubdomains; report-uri="https://www.example.com/hpkp-report"`, IsDevelopment: false, }) app := secureMiddleware.Handler(myHandler) http.ListenAndServe("127.0.0.1:3000", app) } yaegi-0.16.1/_test/select.go000066400000000000000000000007201460330105400156140ustar00rootroot00000000000000package main import "time" import "fmt" func main() { c1 := make(chan string) c2 := make(chan string) go func() { time.Sleep(1e9) c1 <- "one" }() go func() { time.Sleep(2e9) c2 <- "two" }() for i := 0; i < 2; i++ { fmt.Println("start for") select { case msg1 := <-c1: fmt.Println("received", msg1) fmt.Println("finish 1") case msg2 := <-c2: fmt.Println("received #2", msg2) } fmt.Println("end for") } fmt.Println("Bye") } yaegi-0.16.1/_test/select0.go000066400000000000000000000002571460330105400157010ustar00rootroot00000000000000package main import "time" func forever() { select {} // block forever println("end") } func main() { go forever() time.Sleep(1e4) println("bye") } // Output: // bye yaegi-0.16.1/_test/select1.go000066400000000000000000000011161460330105400156750ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { c1 := make(chan string) c2 := make(chan string) go func() { time.Sleep(1e8) c1 <- "one" }() go func() { time.Sleep(2e8) c2 <- "two" }() for i := 0; i < 2; i++ { fmt.Println("start for") select { case msg1 := <-c1: fmt.Println("received", msg1) fmt.Println("finish 1") case msg2, ok := <-c2: fmt.Println("received #2", msg2, ok) } fmt.Println("end for") } fmt.Println("Bye") } // Output: // start for // received one // finish 1 // end for // start for // received #2 two true // end for // Bye yaegi-0.16.1/_test/select10.go000066400000000000000000000002231460330105400157530ustar00rootroot00000000000000package main func main() { c := make(chan string) select { case <-c: println("unexpected") default: } println("bye") } // Output: // bye yaegi-0.16.1/_test/select11.go000066400000000000000000000003051460330105400157550ustar00rootroot00000000000000package main func main() { c := make(chan string) select { case <-c: println("unexpected") default: println("nothing received") } println("bye") } // Output: // nothing received // bye yaegi-0.16.1/_test/select12.go000066400000000000000000000004141460330105400157570ustar00rootroot00000000000000package main type S struct { q chan struct{} } func (s *S) Send() { select { case s.q <- struct{}{}: println("sent") default: println("unexpected") } } func main() { s := &S{q: make(chan struct{}, 1)} s.Send() println("bye") } // Output: // sent // bye yaegi-0.16.1/_test/select13.go000066400000000000000000000003171460330105400157620ustar00rootroot00000000000000package main func main() { var c interface{} = int64(1) q := make(chan struct{}) select { case q <- struct{}{}: println("unexpected") default: _ = c.(int64) } println("bye") } // Output: // bye yaegi-0.16.1/_test/select14.go000066400000000000000000000011031460330105400157550ustar00rootroot00000000000000package main import ( "fmt" "time" ) const ( period = 300 * time.Millisecond precision = 30 * time.Millisecond ) func main() { counter := 0 p := time.Now() ticker := time.NewTicker(period) ch := make(chan int) go func() { for i := 0; i < 3; i++ { select { case t := <-ticker.C: counter = counter + 1 ch <- counter if d := t.Sub(p) - period; d < -precision || d > precision { fmt.Println("wrong delay", d) } p = t } } ch <- 0 }() for c := range ch { if c == 0 { break } println(c) } } // Output: // 1 // 2 // 3 yaegi-0.16.1/_test/select15.go000066400000000000000000000004351460330105400157650ustar00rootroot00000000000000package main type T struct { c1 chan string c2 chan string } func main() { t := &T{} t.c2 = make(chan string) go func(c chan string) { c <- "done" }(t.c2) select { case msg := <-t.c1: println("received from c1:", msg) case <-t.c2: } println("Bye") } // Output: // Bye yaegi-0.16.1/_test/select2.go000066400000000000000000000007301460330105400156770ustar00rootroot00000000000000package main import ( "fmt" ) func main() { c1 := make(chan string) c2 := make(chan string) a := 0 go func() { toSend := "hello" select { case c2 <- toSend: a++ } c1 <- "done" }() for i := 0; i < 2; i++ { select { case msg1 := <-c1: fmt.Println("received from c1:", msg1) case msg2 := <-c2: fmt.Println("received from c2:", msg2) } } fmt.Println("Bye", a) } // Output: // received from c2: hello // received from c1: done // Bye 1 yaegi-0.16.1/_test/select3.go000066400000000000000000000001701460330105400156760ustar00rootroot00000000000000package main func main() { select { default: println("no comm") } println("bye") } // Output: // no comm // bye yaegi-0.16.1/_test/select4.go000066400000000000000000000003321460330105400156770ustar00rootroot00000000000000package main func main() { c1 := make(chan string) go func() { c1 <- "done" }() select { case msg1 := <-c1: println("received from c1:", msg1) } println("Bye") } // Output: // received from c1: done // Bye yaegi-0.16.1/_test/select5.go000066400000000000000000000004331460330105400157020ustar00rootroot00000000000000package main type T struct { c1 chan string } func main() { t := &T{} t.c1 = make(chan string) go func(c chan string) { c <- "done" }(t.c1) select { case msg1 := <-t.c1: println("received from c1:", msg1) } println("Bye") } // Output: // received from c1: done // Bye yaegi-0.16.1/_test/select6.go000066400000000000000000000004061460330105400157030ustar00rootroot00000000000000package main type T struct { c1 chan string } func main() { t := &T{} t.c1 = make(chan string) go func(c chan string) { c <- "done" }(t.c1) select { case <-t.c1: println("received from c1") } println("Bye") } // Output: // received from c1 // Bye yaegi-0.16.1/_test/select7.go000066400000000000000000000004111460330105400157000ustar00rootroot00000000000000package main type T struct { c1 chan string } func main() { t := &T{} t.c1 = make(chan string) a := 0 go func() { select { case t.c1 <- "done": a++ } }() msg1 := <-t.c1 println("received from c1:", msg1) } // Output: // received from c1: done yaegi-0.16.1/_test/select8.go000066400000000000000000000004671460330105400157140ustar00rootroot00000000000000package main type T struct { c1 chan string c2 chan string } func main() { t := &T{} t.c1 = make(chan string) go func(c chan string) { c <- "done" }(t.c1) select { case msg := <-t.c1: println("received from c1:", msg) case <-t.c2: } println("Bye") } // Output: // received from c1: done // Bye yaegi-0.16.1/_test/select9.go000066400000000000000000000003721460330105400157100ustar00rootroot00000000000000package main type T struct { c1 chan string } func main() { t := &T{} t.c1 = make(chan string) go func() { select { case t.c1 <- "done": } }() msg1 := <-t.c1 println("received from c1:", msg1) } // Output: // received from c1: done yaegi-0.16.1/_test/selector-scope0.go000066400000000000000000000005261460330105400173500ustar00rootroot00000000000000package main import ( "fmt" "time" ) func test(time string, t time.Time) string { return time } var zero = time.Time{} func test2(time string) time.Time { return zero } func main() { str := test("test", time.Now()) fmt.Println(str) str2 := test2("test2") fmt.Println(str2) } // Output: // test // 0001-01-01 00:00:00 +0000 UTC yaegi-0.16.1/_test/server.go000066400000000000000000000004011460330105400156370ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) var v string = "v1.0" func main() { a := "hello " http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Welcome to my website! ", a, v) }) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server0.go000066400000000000000000000003771460330105400157330ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) var v string = "v1.0" func myHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "Welcome to my website!") } func main() { http.HandleFunc("/", myHandler) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server1.go000066400000000000000000000005451460330105400157310ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) var version string = "1.0" type Middleware struct { Name string } func (m *Middleware) Handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "Welcome to my website", m.Name, version) } func main() { m := &Middleware{"Test"} http.HandleFunc("/", m.Handler) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server1a.go000066400000000000000000000006761460330105400160770ustar00rootroot00000000000000package main import ( "fmt" "log" "net/http" ) var v string = "v1.0" type Middleware struct { Name string } func (m *Middleware) Handler(w http.ResponseWriter, r *http.Request) { log.Println(r.Header.Get("User-Agent")) w.Header().Set("test", "ok") log.Println(w.Header()) fmt.Fprintln(w, "Welcome to my website", m.Name) } func main() { m := &Middleware{"Test"} http.HandleFunc("/", m.Handler) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server2.go000066400000000000000000000004061460330105400157260ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) var v string = "v1.0" func main() { myHandler := func(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "Welcome to my website!") } http.HandleFunc("/", myHandler) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server3.go000066400000000000000000000003551460330105400157320ustar00rootroot00000000000000package main import ( "net/http" ) var myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("hello world")) }) func main() { http.HandleFunc("/", myHandler) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server4.go000066400000000000000000000003171460330105400157310ustar00rootroot00000000000000package main import ( "net/http" ) func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Welcome to my website!")) }) http.ListenAndServe(":8080", nil) } yaegi-0.16.1/_test/server5.go000066400000000000000000000003231460330105400157270ustar00rootroot00000000000000package main import ( "net/http" ) var myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("hello world")) }) func main() { http.ListenAndServe(":8080", myHandler) } yaegi-0.16.1/_test/server6.go000066400000000000000000000007741460330105400157420ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) var myHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { w.Write([]byte("hello world")) }) type T1 struct { Name string } func (t *T1) Handler(h http.Handler) http.Handler { fmt.Println("#1", t.Name) return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { fmt.Println("#2", t.Name) h.ServeHTTP(w, r) }) } func main() { t := &T1{"myName"} handler := t.Handler(myHandler) http.ListenAndServe(":8080", handler) } yaegi-0.16.1/_test/server7.go000066400000000000000000000005001460330105400157260ustar00rootroot00000000000000package main import ( "net/http" ) func main() { http.DefaultServeMux.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {}) http.DefaultServeMux = &http.ServeMux{} http.DefaultServeMux.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {}) http.DefaultServeMux = &http.ServeMux{} } yaegi-0.16.1/_test/shift0.go000066400000000000000000000001741460330105400155350ustar00rootroot00000000000000package main func main() { var rounds uint64 var cost uint32 = 2 rounds = 1 << cost println(rounds) } // Output: // 4 yaegi-0.16.1/_test/shift1.go000066400000000000000000000001711460330105400155330ustar00rootroot00000000000000package main import "fmt" const a1 = 0x7f8 >> 3 func main() { fmt.Printf("%T %v\n", a1, a1) } // Output: // int 255 yaegi-0.16.1/_test/shift2.go000066400000000000000000000001341460330105400155330ustar00rootroot00000000000000package main func main() { var u uint64 var v uint32 println(u << v) } // Output: // 0 yaegi-0.16.1/_test/shift3.go000066400000000000000000000001411460330105400155320ustar00rootroot00000000000000package main const a = 1.0 const b = a + 3 func main() { println(b << (1)) } // Output: // 8 yaegi-0.16.1/_test/sieve.go000066400000000000000000000014551460330105400154560ustar00rootroot00000000000000// A concurrent prime sieve package main // Send the sequence 2, 3, 4, ... to channel 'ch'. func Generate(ch chan<- int) { for i := 2; ; i++ { ch <- i // Send 'i' to channel 'ch'. } } // Copy the values from channel 'in' to channel 'out', // removing those divisible by 'prime'. func Filter(in <-chan int, out chan<- int, prime int) { for { i := <-in // Receive value from 'in'. if i%prime != 0 { out <- i // Send 'i' to 'out'. } } } // The prime sieve: Daisy-chain Filter processes. func main() { ch := make(chan int) // Create a new channel. go Generate(ch) // Launch Generate goroutine. for i := 0; i < 10; i++ { prime := <-ch println(prime) ch1 := make(chan int) go Filter(ch, ch1, prime) ch = ch1 } } // Output: // 2 // 3 // 5 // 7 // 11 // 13 // 17 // 19 // 23 // 29 yaegi-0.16.1/_test/slice.go000066400000000000000000000001761460330105400154410ustar00rootroot00000000000000package main import "fmt" func main() { a := [2][2]int{{0, 1}, {2, 3}} fmt.Println(a[0][0:]) } // Output: // [0 1] yaegi-0.16.1/_test/str.go000066400000000000000000000001211460330105400151400ustar00rootroot00000000000000package main func main() { println("hello world") } // Output: // hello world yaegi-0.16.1/_test/str0.go000066400000000000000000000003041460330105400152230ustar00rootroot00000000000000package main import "fmt" const itoa64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" func main() { fmt.Printf("%v %T\n", itoa64[2], itoa64[2]) } // Output: // 48 uint8 yaegi-0.16.1/_test/str1.go000066400000000000000000000003031460330105400152230ustar00rootroot00000000000000package main const itoa64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" func main() { for i, r := range itoa64 { if r == '1' { println(i) } } } // Output: // 3 yaegi-0.16.1/_test/str2.go000066400000000000000000000002551460330105400152320ustar00rootroot00000000000000package main const itoa64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" func main() { if itoa64[3] == '1' { println("ok") } } // Output: // ok yaegi-0.16.1/_test/str3.go000066400000000000000000000001661460330105400152340ustar00rootroot00000000000000package main import "strconv" func main() { str := strconv.Itoa(101) println(str[0] == '1') } // Output: // true yaegi-0.16.1/_test/str4.go000066400000000000000000000002171460330105400152320ustar00rootroot00000000000000package main import "unicode/utf8" func main() { r, _ := utf8.DecodeRuneInString("Hello") println(r < utf8.RuneSelf) } // Output: // true yaegi-0.16.1/_test/struct.go000066400000000000000000000001631460330105400156620ustar00rootroot00000000000000package main type T struct { f int g int } func main() { a := T{7, 8} println(a.f, a.g) } // Output: // 7 8 yaegi-0.16.1/_test/struct0.go000066400000000000000000000001571460330105400157450ustar00rootroot00000000000000package main type T struct { f int g int } func main() { a := T{} println(a.f, a.g) } // Output: // 0 0 yaegi-0.16.1/_test/struct0a.go000066400000000000000000000001751460330105400161060ustar00rootroot00000000000000package main type T struct { f int } func main() { a := T{} println(a.f) a.f = 8 println(a.f) } // Output: // 0 // 8 yaegi-0.16.1/_test/struct1.go000066400000000000000000000002301460330105400157360ustar00rootroot00000000000000package main type T struct { f int g struct { h int } } func main() { a := T{} a.g.h = 3 + 2 println("a.g.h", a.g.h) } // Output: // a.g.h 5 yaegi-0.16.1/_test/struct10.go000066400000000000000000000001651460330105400160250ustar00rootroot00000000000000package main type T struct { f int g int64 } func main() { a := T{g: 8} println(a.f, a.g) } // Output: // 0 8 yaegi-0.16.1/_test/struct11.go000066400000000000000000000003471460330105400160300ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type Fromage struct { http.ResponseWriter } func main() { a := Fromage{} if a.ResponseWriter == nil { fmt.Println("nil") } else { fmt.Println("not nil") } } // Output: // nil yaegi-0.16.1/_test/struct12.go000066400000000000000000000002201460330105400160170ustar00rootroot00000000000000package main import "fmt" type S1 struct { Name string } type S2 struct { *S1 } func main() { fmt.Println(S2{}) } // Output: // {} yaegi-0.16.1/_test/struct13.go000066400000000000000000000002511460330105400160240ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type Fromage struct { http.Server } func main() { a := Fromage{} fmt.Println(a.Server.WriteTimeout) } // Output: // 0s yaegi-0.16.1/_test/struct14.go000066400000000000000000000002401460330105400160230ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type Fromage struct { *http.Server } func main() { a := Fromage{} fmt.Println(a.Server) } // Output: // yaegi-0.16.1/_test/struct15.go000066400000000000000000000005721460330105400160340ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type GzipResponseWriter struct { http.ResponseWriter index int } type GzipResponseWriterWithCloseNotify struct { *GzipResponseWriter } func (w GzipResponseWriterWithCloseNotify) CloseNotify() <-chan bool { return w.ResponseWriter.(http.CloseNotifier).CloseNotify() } func main() { fmt.Println("hello") } // Output: // hello yaegi-0.16.1/_test/struct16.go000066400000000000000000000002351460330105400160310ustar00rootroot00000000000000package main type S1 struct { Name string } type S2 struct { *S1 } func main() { s1 := S1{"foo"} s2 := S2{&s1} println(s2.Name) } // Output: // foo yaegi-0.16.1/_test/struct17.go000066400000000000000000000002351460330105400160320ustar00rootroot00000000000000package main type S1 struct { Name string } type S2 struct { *S1 } func main() { s1 := &S1{"foo"} s2 := S2{s1} println(s2.Name) } // Output: // foo yaegi-0.16.1/_test/struct18.go000066400000000000000000000003551460330105400160360ustar00rootroot00000000000000package main import ( "fmt" "net/http" ) type AuthenticatedRequest struct { http.Request Username string } func main() { a := &AuthenticatedRequest{} fmt.Printf("%v %T\n", a.Header, a.Header) } // Output: // map[] http.Header yaegi-0.16.1/_test/struct19.go000066400000000000000000000007751460330105400160450ustar00rootroot00000000000000package main import "fmt" type Config struct { Users `json:"users,omitempty" mapstructure:","` UsersFile string `json:"usersFile,omitempty"` Realm string `json:"realm,omitempty"` RemoveHeader bool `json:"removeHeader,omitempty"` HeaderField string `json:"headerField,omitempty" export:"true"` } // Users holds a list of users type Users []string func CreateConfig() *Config { return &Config{} } func main() { c := CreateConfig() fmt.Println(c) } // Output: // &{[] false } yaegi-0.16.1/_test/struct2.go000066400000000000000000000001711460330105400157430ustar00rootroot00000000000000package main type T struct { f int g int } func main() { a := T{g: 8, f: 7} println(a.f, a.g) } // Output: // 7 8 yaegi-0.16.1/_test/struct20.go000066400000000000000000000006121460330105400160230ustar00rootroot00000000000000package main type SecretProvider func(user, realm string) string type BasicAuth struct { Realm string Secrets SecretProvider } func (a *BasicAuth) CheckAuth() string { return a.Secrets("me", a.Realm) } func secretBasic(user, realm string) string { return user + "-" + realm } func main() { b := &BasicAuth{"test", secretBasic} s := b.CheckAuth() println(s) } // Output: // me-test yaegi-0.16.1/_test/struct21.go000066400000000000000000000007031460330105400160250ustar00rootroot00000000000000package main type SecretProvider func(user, realm string) string type BasicAuth struct { Realm string Secrets SecretProvider } func (a *BasicAuth) CheckAuth() string { return a.Secrets("me", a.Realm) } func (a *BasicAuth) secretBasic(user, realm string) string { return a.Realm + "-" + user + "-" + realm } func main() { b := &BasicAuth{Realm: "test"} b.Secrets = b.secretBasic s := b.CheckAuth() println(s) } // Output: // test-me-test yaegi-0.16.1/_test/struct22.go000066400000000000000000000002511460330105400160240ustar00rootroot00000000000000package main type S struct { Child *S Name string } func main() { s := &S{Name: "root"} s.Child = &S{Name: "child"} println(s.Child.Name) } // Output: // child yaegi-0.16.1/_test/struct23.go000066400000000000000000000007321460330105400160310ustar00rootroot00000000000000package main import ( "encoding/json" "os" ) type S struct { Name string Child []*S } func main() { a := S{Name: "hello"} a.Child = append(a.Child, &S{Name: "world"}) json.NewEncoder(os.Stdout).Encode(a) a.Child[0].Child = append([]*S{}, &S{Name: "sunshine"}) json.NewEncoder(os.Stdout).Encode(a) } // Output: // {"Name":"hello","Child":[{"Name":"world","Child":null}]} // {"Name":"hello","Child":[{"Name":"world","Child":[{"Name":"sunshine","Child":null}]}]} yaegi-0.16.1/_test/struct24.go000066400000000000000000000001441460330105400160270ustar00rootroot00000000000000package main var a = &T{} type T struct{} func main() { println(a != nil) } // Output: // true yaegi-0.16.1/_test/struct25.go000066400000000000000000000001541460330105400160310ustar00rootroot00000000000000package main import "fmt" var a = T{} type T struct{} func main() { fmt.Println(a) } // Output: // {} yaegi-0.16.1/_test/struct26.go000066400000000000000000000002631460330105400160330ustar00rootroot00000000000000package main import "fmt" func newT2() *T2 { return &T2{} } type T2 struct { T1 } type T1 struct { bs []byte } func main() { fmt.Println(newT2()) } // Output: // &{{[]}} yaegi-0.16.1/_test/struct27.go000066400000000000000000000003151460330105400160320ustar00rootroot00000000000000package main import "fmt" func (f *Foo) Boo() { fmt.Println(f.name, "Boo") } type Foo struct { name string fun func(f *Foo) } func main() { t := &Foo{name: "foo"} t.Boo() } // Output: // foo Boo yaegi-0.16.1/_test/struct28.go000066400000000000000000000002211460330105400160270ustar00rootroot00000000000000package main import "fmt" type T1 struct { T2 } type T2 struct { *T1 } func main() { t := T1{} fmt.Println(t) } // Output: // {{}} yaegi-0.16.1/_test/struct29.go000066400000000000000000000002221460330105400160310ustar00rootroot00000000000000package main type T1 struct { A []T2 B []T2 } type T2 struct { name string } var t = T1{} func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct3.go000066400000000000000000000002631460330105400157460ustar00rootroot00000000000000package main type T struct { f int g int h struct { k int } } func f(i int) int { return i + 3 } func main() { a := T{} a.h.k = f(4) println(a.h.k) } // Output: // 7 yaegi-0.16.1/_test/struct30.go000066400000000000000000000002331460330105400160230ustar00rootroot00000000000000package main type T1 struct { A []T2 M map[uint64]T2 } type T2 struct { name string } var t = T1{} func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct31.go000066400000000000000000000001651460330105400160300ustar00rootroot00000000000000package main type T struct { bool } var t = T{true} func main() { println(t.bool && true) } // Output: // true yaegi-0.16.1/_test/struct32.go000066400000000000000000000007261460330105400160340ustar00rootroot00000000000000package main type T0 struct { name string } type lookupFunc func(s string) T0 type T1 struct { name string info lookupFunc } func (t T0) F1() bool { println("in F1"); return true } type T2 struct { t1 T1 } func (t2 *T2) f() { info := t2.t1.info("foo") println(info.F1()) } var t0 = T0{"t0"} func main() { t := &T2{T1{ "bar", func(s string) T0 { return t0 }, }} println("hello") println(t.t1.info("foo").F1()) } // Output: // hello // in F1 // true yaegi-0.16.1/_test/struct33.go000066400000000000000000000006511460330105400160320ustar00rootroot00000000000000package main type T0 struct { name string } type lookupFunc func(s string) T0 type T1 struct { name string info lookupFunc } func (t T0) F1() bool { println("in F1"); return true } var t0 = T0{"t0"} func look(s string) T0 { println("in look"); return t0 } var table = []*T1{{ name: "bar", info: look, }, } func main() { info := table[0].info println(info("foo").F1()) } // Output: // in look // in F1 // true yaegi-0.16.1/_test/struct34.go000066400000000000000000000002261460330105400160310ustar00rootroot00000000000000package main type T struct { f func(*T) } func f1(t *T) { t.f = f2 } func f2(t *T) { t.f = f1 } func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct35.go000066400000000000000000000002241460330105400160300ustar00rootroot00000000000000package main type T struct { f func(*T) } func f1(t *T) { t.f = f1 } func main() { t := &T{} f1(t) println(t.f != nil) } // Output: // true yaegi-0.16.1/_test/struct36.go000066400000000000000000000003721460330105400160350ustar00rootroot00000000000000package main import ( "net/http" "strings" ) type S struct { http.Client } func main() { var s S if _, err := s.Get("url"); err != nil { println(strings.Contains(err.Error(), "unsupported protocol scheme")) } return } // Output: // true yaegi-0.16.1/_test/struct37.go000066400000000000000000000004251460330105400160350ustar00rootroot00000000000000package main import ( "net/http" "strings" ) type MyHttpClient struct { *http.Client } func main() { c := new(MyHttpClient) c.Client = new(http.Client) _, err := c.Get("url") println(strings.Contains(err.Error(), "unsupported protocol scheme")) } // Output: // true yaegi-0.16.1/_test/struct38.go000066400000000000000000000002701460330105400160340ustar00rootroot00000000000000package main type T struct { f func(t *T1) y *xxx } type T1 struct { T } type xxx struct{} var ( x1 *T1 = x x = &T1{} ) func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct39.go000066400000000000000000000002471460330105400160410ustar00rootroot00000000000000package main type T struct { t *T1 y *xxx } type T1 struct { T } var x = &T1{} var t = &T{} type xxx struct{} func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct4.go000066400000000000000000000003651460330105400157520ustar00rootroot00000000000000package main type T3 struct { k int } type T2 struct { h int T3 } type T struct { f int g int T2 } func f(i int) int { return i * i } func main() { a := T{5, 7, T2{f(8), T3{9}}} println(a.f, a.g, a.h, a.k) } // Output: // 5 7 64 9 yaegi-0.16.1/_test/struct40.go000066400000000000000000000002741460330105400160310ustar00rootroot00000000000000package main type T struct { t *T1 y *xxx } type T1 struct { T } func f(t *T) { println("in f") } var x = &T1{} type xxx struct{} func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct41.go000066400000000000000000000003351460330105400160300ustar00rootroot00000000000000package main type Ti func(*T) type T1 struct { t Ti } type T struct { t Ti y *xxx } func f(t *T) { println("in f") } type xxx struct{} var x = &T1{t: f} func main() { x.t = f println("ok") } // Output: // ok yaegi-0.16.1/_test/struct42.go000066400000000000000000000002551460330105400160320ustar00rootroot00000000000000package main type T struct { t func(*T) y *xxx } func f(t *T) { println("in f") } var x = &T{t: f} type xxx struct{} func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct43.go000066400000000000000000000002571460330105400160350ustar00rootroot00000000000000package main type T struct { t func(*T) y *xxx } func f(t *T) { println("in f") } type xxx struct{} func main() { x := &T{} x.t = f println("ok") } // Output: // ok yaegi-0.16.1/_test/struct44.go000066400000000000000000000004021460330105400160260ustar00rootroot00000000000000package main type Ti func(*T) X type T1 struct { t Ti } type T struct { t Ti y *xxx } func f(t *T) X { println("in f"); return X{} } type X struct{ Name string } type xxx struct{} var x = &T1{t: f} func main() { println("ok") } // Output: // ok yaegi-0.16.1/_test/struct45.go000066400000000000000000000002121460330105400160260ustar00rootroot00000000000000package main type T struct { b bool } type T1 struct { T } func main() { t := &T1{} t.b = true println(t.b) } // Output: // true yaegi-0.16.1/_test/struct46.go000066400000000000000000000002641460330105400160360ustar00rootroot00000000000000package main import "fmt" type A struct { B string C D } type D struct { F *A E *A } func main() { a := &A{B: "b"} a.C = D{E: a} fmt.Println(a.C.E.B) } // Output: // b yaegi-0.16.1/_test/struct47.go000066400000000000000000000003541460330105400160370ustar00rootroot00000000000000package main import "fmt" type A struct { B string C D } func (a *A) Test() string { return "test" } type D struct { E *A } func main() { a := &A{B: "b"} d := D{E: a} a.C = d fmt.Println(a.C.E.Test()) } // Output: // test yaegi-0.16.1/_test/struct48.go000066400000000000000000000005661460330105400160450ustar00rootroot00000000000000package main type List struct { Next *List Num int } func add(l *List, n int) *List { if l == nil { return &List{Num: n} } l.Next = add(l.Next, n) return l } func pr(l *List) { if l == nil { println("") return } print(l.Num) pr(l.Next) } func main() { a := add(nil, 0) pr(a) a = add(a, 1) pr(a) a = add(a, 2) pr(a) } // Output: // 0 // 01 // 012 yaegi-0.16.1/_test/struct49.go000066400000000000000000000006761460330105400160500ustar00rootroot00000000000000package main type S struct { ts map[string][]*T } type T struct { s *S } func (c *S) getT(addr string) (t *T, ok bool) { cns, ok := c.ts[addr] if !ok || len(cns) == 0 { return nil, false } t = cns[len(cns)-1] c.ts[addr] = cns[:len(cns)-1] return t, true } func main() { s := &S{ ts: map[string][]*T{}, } s.ts["test"] = append(s.ts["test"], &T{s: s}) t, ok := s.getT("test") println(t != nil, ok) } // Output: // true true yaegi-0.16.1/_test/struct5.go000066400000000000000000000002331460330105400157450ustar00rootroot00000000000000package main type T struct { f int g int } func f(i int) int { return i * i } func main() { a := T{7, f(4)} println(a.f, a.g) } // Output: // 7 16 yaegi-0.16.1/_test/struct50.go000066400000000000000000000005171460330105400160320ustar00rootroot00000000000000package main import "fmt" type Node struct { Name string Child []Node } func main() { a := Node{Name: "hello"} a.Child = append([]Node{}, Node{Name: "world"}) fmt.Println(a) a.Child[0].Child = append([]Node{}, Node{Name: "sunshine"}) fmt.Println(a) } // Output: // {hello [{world []}]} // {hello [{world [{sunshine []}]}]} yaegi-0.16.1/_test/struct51.go000066400000000000000000000007541460330105400160360ustar00rootroot00000000000000package main import ( "encoding/json" "os" ) type Node struct { Name string Child [2]*Node } func main() { a := Node{Name: "hello"} a.Child[0] = &Node{Name: "world"} json.NewEncoder(os.Stdout).Encode(a) a.Child[0].Child[0] = &Node{Name: "sunshine"} json.NewEncoder(os.Stdout).Encode(a) } // Output: // {"Name":"hello","Child":[{"Name":"world","Child":[null,null]},null]} // {"Name":"hello","Child":[{"Name":"world","Child":[{"Name":"sunshine","Child":[null,null]},null]},null]} yaegi-0.16.1/_test/struct52.go000066400000000000000000000006431460330105400160340ustar00rootroot00000000000000package main import "fmt" type Node struct { Name string Child map[string]Node } func main() { a := Node{Name: "hello", Child: map[string]Node{}} a.Child["1"] = Node{Name: "world", Child: map[string]Node{}} fmt.Println(a) a.Child["1"].Child["1"] = Node{Name: "sunshine", Child: map[string]Node{}} fmt.Println(a) } // Output: // {hello map[1:{world map[]}]} // {hello map[1:{world map[1:{sunshine map[]}]}]} yaegi-0.16.1/_test/struct53.go000066400000000000000000000002541460330105400160330ustar00rootroot00000000000000package main import "fmt" type T1 struct { P []*T } type T2 struct { P2 *T } type T struct { *T1 S1 *T } func main() { fmt.Println(T2{}) } // Output: // {} yaegi-0.16.1/_test/struct54.go000066400000000000000000000003311460330105400160300ustar00rootroot00000000000000package main type S struct { t *T } func newS() *S { return &S{ t: &T{u: map[string]*U{}}, } } type T struct { u map[string]*U } type U struct { a int } func main() { s := newS() _ = s println("ok") } yaegi-0.16.1/_test/struct55.go000066400000000000000000000004751460330105400160420ustar00rootroot00000000000000package main import ( "log" "os" ) type Logger struct { m []*log.Logger } func (l *Logger) Infof(format string, args ...interface{}) { l.m[0].Printf(format, args...) } func main() { l := &Logger{m: []*log.Logger{log.New(os.Stdout, "", log.Lmsgprefix)}} l.Infof("test %s", "test") } // Output: // test test yaegi-0.16.1/_test/struct56.go000066400000000000000000000003531460330105400160360ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" ) type A struct { IA InnerA } type InnerA struct { Timestamp int64 } func main() { a := &A{} b, _ := json.Marshal(a) fmt.Println(string(b)) } // Output: // {"IA":{"Timestamp":0}} yaegi-0.16.1/_test/struct57.go000066400000000000000000000003411460330105400160340ustar00rootroot00000000000000package main import ( "encoding/json" "fmt" ) type A struct { InnerA } type InnerA struct { Timestamp int64 } func main() { a := &A{} b, _ := json.Marshal(a) fmt.Println(string(b)) } // Output: // {"Timestamp":0} yaegi-0.16.1/_test/struct58.go000066400000000000000000000003651460330105400160430ustar00rootroot00000000000000package main import ( "fmt" "reflect" ) type A struct { Test string `tag:"test"` } func main() { a := A{} t := reflect.TypeOf(a) f, ok := t.FieldByName("Test") if !ok { return } fmt.Println(f.Tag.Get("tag")) } // Output: // test yaegi-0.16.1/_test/struct59.go000066400000000000000000000005731460330105400160450ustar00rootroot00000000000000package main import ( "fmt" ) type A struct { B map[string]*B C map[string]*C } type C struct { D *D E *E } type D struct { F *F G []G } type E struct { H []H F *F } type B struct{} type F struct{} type G struct{} type H struct{} func main() { conf := &A{ B: make(map[string]*B), C: make(map[string]*C), } fmt.Println(conf) } // Output: // &{map[] map[]} yaegi-0.16.1/_test/struct6.go000066400000000000000000000001571460330105400157530ustar00rootroot00000000000000package main type T struct { f, g int } func main() { a := T{7, 8} println(a.f, a.g) } // Output: // 7 8 yaegi-0.16.1/_test/struct60.go000066400000000000000000000002431460330105400160270ustar00rootroot00000000000000package main import ( "fmt" ) type data struct { S string } func render(v interface{}) { fmt.Println(v) } func main() { render(data{}) } // Output: // {} yaegi-0.16.1/_test/struct61.go000066400000000000000000000002601460330105400160270ustar00rootroot00000000000000package main import "fmt" type A struct { B string D } type D struct { *A E *A } func main() { a := &A{B: "b"} a.D = D{E: a} fmt.Println(a.D.E.B) } // Output: // b yaegi-0.16.1/_test/struct62.go000066400000000000000000000002071460330105400160310ustar00rootroot00000000000000package main func main() { type A struct{ *A } v := &A{} v.A = v println("v.A.A = v", v.A.A == v) } // Output: // v.A.A = v true yaegi-0.16.1/_test/struct7.go000066400000000000000000000002301460330105400157440ustar00rootroot00000000000000package main type Opt struct { b bool } type T struct { i int opt Opt } func main() { a := T{} println(a.i, a.opt.b) } // Output: // 0 false yaegi-0.16.1/_test/struct8.go000066400000000000000000000003721460330105400157540ustar00rootroot00000000000000package main type T3 struct { k int } type T2 struct { h int T3 } type T struct { f int g int T2 } func f(i int) int { return i * i } func main() { a := T{5, 7, T2{8, T3{9}}} println(a.f, a.g, a.T2.h, a.T2.T3.k) } // Output: // 5 7 8 9 yaegi-0.16.1/_test/struct9.go000066400000000000000000000001651460330105400157550ustar00rootroot00000000000000package main type T struct { f int g int64 } func main() { a := T{7, 8} println(a.f, a.g) } // Output: // 7 8 yaegi-0.16.1/_test/switch.go000066400000000000000000000002171460330105400156370ustar00rootroot00000000000000package main func main() { a := 3 switch a { case 0: println(200) default: println(a) case 3: println(100) } } // Output: // 100 yaegi-0.16.1/_test/switch0.go000066400000000000000000000005141460330105400157170ustar00rootroot00000000000000package main import "fmt" func f(i int) bool { switch i { case 0: println(i) return false default: println("not nul") return true } } func main() { r0 := f(0) fmt.Printf("%T %v", r0, r0) fmt.Println() r1 := f(1) fmt.Printf("%T %v", r1, r1) fmt.Println() } // Output: // 0 // bool false // not nul // bool true yaegi-0.16.1/_test/switch1.go000066400000000000000000000002021460330105400157120ustar00rootroot00000000000000package main func main() { i := 1 switch i { case 0: println(i) default: println("not nul") } } // Output: // not nul yaegi-0.16.1/_test/switch10.go000066400000000000000000000002761460330105400160050ustar00rootroot00000000000000package main func main() { var i interface{} = "truc" switch a := i.(type) { case string: println("string", a+" ok") default: println("unknown") } } // Output: // string truc ok yaegi-0.16.1/_test/switch11.go000066400000000000000000000003111460330105400157740ustar00rootroot00000000000000package main func main() { var i interface{} = "truc" switch b := 2; a := i.(type) { case string: println("string", a+" ok") default: println("unknown", b) } } // Output: // string truc ok yaegi-0.16.1/_test/switch12.go000066400000000000000000000003201460330105400157750ustar00rootroot00000000000000package main func main() { var i interface{} switch a := i.(type) { case string: println("string", a+" ok") case nil: println("i is nil") default: println("unknown") } } // Output: // i is nil yaegi-0.16.1/_test/switch13.go000066400000000000000000000003331460330105400160020ustar00rootroot00000000000000package main func main() { var i interface{} switch a := i.(type) { case string: println("string", a+" ok") case i: println("i is dummy") default: println("unknown") } } // Error: // 9:2: i is not a type yaegi-0.16.1/_test/switch14.go000066400000000000000000000010041460330105400157770ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } type Bir struct { Boo } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo: a.Hello() default: fmt.Println("a:", a) } } func main() { boo := Bir{Boo{"foo"}} inCall(boo) inCall(Bar{}) } // Output: // inCall // a: {{foo}} // inCall // a: {} yaegi-0.16.1/_test/switch15.go000066400000000000000000000010211460330105400157770ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } type Bir struct { Boo } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo, Bir: a.Hello() default: fmt.Println("a:", a) } } func main() { boo := Bir{Boo{"foo"}} inCall(boo) inCall(Bar{}) } // Output: // inCall // Hello {foo} // foo // inCall // a: {} yaegi-0.16.1/_test/switch16.go000066400000000000000000000010141460330105400160020ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } type Bir struct { Boo } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo, Bir: a.Hello() default: fmt.Println("a:", a) } } func main() { boo := Boo{"foo"} inCall(boo) inCall(Bar{}) } // Output: // inCall // Hello {foo} // foo // inCall // a: {} yaegi-0.16.1/_test/switch17.go000066400000000000000000000011431460330105400160060ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Boo struct { Name string } type Bir struct { Boo } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo: fmt.Println("type Boo") a.Hello() case Bir: fmt.Println("type Bir") a.Hello() default: fmt.Println("a:", a) } } func main() { boo := Bir{Boo{"foo"}} inCall(boo) inCall(Bar{}) } // Output: // inCall // type Bir // Hello {foo} // foo // inCall // a: {} yaegi-0.16.1/_test/switch18.go000066400000000000000000000011421460330105400160060ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Bir struct{} func (b Bir) Yo() { fmt.Println("Yo", b) } func (b Bir) Hello() { fmt.Println("Hello", b) } type Boo struct { Name string } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo: a.Hello() case Bir: a.Yo() default: fmt.Println("a:", a) } } func main() { boo := Bir{} inCall(boo) inCall(Bar{}) } // Output: // inCall // Yo {} // inCall // a: {} yaegi-0.16.1/_test/switch19.go000066400000000000000000000011531460330105400160110ustar00rootroot00000000000000package main import "fmt" type fii interface { Hello() } type Bir struct{} func (b Bir) Yo() { fmt.Println("Yo", b) } func (b Bir) Hello() { fmt.Println("Hello", b) } type Boo struct { Name string } func (b Boo) Hello() { fmt.Println("Hello", b) fmt.Println(b.Name) } type Bar struct{} func (b Bar) Hello() { fmt.Println("b:", b) } func inCall(foo fii) { fmt.Println("inCall") switch a := foo.(type) { case Boo, Bir: a.Hello() case Bir: a.Yo() default: fmt.Println("a:", a) } } func main() { boo := Bir{} inCall(boo) inCall(Bar{}) } // Error: // 37:2: duplicate case Bir in type switch yaegi-0.16.1/_test/switch2.go000066400000000000000000000002021460330105400157130ustar00rootroot00000000000000package main func main() { i := 1 switch i { case 0, 1, 2: println(i) default: println("not nul") } } // Output: // 1 yaegi-0.16.1/_test/switch20.go000066400000000000000000000002241460330105400157770ustar00rootroot00000000000000package main func main() { i := 1 switch i { case 1: // nothing to do default: println("not run") } println("bye") } // Output: // bye yaegi-0.16.1/_test/switch21.go000066400000000000000000000002651460330105400160050ustar00rootroot00000000000000package main import "fmt" func main() { var err error switch v := err.(type) { case fmt.Formatter: println("formatter") default: fmt.Println(v) } } // Output: // yaegi-0.16.1/_test/switch22.go000066400000000000000000000003371460330105400160060ustar00rootroot00000000000000package main type T struct { Name string } func f(t interface{}) { switch ext := t.(type) { case *T: println("*T", ext.Name) default: println("unknown") } } func main() { f(&T{"truc"}) } // Output: // *T truc yaegi-0.16.1/_test/switch23.go000066400000000000000000000002511460330105400160020ustar00rootroot00000000000000package main func getType() string { return "T1" } func main() { switch getType() { case "T1": println("T1") default: println("default") } } // Output: // T1 yaegi-0.16.1/_test/switch24.go000066400000000000000000000002261460330105400160050ustar00rootroot00000000000000package main func main() { a := 3 switch a + 2 { case 5: println(5) default: println("default") } println("bye") } // Output: // 5 // bye yaegi-0.16.1/_test/switch25.go000066400000000000000000000002601460330105400160040ustar00rootroot00000000000000package main func main() { a := 2 switch { case a == 1: println(1) case a == 2: println(2) default: println("default") } println("bye") } // Output: // 2 // bye yaegi-0.16.1/_test/switch26.go000066400000000000000000000002621460330105400160070ustar00rootroot00000000000000package main func main() { a := 1 switch a := 2; { case a == 1: println(1) case a == 2: println(2) default: println("default") } println(a) } // Output: // 2 // 1 yaegi-0.16.1/_test/switch27.go000066400000000000000000000002511460330105400160060ustar00rootroot00000000000000package main func main() { //a := false switch false { case true: println("true") case false: println("false") } println("bye") } // Output: // false // bye yaegi-0.16.1/_test/switch28.go000066400000000000000000000002241460330105400160070ustar00rootroot00000000000000package main func main() { switch { case true: println("true") case false: println("false") } println("bye") } // Output: // true // bye yaegi-0.16.1/_test/switch29.go000066400000000000000000000001751460330105400160150ustar00rootroot00000000000000package main func main() { a := 3 switch a { case 3: println("three") } println("bye") } // Output: // three // bye yaegi-0.16.1/_test/switch3.go000066400000000000000000000002421460330105400157200ustar00rootroot00000000000000package main func main() { a := 3 switch a { case 0: println(200) case 3: println(100) fallthrough default: println(a) } } // Output: // 100 // 3 yaegi-0.16.1/_test/switch30.go000066400000000000000000000002361460330105400160030ustar00rootroot00000000000000package main func main() { a := 3 switch a { default: //println("default") case 3: println("three") } println("bye") } // Output: // three // bye yaegi-0.16.1/_test/switch31.go000066400000000000000000000001161460330105400160010ustar00rootroot00000000000000package main func main() { switch { } println("bye") } // Output: // bye yaegi-0.16.1/_test/switch32.go000066400000000000000000000001351460330105400160030ustar00rootroot00000000000000package main func main() { a := 1 switch a { } println("bye", a) } // Output: // bye 1 yaegi-0.16.1/_test/switch33.go000066400000000000000000000001521460330105400160030ustar00rootroot00000000000000package main func main() { var a interface{} switch a.(type) { } println("bye") } // Output: // bye yaegi-0.16.1/_test/switch34.go000066400000000000000000000005701460330105400160100ustar00rootroot00000000000000package main func main() { var a interface{} a = []int{3} switch a.(type) { case []int: println("a is []int") case []string: println("a is []string") } var b interface{} b = []string{"hello"} switch b.(type) { case []int: println("b is []int") case []string: println("b is []string") } println("bye") } // Output: // a is []int // b is []string // bye yaegi-0.16.1/_test/switch35.go000066400000000000000000000002331460330105400160050ustar00rootroot00000000000000package main func main() { a := 2 switch { case a == 1: println(1) case a == 2: println(2) default: } println("bye") } // Output: // 2 // bye yaegi-0.16.1/_test/switch36.go000066400000000000000000000001771460330105400160150ustar00rootroot00000000000000package main func main() { a := 2 switch { case a == 1: println(1) case a == 2: } println("bye") } // Output: // bye yaegi-0.16.1/_test/switch37.go000066400000000000000000000002111460330105400160030ustar00rootroot00000000000000package main func main() { a := 2 switch { case a == 1: println(1) case a == 3: default: } println("bye") } // Output: // bye yaegi-0.16.1/_test/switch38.go000066400000000000000000000006461460330105400160200ustar00rootroot00000000000000package main func isSeparator(c byte) bool { switch c { case '(', ')', '<', '>', '@', ',', ';', ':', '\\', '"', '/', '[', ']', '?', '=', '{', '}', ' ', '\t': return true } return false } func main() { s := "max-age=20" for _, c := range []byte(s) { println(string(c), isSeparator(c)) } } // Output: // m false // a false // x false // - false // a false // g false // e false // = true // 2 false // 0 false yaegi-0.16.1/_test/switch39.go000066400000000000000000000003311460330105400160100ustar00rootroot00000000000000package main func f(params ...interface{}) { switch p0 := params[0].(type) { case string: println("string:", p0) default: println("not a string") } } func main() { f("Hello") } // Output: // string: Hello yaegi-0.16.1/_test/switch4.go000066400000000000000000000002651460330105400157260ustar00rootroot00000000000000package main func main() { a := 3 switch b := "foo"; a { case 0: println(200) case 3: println(100) fallthrough default: println(a, b) } } // Output: // 100 // 3 foo yaegi-0.16.1/_test/switch40.go000066400000000000000000000003131460330105400160000ustar00rootroot00000000000000package main func f(params ...interface{}) { switch params[0].(type) { case string: println("a string") default: println("not a string") } } func main() { f("Hello") } // Output: // a string yaegi-0.16.1/_test/switch5.go000066400000000000000000000002611460330105400157230ustar00rootroot00000000000000package main func main() { i := 1 switch i { case 0, 1, 2: if i == 1 { println("one") break } println(i) default: println("not nul") } } // Output: // one yaegi-0.16.1/_test/switch6.go000066400000000000000000000002751460330105400157310ustar00rootroot00000000000000package main func main() { a := 3 switch b := "foo"; { case a == 0: println(200) case a == 3: println(100) fallthrough default: println(a, b) } } // Output: // 100 // 3 foo yaegi-0.16.1/_test/switch7.go000066400000000000000000000002501460330105400157230ustar00rootroot00000000000000package main func main() { var i interface{} = "truc" switch i.(type) { case string: println("string") default: println("unknown") } } // Output: // string yaegi-0.16.1/_test/switch8.go000066400000000000000000000002051460330105400157240ustar00rootroot00000000000000package main func main() { println("hello") fallthrough println("world") } // Error: // 5:2: fallthrough statement out of place yaegi-0.16.1/_test/switch9.go000066400000000000000000000003251460330105400157300ustar00rootroot00000000000000package main func main() { var i interface{} = "truc" switch i.(type) { case string: println("string") fallthrough default: println("unknown") } } // Error: // 9:3: cannot fallthrough in type switch yaegi-0.16.1/_test/tag0.go000066400000000000000000000003621460330105400151720ustar00rootroot00000000000000// The following comment line has the same effect as 'go run -tags=dummy' // yaegi:tags dummy package main import _ "github.com/traefik/yaegi/_test/ct" func main() { println("bye") } // Output: // hello from ct1 // hello from ct3 // bye yaegi-0.16.1/_test/testdata/000077500000000000000000000000001460330105400156205ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/000077500000000000000000000000001460330105400217615ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/000077500000000000000000000000001460330105400225505ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/000077500000000000000000000000001460330105400246075ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/bar/000077500000000000000000000000001460330105400253535ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/bar/quux.go000066400000000000000000000000631460330105400267030ustar00rootroot00000000000000package quux func Quux() string { return "bar" } yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/baz/000077500000000000000000000000001460330105400253635ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/baz/quux.go000066400000000000000000000000631460330105400267130ustar00rootroot00000000000000package quux func Quux() string { return "baz" } yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/tata/000077500000000000000000000000001460330105400255405ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/tata/tutu.go000066400000000000000000000001221460330105400270630ustar00rootroot00000000000000package tutu import "guthib.com/baz" func Quux() string { return quux.Quux() } yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/toto/000077500000000000000000000000001460330105400255745ustar00rootroot00000000000000yaegi-0.16.1/_test/testdata/redeclaration-global7/src/guthib.com/toto/titi.go000066400000000000000000000001221460330105400270670ustar00rootroot00000000000000package titi import "guthib.com/bar" func Quux() string { return quux.Quux() } yaegi-0.16.1/_test/time0.go000066400000000000000000000001221460330105400153470ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { fmt.Println(time.Now()) } yaegi-0.16.1/_test/time1.go000066400000000000000000000003141460330105400153530ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { t := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) m := t.Minute() fmt.Println(t, m) } // Output: // 2009-11-10 23:04:05 +0000 UTC 4 yaegi-0.16.1/_test/time10.go000066400000000000000000000002611460330105400154340ustar00rootroot00000000000000package main import "time" var UnixTime func(int64, int64) time.Time func main() { UnixTime = time.Unix println(UnixTime(1e9, 0).In(time.UTC).Minute()) } // Output: // 46 yaegi-0.16.1/_test/time11.go000066400000000000000000000002401460330105400154320ustar00rootroot00000000000000package main import ( "fmt" "time" ) const df = time.Minute * 30 func main() { fmt.Printf("df: %v %T\n", df, df) } // Output: // df: 30m0s time.Duration yaegi-0.16.1/_test/time12.go000066400000000000000000000002461460330105400154410ustar00rootroot00000000000000package main import ( "fmt" "time" ) var twentyFourHours = time.Duration(24 * time.Hour) func main() { fmt.Println(twentyFourHours.Hours()) } // Output: // 24 yaegi-0.16.1/_test/time13.go000066400000000000000000000004021460330105400154340ustar00rootroot00000000000000package main import ( "fmt" "time" ) var dummy = 1 var t time.Time = time.Date(2007, time.November, 10, 23, 4, 5, 0, time.UTC) func main() { t = time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) fmt.Println(t.Clock()) } // Output: // 23 4 5 yaegi-0.16.1/_test/time14.go000066400000000000000000000002711460330105400154410ustar00rootroot00000000000000package main import ( "fmt" "time" ) var t time.Time func f() time.Time { time := t return time } func main() { fmt.Println(f()) } // Output: // 0001-01-01 00:00:00 +0000 UTC yaegi-0.16.1/_test/time15.go000066400000000000000000000002661460330105400154460ustar00rootroot00000000000000package main import "time" type TimeValue time.Time func (v *TimeValue) decode() { println("in decode") } func main() { var tv TimeValue tv.decode() } // Output: // in decode yaegi-0.16.1/_test/time16.go000066400000000000000000000002021460330105400154350ustar00rootroot00000000000000package main import "time" func main() { localTime := time.ANSIC println(localTime) } // Output: // Mon Jan _2 15:04:05 2006 yaegi-0.16.1/_test/time2.go000066400000000000000000000002731460330105400153600ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { t := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) h, m, s := t.Clock() fmt.Println(h, m, s) } // Output: // 23 4 5 yaegi-0.16.1/_test/time3.go000066400000000000000000000003111460330105400153520ustar00rootroot00000000000000package main import ( "fmt" "time" ) // FIXME related to named returns func main() { t := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) fmt.Println(t.Clock()) } // Output: // 23 4 5 yaegi-0.16.1/_test/time4.go000066400000000000000000000001731460330105400153610ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { var m time.Month m = 9 fmt.Println(m) } // Output: // September yaegi-0.16.1/_test/time5.go000066400000000000000000000002111460330105400153530ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { t := time.Unix(1e9, 0).In(time.UTC) fmt.Println(t.Minute()) } // Output: // 46 yaegi-0.16.1/_test/time6.go000066400000000000000000000003011460330105400153540ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { t := &time.Time{} t.UnmarshalText([]byte("1985-04-12T23:20:50.52Z")) fmt.Println(t) } // Output: // 1985-04-12 23:20:50.52 +0000 UTC yaegi-0.16.1/_test/time7.go000066400000000000000000000001631460330105400153630ustar00rootroot00000000000000package main import ( "fmt" "time" ) var d = 2 * time.Second func main() { fmt.Println(d) } // Output: // 2s yaegi-0.16.1/_test/time8.go000066400000000000000000000003411460330105400153620ustar00rootroot00000000000000package main import ( "time" ) type durationValue time.Duration func (d *durationValue) String() string { return (*time.Duration)(d).String() } func main() { var d durationValue println(d.String()) } // Output: // 0s yaegi-0.16.1/_test/time9.go000066400000000000000000000001661460330105400153700ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { fmt.Println((5 * time.Minute).Seconds()) } // Output: // 300 yaegi-0.16.1/_test/type0.go000066400000000000000000000001321460330105400153730ustar00rootroot00000000000000package main type newInt int func main() { var a newInt println(a) } // Output: // 0 yaegi-0.16.1/_test/type1.go000066400000000000000000000001771460330105400154050ustar00rootroot00000000000000package main import "fmt" func main() { var i interface{} = "hello" s := i.(string) fmt.Println(s) } // Output: // hello yaegi-0.16.1/_test/type10.go000066400000000000000000000006011460330105400154550ustar00rootroot00000000000000package main import ( "compress/gzip" "fmt" "sync" ) var gzipWriterPools [10]*sync.Pool = [10]*sync.Pool{} func main() { level := 9 gzipWriterPools[level] = &sync.Pool{ New: func() interface{} { w, _ := gzip.NewWriterLevel(nil, level) return w }, } gzw := gzipWriterPools[level].Get().(*gzip.Writer) fmt.Printf("gzw: %T\n", gzw) } // Output: // gzw: *gzip.Writer yaegi-0.16.1/_test/type11.go000066400000000000000000000003301460330105400154550ustar00rootroot00000000000000package main import ( "compress/gzip" "fmt" "sync" ) var gzipWriterPools [gzip.BestCompression - gzip.BestSpeed + 2]*sync.Pool func main() { fmt.Printf("%T\n", gzipWriterPools) } // Output: // [10]*sync.Pool yaegi-0.16.1/_test/type12.go000066400000000000000000000004561460330105400154670ustar00rootroot00000000000000package main type T1 struct { T2 *T2 } func (t *T1) Get() string { return t.T2.V().Name } type T2 struct { Name string } func (t *T2) V() *T2 { if t == nil { return defaultT2 } return t } var defaultT2 = &T2{"no name"} func main() { t := &T1{} println(t.Get()) } // Output: // no name yaegi-0.16.1/_test/type13.go000066400000000000000000000001441460330105400154620ustar00rootroot00000000000000package main var a = &T{} type T struct{} func main() { println(a != nil) } // Output: // true yaegi-0.16.1/_test/type14.go000066400000000000000000000001541460330105400154640ustar00rootroot00000000000000package main import "fmt" var a = T{} type T struct{} func main() { fmt.Println(a) } // Output: // {} yaegi-0.16.1/_test/type15.go000066400000000000000000000001321460330105400154610ustar00rootroot00000000000000package main func main() { err := error(nil) println(err == nil) } // Output: // true yaegi-0.16.1/_test/type16.go000066400000000000000000000001731460330105400154670ustar00rootroot00000000000000package main import "fmt" func main() { a := uint8(15) ^ byte(0) fmt.Printf("%T %v\n", a, a) } // Output: // uint8 15 yaegi-0.16.1/_test/type17.go000066400000000000000000000001731460330105400154700ustar00rootroot00000000000000package main import "fmt" func main() { a := int32(15) ^ rune(0) fmt.Printf("%T %v\n", a, a) } // Output: // int32 15 yaegi-0.16.1/_test/type18.go000066400000000000000000000002531460330105400154700ustar00rootroot00000000000000package main type T struct { name string size int } var table = []*T{{ name: "foo", size: 2, }} var s = table[0].size func main() { println(s) } // Output: // 2 yaegi-0.16.1/_test/type19.go000066400000000000000000000002711460330105400154710ustar00rootroot00000000000000package main type T struct { name string size int } var table = map[int]*T{ 0: { name: "foo", size: 2, }} var s = table[0].size func main() { println(s) } // Output: // 2 yaegi-0.16.1/_test/type2.go000066400000000000000000000004411460330105400154000ustar00rootroot00000000000000package main import ( "fmt" "time" ) type Options struct { debug bool } type T1 struct { opt Options time time.Time } func main() { t := T1{} t.time = time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC) fmt.Println(t.time) } // Output: // 2009-11-10 23:00:00 +0000 UTC yaegi-0.16.1/_test/type20.go000066400000000000000000000003061460330105400154600ustar00rootroot00000000000000package main import ( "io" "strings" ) func isCloser(r io.Reader) bool { _, ok := r.(io.Closer) return ok } func main() { println(isCloser(strings.NewReader("test"))) } // Output: // false yaegi-0.16.1/_test/type21.go000066400000000000000000000003741460330105400154660ustar00rootroot00000000000000package main import ( "reflect" "time" ) func main() { t := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) v := reflect.ValueOf(t.String) f := v.Interface().(func() string) println(f()) } // Output: // 2009-11-10 23:04:05 +0000 UTC yaegi-0.16.1/_test/type22.go000066400000000000000000000002311460330105400154570ustar00rootroot00000000000000package main type T1 T func foo() T1 { return T1(T{"foo"}) } type T struct { Name string } func main() { println(foo().Name) } // Output: // foo yaegi-0.16.1/_test/type23.go000066400000000000000000000011241460330105400154620ustar00rootroot00000000000000package main import ( "net/http" "net/http/httptest" ) func main() { var v1 interface{} = 1 var v2 interface{} var v3 http.ResponseWriter = httptest.NewRecorder() if r1, ok := v1.(string); ok { _ = r1 println("unexpected") } if _, ok := v1.(string); ok { println("unexpected") } if r2, ok := v2.(string); ok { _ = r2 println("unexpected") } if _, ok := v2.(string); ok { println("unexpected") } if r3, ok := v3.(http.Pusher); ok { _ = r3 println("unexpected") } if _, ok := v3.(http.Pusher); ok { println("unexpected") } println("bye") } // Output: // bye yaegi-0.16.1/_test/type24.go000066400000000000000000000013701460330105400154660ustar00rootroot00000000000000package main import ( "fmt" "net/http" "net/http/httptest" ) func main() { assertInt() assertNil() assertValue() } func assertInt() { defer func() { r := recover() fmt.Println(r) }() var v interface{} = 1 println(v.(string)) } func assertNil() { defer func() { r := recover() fmt.Println(r) }() var v interface{} println(v.(string)) } func assertValue() { defer func() { r := recover() fmt.Println(r) }() var v http.ResponseWriter = httptest.NewRecorder() println(v.(http.Pusher)) } // Output: // 22:10: interface conversion: interface {} is int, not string // 32:10: interface conversion: interface {} is nil, not string // 42:10: interface conversion: *httptest.ResponseRecorder is not http.Pusher: missing method Push yaegi-0.16.1/_test/type25.go000066400000000000000000000011301460330105400154610ustar00rootroot00000000000000package main import ( "errors" "sync/atomic" ) type wrappedError struct { wrapped error } func (e wrappedError) Error() string { return "some outer error" } func (e wrappedError) Unwrap() error { return e.wrapped } var err atomic.Value func getWrapped() *wrappedError { if v := err.Load(); v != nil { err := v.(wrappedError) if err.wrapped != nil { return &err } } return nil } func main() { err.Store(wrappedError{wrapped: errors.New("test")}) e := getWrapped() if e != nil { println(e.Error()) println(e.wrapped.Error()) } } // Output: // some outer error // test yaegi-0.16.1/_test/type26.go000066400000000000000000000011331460330105400154650ustar00rootroot00000000000000package main import ( "errors" "sync/atomic" ) type wrappedError struct { wrapped error } func (e *wrappedError) Error() string { return "some outer error" } func (e *wrappedError) Unwrap() error { return e.wrapped } var err atomic.Value func getWrapped() *wrappedError { if v := err.Load(); v != nil { err := v.(*wrappedError) if err.wrapped != nil { return err } } return nil } func main() { err.Store(&wrappedError{wrapped: errors.New("test")}) e := getWrapped() if e != nil { println(e.Error()) println(e.wrapped.Error()) } } // Output: // some outer error // test yaegi-0.16.1/_test/type27.go000066400000000000000000000003141460330105400154660ustar00rootroot00000000000000package main import "fmt" type Foo = int func (f Foo) Bar() int { return f * f } func main() { x := Foo(1) fmt.Println(x.Bar()) } // Error: // 7:1: cannot define new methods on non-local type int yaegi-0.16.1/_test/type28.go000066400000000000000000000003171460330105400154720ustar00rootroot00000000000000package main import "fmt" type Foo = int func (f *Foo) Bar() int { return *f * *f } func main() { x := Foo(1) fmt.Println(x.Bar()) } // Error: // 7:1: cannot define new methods on non-local type int yaegi-0.16.1/_test/type29.go000066400000000000000000000002231460330105400154670ustar00rootroot00000000000000package main var Foo int func (f Foo) Bar() int { return 1 } func main() {} // Error: // 5:1: cannot define new methods on non-local type int yaegi-0.16.1/_test/type3.go000066400000000000000000000001631460330105400154020ustar00rootroot00000000000000package main import "fmt" type S1 string func main() { s := S1("Hello") fmt.Println(s) } // Output: // Hello yaegi-0.16.1/_test/type30.go000066400000000000000000000002241460330105400154600ustar00rootroot00000000000000package main var Foo *int func (f Foo) Bar() int { return 1 } func main() {} // Error: // 5:1: cannot define new methods on non-local type int yaegi-0.16.1/_test/type31.go000066400000000000000000000003141460330105400154610ustar00rootroot00000000000000package main import "fmt" func (f Foo) Bar() int { return f * f } type Foo = int func main() { x := Foo(1) fmt.Println(x.Bar()) } // Error: // 5:1: cannot define new methods on non-local type int yaegi-0.16.1/_test/type32.go000066400000000000000000000003171460330105400154650ustar00rootroot00000000000000package main import "fmt" func (f *Foo) Bar() int { return *f * *f } type Foo = int func main() { x := Foo(1) fmt.Println(x.Bar()) } // Error: // 5:1: cannot define new methods on non-local type int yaegi-0.16.1/_test/type33.go000066400000000000000000000001551460330105400154660ustar00rootroot00000000000000package main func (f *Foo) Bar() int { return *f * *f } func main() { } // Error: // 3:1: undefined: Foo yaegi-0.16.1/_test/type4.go000066400000000000000000000002011460330105400153740ustar00rootroot00000000000000package main import ( "fmt" "reflect" ) func main() { a := int32(12) fmt.Println(reflect.TypeOf(a)) } // Output: // int32 yaegi-0.16.1/_test/type5.go000066400000000000000000000002071460330105400154030ustar00rootroot00000000000000package main import ( "fmt" "reflect" ) type T int func main() { a := T(12) fmt.Println(reflect.TypeOf(a)) } // Output: // int yaegi-0.16.1/_test/type6.go000066400000000000000000000002071460330105400154040ustar00rootroot00000000000000package main import ( "fmt" "reflect" ) func main() { a := T(12) fmt.Println(reflect.TypeOf(a)) } type T int // Output: // int yaegi-0.16.1/_test/type7.go000066400000000000000000000002311460330105400154020ustar00rootroot00000000000000package main import "fmt" func main() { var i interface{} = "hello" if s, ok := i.(string); ok { fmt.Println(s, ok) } } // Output: // hello true yaegi-0.16.1/_test/type8.go000066400000000000000000000001661460330105400154120ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { v := (*time.Time)(nil) fmt.Println(v) } // Output: // yaegi-0.16.1/_test/type9.go000066400000000000000000000003061460330105400154070ustar00rootroot00000000000000package main import "fmt" type Hello struct { Goodbye GoodbyeProvider } func main() { a := &Hello{} fmt.Println(a) } type GoodbyeProvider func(message string) string // Output: // &{} yaegi-0.16.1/_test/unsafe0.go000066400000000000000000000002311460330105400156730ustar00rootroot00000000000000package main import "unsafe" func main() { str := "foobar" p := unsafe.Pointer(&str) str2 := *(*string)(p) println(str2) } // Output: // foobar yaegi-0.16.1/_test/unsafe1.go000066400000000000000000000002721460330105400157010ustar00rootroot00000000000000package main import "unsafe" type S struct { Name string } func main() { s := &S{Name: "foobar"} p := unsafe.Pointer(s) s2 := (*S)(p) println(s2.Name) } // Output: // foobar yaegi-0.16.1/_test/unsafe10.go000066400000000000000000000002501460330105400157550ustar00rootroot00000000000000package main import "unsafe" type T struct { X uint64 Y uint64 } func f(off uintptr) { println(off) } func main() { f(unsafe.Offsetof(T{}.Y)) } // Output: // 8 yaegi-0.16.1/_test/unsafe2.go000066400000000000000000000003371460330105400157040ustar00rootroot00000000000000package main import ( "fmt" "unsafe" ) func main() { str := "foobar" ptr := unsafe.Pointer(&str) p := uintptr(ptr) s1 := fmt.Sprintf("%x", ptr) s2 := fmt.Sprintf("%x", p) println(s1 == s2) } // Output: // true yaegi-0.16.1/_test/unsafe3.go000066400000000000000000000006511460330105400157040ustar00rootroot00000000000000package main import ( "math/bits" "unsafe" ) const ( SSize = 16 WSize = bits.UintSize / 8 ) type S struct { X int Y int } func main() { bigEndian := (*(*[2]uint8)(unsafe.Pointer(&[]uint16{1}[0])))[0] == 0 var sBuf [SSize]byte s := (*S)(unsafe.Pointer(&sBuf[0])) s.X = 2 s.Y = 4 if bigEndian { println(sBuf[0+WSize-1], sBuf[WSize+WSize-1]) } else { println(sBuf[0], sBuf[WSize]) } } // Output: // 2 4 yaegi-0.16.1/_test/unsafe4.go000066400000000000000000000005611460330105400157050ustar00rootroot00000000000000package main import ( "fmt" "math/bits" "unsafe" ) const WSize = bits.UintSize / 8 type S struct { X int Y int Z int } func main() { arr := []S{ {X: 1}, {X: 2}, {X: 3}, } addr := unsafe.Pointer(&arr[0]) // s := *(*S)(unsafe.Pointer(uintptr(addr) + SSize*2)) s := *(*S)(unsafe.Pointer(uintptr(addr) + WSize*6)) fmt.Println(s.X) } // Output: // 3 yaegi-0.16.1/_test/unsafe5.go000066400000000000000000000004701460330105400157050ustar00rootroot00000000000000package main import ( "math/bits" "unsafe" ) const WSize = bits.UintSize / 8 type S struct { X int Y int Z int } func main() { x := S{} size := unsafe.Sizeof(x) / WSize align := unsafe.Alignof(x.Y) / WSize offset := unsafe.Offsetof(x.Z) / WSize println(size, align, offset) } // Output: // 3 1 2 yaegi-0.16.1/_test/unsafe6.go000066400000000000000000000004031460330105400157020ustar00rootroot00000000000000package main import ( "fmt" "unsafe" ) type S struct { X int Y int Z int } func main() { x := S{Z: 5} ptr := unsafe.Pointer(&x) offset := int(unsafe.Offsetof(x.Z)) p := unsafe.Add(ptr, offset) i := *(*int)(p) fmt.Println(i) } // Output: // 5 yaegi-0.16.1/_test/unsafe7.go000066400000000000000000000002561460330105400157110ustar00rootroot00000000000000package main import ( "fmt" "unsafe" ) type S struct { X int Y int Z int } func main() { x := [2]S{{Z: 5}, {Z: 10}} s := unsafe.Slice(&x[0], 2) fmt.Println(s) } yaegi-0.16.1/_test/unsafe8.go000066400000000000000000000002251460330105400157060ustar00rootroot00000000000000package main import "unsafe" type T struct { i uint64 } var d T var b [unsafe.Sizeof(d)]byte func main() { println(len(b)) } // Output: // 8 yaegi-0.16.1/_test/var.go000066400000000000000000000001261460330105400151250ustar00rootroot00000000000000package main func main() { var a, b, c int println(a, b, c) } // Output: // 0 0 0 yaegi-0.16.1/_test/var10.go000066400000000000000000000001431460330105400152650ustar00rootroot00000000000000package main var _ = true var _ = "hello" func main() { println("hello") } // Output: // hello yaegi-0.16.1/_test/var11.go000066400000000000000000000001441460330105400152670ustar00rootroot00000000000000package main var a, _, _, b = 1, true, "foo", 2 func main() { println(a, b) } // Output: // 1 2 yaegi-0.16.1/_test/var12.go000066400000000000000000000001341460330105400152670ustar00rootroot00000000000000package main var ( a = b b = "hello" ) func main() { println(a) } // Output: // hello yaegi-0.16.1/_test/var13.go000066400000000000000000000003661460330105400152770ustar00rootroot00000000000000package main var ( a = concat("hello", b) b = concat(" ", c, "!") c = d d = "world" ) func concat(a ...string) string { var s string for _, ss := range a { s += ss } return s } func main() { println(a) } // Output: // hello world! yaegi-0.16.1/_test/var14.go000066400000000000000000000001711460330105400152720ustar00rootroot00000000000000package main import "github.com/traefik/yaegi/_test/vars" func main() { println(vars.A) } // Output: // hello world! yaegi-0.16.1/_test/var15.go000066400000000000000000000001561460330105400152760ustar00rootroot00000000000000package main var a int = 2 func inca() { a = a + 1 } func main() { inca() println(a) } // Output: // 3 yaegi-0.16.1/_test/var16.go000066400000000000000000000005431460330105400152770ustar00rootroot00000000000000package main func getArray() ([]int, error) { println("getArray"); return []int{1, 2}, nil } func getNum() (int, error) { println("getNum"); return 3, nil } func main() { if a, err := getNum(); err != nil { println("#1", a) } else if a, err := getArray(); err != nil { println("#2", a) } println("#3") } // Output: // getNum // getArray // #3 yaegi-0.16.1/_test/var2.go000066400000000000000000000001121460330105400152020ustar00rootroot00000000000000package main func main() { var a int = 2 println(a) } // Output: // 2 yaegi-0.16.1/_test/var3.go000066400000000000000000000001251460330105400152070ustar00rootroot00000000000000package main func main() { var a, b int = 2, 3 println(a, b) } // Output: // 2 3 yaegi-0.16.1/_test/var4.go000066400000000000000000000001211460330105400152040ustar00rootroot00000000000000package main func main() { var a, b = 2, 3 println(a, b) } // Output: // 2 3 yaegi-0.16.1/_test/var5.go000066400000000000000000000002061460330105400152110ustar00rootroot00000000000000package main import "fmt" func main() { var a int64 = 64 fmt.Printf("a: %v %T", a, a) fmt.Println() } // Output: // a: 64 int64 yaegi-0.16.1/_test/var6.go000066400000000000000000000004261460330105400152160ustar00rootroot00000000000000package main import ( "fmt" ) type Foo struct { A string } var f = Foo{"world"} // <-- the root cause func Hello() { fmt.Println("in") } var name = "v1" // <-- the root cause func main() { Hello() fmt.Println("Hello", f.A, name) } // Output: // in // Hello world v1 yaegi-0.16.1/_test/var7.go000066400000000000000000000002231460330105400152120ustar00rootroot00000000000000package main import ( "fmt" ) type T struct { Name string } var m = make(map[string]*T) func main() { fmt.Println(m) } // Output: // map[] yaegi-0.16.1/_test/var8.go000066400000000000000000000003351460330105400152170ustar00rootroot00000000000000package main import ( "fmt" "reflect" ) type Message struct { Name string } var protoMessageType = reflect.TypeOf((*Message)(nil)).Elem() func main() { fmt.Println(protoMessageType.Kind()) } // Output: // struct yaegi-0.16.1/_test/var9.go000066400000000000000000000001401460330105400152120ustar00rootroot00000000000000package main var a = "sdofjsdfj" var z = a[0:2] func main() { println(z) } // Output: // sd yaegi-0.16.1/_test/variadic.go000066400000000000000000000001721460330105400161200ustar00rootroot00000000000000package main import "fmt" func f(a ...int) { fmt.Println(a) } func main() { f(1, 2, 3, 4) } // Output: // [1 2 3 4] yaegi-0.16.1/_test/variadic0.go000066400000000000000000000002031460330105400161730ustar00rootroot00000000000000package main import "fmt" func f(s string, a ...int) { fmt.Println(s, a) } func main() { f("hello") } // Output: // hello [] yaegi-0.16.1/_test/variadic1.go000066400000000000000000000002231460330105400161760ustar00rootroot00000000000000package main import "fmt" func f(s string, a ...int32) { fmt.Println(s, a) } func main() { f("hello", 1, 2, 3) } // Output: // hello [1 2 3] yaegi-0.16.1/_test/variadic10.go000066400000000000000000000003761460330105400162670ustar00rootroot00000000000000package main import ( "log" "os" ) func main() { logger := log.New(os.Stdout, "test ", log.Lmsgprefix) logger.Printf("args: %v %v", 1, "truc") logger.Printf("args: %v %v %v", 1, "truc", 2) } // Output: // test args: 1 truc // test args: 1 truc 2 yaegi-0.16.1/_test/variadic2.go000066400000000000000000000002121460330105400161750ustar00rootroot00000000000000package main import "fmt" func f(a ...int) { if len(a) > 2 { fmt.Println(a[2]) } } func main() { f(1, 2, 3, 4) } // Output: // 3 yaegi-0.16.1/_test/variadic3.go000066400000000000000000000003141460330105400162010ustar00rootroot00000000000000package main import "fmt" func f(a ...int) int { fmt.Println(a) res := 0 for _, v := range a { res += v } return res } func main() { fmt.Println(f(1, 2, 3, 4)) } // Output: // [1 2 3 4] // 10 yaegi-0.16.1/_test/variadic4.go000066400000000000000000000002051460330105400162010ustar00rootroot00000000000000package main func variadic(s ...string) {} func f(s string) { println(s + "bar") } func main() { f("foo") } // Output: // foobar yaegi-0.16.1/_test/variadic5.go000066400000000000000000000002731460330105400162070ustar00rootroot00000000000000package main import ( "fmt" ) type A struct { } func (a A) f(vals ...bool) { for _, v := range vals { fmt.Println(v) } } func main() { a := A{} a.f(true) } // Output: // true yaegi-0.16.1/_test/variadic6.go000066400000000000000000000003201460330105400162010ustar00rootroot00000000000000package main import "fmt" type A struct { } func (a A) f(vals ...bool) { for _, v := range vals { fmt.Println(v) } } func main() { bools := []bool{true} a := A{} a.f(bools...) } // Output: // true yaegi-0.16.1/_test/variadic7.go000066400000000000000000000004251460330105400162100ustar00rootroot00000000000000package main import "fmt" func main() { var a, b string pattern := "%s %s" dest := []interface{}{&a, &b} n, err := fmt.Sscanf("test1 test2", pattern, dest...) if err != nil || n != len(dest) { println("error") return } println(a, b) } // Output: // test1 test2 yaegi-0.16.1/_test/variadic8.go000066400000000000000000000002761460330105400162150ustar00rootroot00000000000000package main import ( "fmt" "time" ) func main() { fn1 := func(args ...*time.Duration) string { return "" } fmt.Printf("%T\n", fn1) } // Output: // func(...*time.Duration) string yaegi-0.16.1/_test/variadic9.go000066400000000000000000000003201460330105400162040ustar00rootroot00000000000000package main import "fmt" func Sprintf(format string, a ...interface{}) string { return fmt.Sprintf(format, a...) } func main() { fmt.Println(Sprintf("Hello %s", "World!")) } // Output: // Hello World! yaegi-0.16.1/_test/vars/000077500000000000000000000000001460330105400147625ustar00rootroot00000000000000yaegi-0.16.1/_test/vars/first.go000066400000000000000000000002271460330105400164410ustar00rootroot00000000000000package vars var ( A = concat("hello", B) C = D ) func concat(a ...string) string { var s string for _, ss := range a { s += ss } return s } yaegi-0.16.1/_test/vars/second.go000066400000000000000000000000741460330105400165650ustar00rootroot00000000000000package vars var ( B = concat(" ", C, "!") D = "world" ) yaegi-0.16.1/cmd/000077500000000000000000000000001460330105400134345ustar00rootroot00000000000000yaegi-0.16.1/cmd/yaegi/000077500000000000000000000000001460330105400145325ustar00rootroot00000000000000yaegi-0.16.1/cmd/yaegi/extract.go000066400000000000000000000051371460330105400165410ustar00rootroot00000000000000package main import ( "bufio" "bytes" "errors" "flag" "fmt" "io" "os" "path/filepath" "strings" "github.com/traefik/yaegi/extract" ) func extractCmd(arg []string) error { var licensePath string var name string var exclude string var include string var tag string eflag := flag.NewFlagSet("run", flag.ContinueOnError) eflag.StringVar(&licensePath, "license", "", "path to a LICENSE file") eflag.StringVar(&name, "name", "", "the namespace for the extracted symbols") eflag.StringVar(&exclude, "exclude", "", "comma separated list of regexp matching symbols to exclude") eflag.StringVar(&include, "include", "", "comma separated list of regexp matching symbols to include") eflag.StringVar(&tag, "tag", "", "comma separated list of build tags to be added to the created package") eflag.Usage = func() { fmt.Println("Usage: yaegi extract [options] packages...") fmt.Println("Options:") eflag.PrintDefaults() } if err := eflag.Parse(arg); err != nil { return err } args := eflag.Args() if len(args) == 0 { return errors.New("missing package") } license, err := genLicense(licensePath) if err != nil { return err } wd, err := os.Getwd() if err != nil { return err } if name == "" { name = filepath.Base(wd) } ext := extract.Extractor{ Dest: name, License: license, } if tag != "" { ext.Tag = strings.Split(tag, ",") } if exclude != "" { ext.Exclude = strings.Split(exclude, ",") } if include != "" { ext.Include = strings.Split(include, ",") } r := strings.NewReplacer("/", "-", ".", "_", "~", "_") for _, pkgIdent := range args { var buf bytes.Buffer importPath, err := ext.Extract(pkgIdent, name, &buf) if err != nil { fmt.Fprintln(os.Stderr, err) continue } oFile := r.Replace(importPath) + ".go" f, err := os.Create(oFile) if err != nil { return err } if _, err := io.Copy(f, &buf); err != nil { _ = f.Close() return err } if err := f.Close(); err != nil { return err } } return nil } // genLicense generates the correct LICENSE header text from the provided // path to a LICENSE file. func genLicense(fname string) (string, error) { if fname == "" { return "", nil } f, err := os.Open(fname) if err != nil { return "", fmt.Errorf("could not open LICENSE file: %w", err) } defer func() { _ = f.Close() }() license := new(strings.Builder) sc := bufio.NewScanner(f) for sc.Scan() { txt := sc.Text() if txt != "" { txt = " " + txt } license.WriteString("//" + txt + "\n") } if sc.Err() != nil { return "", fmt.Errorf("could not scan LICENSE file: %w", err) } return license.String(), nil } yaegi-0.16.1/cmd/yaegi/help.go000066400000000000000000000017161460330105400160160ustar00rootroot00000000000000package main import "fmt" const usage = `Yaegi is a Go interpreter. Usage: yaegi [command] [arguments] The commands are: extract generate a wrapper file from a source package help print usage information run execute a Go program from source test execute test functions in a Go package version print version Use "yaegi help " for more information about a command. If no command is given or if the first argument is not a command, then the run command is assumed. ` func help(arg []string) error { var cmd string if len(arg) > 0 { cmd = arg[0] } switch cmd { case Extract: return extractCmd([]string{"-h"}) case Help, "", "-h", "--help": fmt.Print(usage) return nil case Run: return run([]string{"-h"}) case Test: return test([]string{"-h"}) case Version: fmt.Println("Usage: yaegi version") return nil default: return fmt.Errorf("help: invalid yaegi command: %v", cmd) } } yaegi-0.16.1/cmd/yaegi/run.go000066400000000000000000000100651460330105400156670ustar00rootroot00000000000000package main import ( "flag" "fmt" "go/build" "os" "reflect" "strconv" "strings" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" "github.com/traefik/yaegi/stdlib/syscall" "github.com/traefik/yaegi/stdlib/unrestricted" "github.com/traefik/yaegi/stdlib/unsafe" ) func run(arg []string) error { var interactive bool var noAutoImport bool var tags string var cmd string var err error // The following flags are initialized from environment. useSyscall, _ := strconv.ParseBool(os.Getenv("YAEGI_SYSCALL")) useUnrestricted, _ := strconv.ParseBool(os.Getenv("YAEGI_UNRESTRICTED")) useUnsafe, _ := strconv.ParseBool(os.Getenv("YAEGI_UNSAFE")) rflag := flag.NewFlagSet("run", flag.ContinueOnError) rflag.BoolVar(&interactive, "i", false, "start an interactive REPL") rflag.BoolVar(&useSyscall, "syscall", useSyscall, "include syscall symbols") rflag.BoolVar(&useUnrestricted, "unrestricted", useUnrestricted, "include unrestricted symbols") rflag.StringVar(&tags, "tags", "", "set a list of build tags") rflag.BoolVar(&useUnsafe, "unsafe", useUnsafe, "include unsafe symbols") rflag.BoolVar(&noAutoImport, "noautoimport", false, "do not auto import pre-compiled packages. Import names that would result in collisions (e.g. rand from crypto/rand and rand from math/rand) are automatically renamed (crypto_rand and math_rand)") rflag.StringVar(&cmd, "e", "", "set the command to be executed (instead of script or/and shell)") rflag.Usage = func() { fmt.Println("Usage: yaegi run [options] [path] [args]") fmt.Println("Options:") rflag.PrintDefaults() } if err = rflag.Parse(arg); err != nil { return err } args := rflag.Args() i := interp.New(interp.Options{ GoPath: build.Default.GOPATH, BuildTags: strings.Split(tags, ","), Env: os.Environ(), Unrestricted: useUnrestricted, }) if err := i.Use(stdlib.Symbols); err != nil { return err } if err := i.Use(interp.Symbols); err != nil { return err } if useSyscall { if err := i.Use(syscall.Symbols); err != nil { return err } // Using a environment var allows a nested interpreter to import the syscall package. if err := os.Setenv("YAEGI_SYSCALL", "1"); err != nil { return err } } if useUnsafe { if err := i.Use(unsafe.Symbols); err != nil { return err } if err := os.Setenv("YAEGI_UNSAFE", "1"); err != nil { return err } } if useUnrestricted { // Use of unrestricted symbols should always follow stdlib and syscall symbols, to update them. if err := i.Use(unrestricted.Symbols); err != nil { return err } if err := os.Setenv("YAEGI_UNRESTRICTED", "1"); err != nil { return err } } if cmd != "" { if !noAutoImport { i.ImportUsed() } var v reflect.Value v, err = i.Eval(cmd) if len(args) == 0 && v.IsValid() { fmt.Println(v) } } if len(args) == 0 { if cmd == "" || interactive { showError(err) if !noAutoImport { i.ImportUsed() } _, err = i.REPL() } return err } // Skip first os arg to set command line as expected by interpreted main. path := args[0] os.Args = arg flag.CommandLine = flag.NewFlagSet(path, flag.ExitOnError) if isFile(path) { err = runFile(i, path, noAutoImport) } else { _, err = i.EvalPath(path) } if err != nil { return err } if interactive { _, err = i.REPL() } return err } func isFile(path string) bool { fi, err := os.Stat(path) return err == nil && fi.Mode().IsRegular() } func runFile(i *interp.Interpreter, path string, noAutoImport bool) error { b, err := os.ReadFile(path) if err != nil { return err } if s := string(b); strings.HasPrefix(s, "#!") { // Allow executable go scripts, Have the same behavior as in interactive mode. s = strings.Replace(s, "#!", "//", 1) if !noAutoImport { i.ImportUsed() } _, err = i.Eval(s) return err } // Files not starting with "#!" are supposed to be pure Go, directly Evaled. _, err = i.EvalPath(path) return err } func showError(err error) { if err == nil { return } fmt.Fprintln(os.Stderr, err) if p, ok := err.(interp.Panic); ok { fmt.Fprintln(os.Stderr, string(p.Stack)) } } yaegi-0.16.1/cmd/yaegi/test.go000066400000000000000000000114561460330105400160470ustar00rootroot00000000000000package main import ( "errors" "flag" "fmt" "go/build" "os" "path/filepath" "regexp" "strconv" "strings" "testing" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" "github.com/traefik/yaegi/stdlib/syscall" "github.com/traefik/yaegi/stdlib/unrestricted" "github.com/traefik/yaegi/stdlib/unsafe" ) func test(arg []string) (err error) { var ( bench string benchmem bool benchtime string count string cpu string failfast bool run string short bool tags string timeout string verbose bool ) // The following flags are initialized from environment. useSyscall, _ := strconv.ParseBool(os.Getenv("YAEGI_SYSCALL")) useUnrestricted, _ := strconv.ParseBool(os.Getenv("YAEGI_UNRESTRICTED")) useUnsafe, _ := strconv.ParseBool(os.Getenv("YAEGI_UNSAFE")) tflag := flag.NewFlagSet("test", flag.ContinueOnError) tflag.StringVar(&bench, "bench", "", "Run only those benchmarks matching a regular expression.") tflag.BoolVar(&benchmem, "benchmem", false, "Print memory allocation statistics for benchmarks.") tflag.StringVar(&benchtime, "benchtime", "", "Run enough iterations of each benchmark to take t.") tflag.StringVar(&count, "count", "", "Run each test and benchmark n times (default 1).") tflag.StringVar(&cpu, "cpu", "", "Specify a list of GOMAXPROCS values for which the tests or benchmarks should be executed.") tflag.BoolVar(&failfast, "failfast", false, "Do not start new tests after the first test failure.") tflag.StringVar(&run, "run", "", "Run only those tests matching a regular expression.") tflag.BoolVar(&short, "short", false, "Tell long-running tests to shorten their run time.") tflag.StringVar(&tags, "tags", "", "Set a list of build tags.") tflag.StringVar(&timeout, "timeout", "", "If a test binary runs longer than duration d, panic.") tflag.BoolVar(&useUnrestricted, "unrestricted", useUnrestricted, "Include unrestricted symbols.") tflag.BoolVar(&useUnsafe, "unsafe", useUnsafe, "Include usafe symbols.") tflag.BoolVar(&useSyscall, "syscall", useSyscall, "Include syscall symbols.") tflag.BoolVar(&verbose, "v", false, "Verbose output: log all tests as they are run.") tflag.Usage = func() { fmt.Println("Usage: yaegi test [options] [path]") fmt.Println("Options:") tflag.PrintDefaults() } if err = tflag.Parse(arg); err != nil { return err } args := tflag.Args() path := "." if len(args) > 0 { path = args[0] } // Overwrite os.Args with correct flags to setup testing.Init. tf := []string{""} if bench != "" { tf = append(tf, "-test.bench", bench) } if benchmem { tf = append(tf, "-test.benchmem") } if benchtime != "" { tf = append(tf, "-test.benchtime", benchtime) } if count != "" { tf = append(tf, "-test.count", count) } if cpu != "" { tf = append(tf, "-test.cpu", cpu) } if failfast { tf = append(tf, "-test.failfast") } if run != "" { tf = append(tf, "-test.run", run) } if short { tf = append(tf, "-test.short") } if timeout != "" { tf = append(tf, "-test.timeout", timeout) } if verbose { tf = append(tf, "-test.v") } testing.Init() os.Args = tf flag.Parse() path += string(filepath.Separator) var dir string switch strings.Split(path, string(filepath.Separator))[0] { case ".", "..", string(filepath.Separator): dir = path default: dir = filepath.Join(build.Default.GOPATH, "src", path) } if err = os.Chdir(dir); err != nil { return err } i := interp.New(interp.Options{ GoPath: build.Default.GOPATH, BuildTags: strings.Split(tags, ","), Env: os.Environ(), Unrestricted: useUnrestricted, }) if err := i.Use(stdlib.Symbols); err != nil { return err } if err := i.Use(interp.Symbols); err != nil { return err } if useSyscall { if err := i.Use(syscall.Symbols); err != nil { return err } // Using a environment var allows a nested interpreter to import the syscall package. if err := os.Setenv("YAEGI_SYSCALL", "1"); err != nil { return err } } if useUnrestricted { if err := i.Use(unrestricted.Symbols); err != nil { return err } if err := os.Setenv("YAEGI_UNRESTRICTED", "1"); err != nil { return err } } if useUnsafe { if err := i.Use(unsafe.Symbols); err != nil { return err } if err := os.Setenv("YAEGI_UNSAFE", "1"); err != nil { return err } } if err = i.EvalTest(path); err != nil { return err } benchmarks := []testing.InternalBenchmark{} tests := []testing.InternalTest{} syms, ok := i.Symbols(path)[path] if !ok { return errors.New("No tests found") } for name, sym := range syms { switch fun := sym.Interface().(type) { case func(*testing.B): benchmarks = append(benchmarks, testing.InternalBenchmark{name, fun}) case func(*testing.T): tests = append(tests, testing.InternalTest{name, fun}) } } testing.Main(regexp.MatchString, tests, benchmarks, nil) return nil } yaegi-0.16.1/cmd/yaegi/yaegi.go000066400000000000000000000105021460330105400161550ustar00rootroot00000000000000/* Yaegi interprets Go programs. Yaegi reads Go language programs from standard input, string parameters or files and run them. If invoked with no arguments, it processes the standard input in a Read-Eval-Print-Loop. A prompt is displayed if standard input is a terminal. File Mode In file mode, as in a standard Go compiler, source files are read entirely before being parsed, then evaluated. It allows to handle forward declarations and to have package code split in multiple source files. Go specifications fully apply in this mode. All files are interpreted in file mode except the initial file if it starts with "#!" characters (the shebang pattern to allow executable scripts), for example "#!/usr/bin/env yaegi". In that case, the initial file is interpreted in REPL mode. REPL mode In REPL mode, the interpreter parses the code incrementally. As soon as a statement is complete, it evaluates it. This makes the interpreter suitable for interactive command line and scripts. Go specifications apply with the following differences: All local and global declarations (const, var, type, func) are allowed, including in short form, except that all identifiers must be defined before use (as declarations inside a standard Go function). The statements are evaluated in the global space, within an implicit "main" package. It is not necessary to have a package statement, or a main function in REPL mode. Import statements for preloaded binary packages can also be avoided (i.e. all the standard library except the few packages where default names collide, as "math/rand" and "crypto/rand", for which an explicit import is still necessary). Note that the source packages are always interpreted in file mode, even if imported from REPL. The following extract is a valid executable script: #!/usr/bin/env yaegi helloHandler := func(w http.ResponseWriter, req *http.Request) { io.WriteString(w, "Hello, world!\n") } http.HandleFunc("/hello", helloHandler) log.Fatal(http.ListenAndServe(":8080", nil)) Example of a one liner: $ yaegi -e 'println(reflect.TypeOf(fmt.Print))' Options: -e string evaluate the string and return. -i start an interactive REPL after file execution. -syscall include syscall symbols. -tags tag,list a comma-separated list of build tags to consider satisfied during the interpretation. -unsafe include unsafe symbols. Environment variables: YAEGI_SYSCALL=1 Include syscall symbols (same as -syscall flag). YAEGI_UNRESTRICTED=1 Include unrestricted symbols (same as -unrestricted flag). YAEGI_UNSAFE=1 Include unsafe symbols (same as -unsafe flag). YAEGI_PROMPT=1 Force enable the printing of the REPL prompt and the result of last instruction, even if stdin is not a terminal. YAEGI_AST_DOT=1 Generate and display graphviz dot of AST with dotty(1) YAEGI_CFG_DOT=1 Generate and display graphviz dot of CFG with dotty(1) YAEGI_DOT_CMD='dot -Tsvg -ofoo.svg' Defines how to process the dot code generated whenever YAEGI_AST_DOT and/or YAEGI_CFG_DOT is enabled. If any of YAEGI_AST_DOT or YAEGI_CFG_DOT is set, but YAEGI_DOT_CMD is not defined, the default is to write to a .dot file next to the Go source file. */ package main import ( "errors" "flag" "fmt" "log" "os" "github.com/traefik/yaegi/interp" ) const ( Extract = "extract" Help = "help" Run = "run" Test = "test" Version = "version" ) var version = "devel" // This may be overwritten at build time. func main() { var cmd string var err error var exitCode int log.SetFlags(log.Lshortfile) // Ease debugging. if len(os.Args) > 1 { cmd = os.Args[1] } switch cmd { case Extract: err = extractCmd(os.Args[2:]) case Help, "-h", "--help": err = help(os.Args[2:]) case Run: err = run(os.Args[2:]) case Test: err = test(os.Args[2:]) case Version: fmt.Println(version) default: // If no command is given, fallback to default "run" command. // This allows scripts starting with "#!/usr/bin/env yaegi", // as passing more than 1 argument to #! executable may be not supported // on all platforms. cmd = Run err = run(os.Args[1:]) } if err != nil && !errors.Is(err, flag.ErrHelp) { fmt.Fprintln(os.Stderr, fmt.Errorf("%s: %w", cmd, err)) if p, ok := err.(interp.Panic); ok { fmt.Fprintln(os.Stderr, string(p.Stack)) } exitCode = 1 } os.Exit(exitCode) } yaegi-0.16.1/cmd/yaegi/yaegi_test.go000066400000000000000000000062561460330105400172270ustar00rootroot00000000000000package main import ( "bytes" "context" "os" "os/exec" "path/filepath" "runtime" "strconv" "strings" "testing" "time" ) const ( // CITimeoutMultiplier is the multiplier for all timeouts in the CI. CITimeoutMultiplier = 3 ) // Sleep pauses the current goroutine for at least the duration d. func Sleep(d time.Duration) { d = applyCIMultiplier(d) time.Sleep(d) } func applyCIMultiplier(timeout time.Duration) time.Duration { ci := os.Getenv("CI") if ci == "" { return timeout } b, err := strconv.ParseBool(ci) if err != nil || !b { return timeout } return time.Duration(float64(timeout) * CITimeoutMultiplier) } func TestYaegiCmdCancel(t *testing.T) { tmp := t.TempDir() yaegi := filepath.Join(tmp, "yaegi") args := []string{"build"} if raceDetectorSupported(runtime.GOOS, runtime.GOARCH) { args = append(args, "-race") } args = append(args, "-o", yaegi, ".") build := exec.Command("go", args...) out, err := build.CombinedOutput() if err != nil { t.Fatalf("failed to build yaegi command: %v: %s", err, out) } // Test src must be terminated by a single newline. tests := []string{ "for {}\n", "select {}\n", } for _, src := range tests { cmd := exec.Command(yaegi) in, err := cmd.StdinPipe() if err != nil { t.Errorf("failed to get stdin pipe to yaegi command: %v", err) } var outBuf, errBuf bytes.Buffer cmd.Stdout = &outBuf cmd.Stderr = &errBuf // https://golang.org/doc/articles/race_detector.html#Options cmd.Env = []string{`GORACE="halt_on_error=1"`} err = cmd.Start() if err != nil { t.Fatalf("failed to start yaegi command: %v", err) } _, err = in.Write([]byte(src)) if err != nil { t.Errorf("failed pipe test source to yaegi command: %v", err) } Sleep(500 * time.Millisecond) err = cmd.Process.Signal(os.Interrupt) if err != nil { t.Errorf("failed to send os.Interrupt to yaegi command: %v", err) } _, err = in.Write([]byte("1+1\n")) if err != nil { t.Errorf("failed to probe race: %v", err) } err = in.Close() if err != nil { t.Errorf("failed to close stdin pipe: %v", err) } err = cmd.Wait() if err != nil { if cmd.ProcessState.ExitCode() == 66 { // See race_detector.html article. t.Errorf("race detected running yaegi command canceling %q: %v", src, err) if testing.Verbose() { t.Log(&errBuf) } } else { t.Errorf("error running yaegi command for %q: %v", src, err) } continue } if strings.TrimSuffix(errBuf.String(), "\n") != context.Canceled.Error() { t.Errorf("unexpected error: %q", &errBuf) } } } func raceDetectorSupported(goos, goarch string) bool { if strings.Contains(os.Getenv("GOFLAGS"), "-buildmode=pie") { // The Go race detector is not compatible with position independent code (pie). // We read the conventional GOFLAGS env variable used for example on AlpineLinux // to build packages, as there is no way to get this information from the runtime. return false } switch goos { case "linux": return goarch == "amd64" || goarch == "ppc64le" || goarch == "arm64" case "darwin": return goarch == "amd64" || goarch == "arm64" case "freebsd", "netbsd", "openbsd", "windows": return goarch == "amd64" default: return false } } yaegi-0.16.1/doc/000077500000000000000000000000001460330105400134365ustar00rootroot00000000000000yaegi-0.16.1/doc/images/000077500000000000000000000000001460330105400147035ustar00rootroot00000000000000yaegi-0.16.1/doc/images/yaegi.png000066400000000000000000002732221460330105400165170ustar00rootroot00000000000000PNG  IHDR_bKGD IDATxy|T?sLada',"(n[WKMʚsm+KժݶKk(* Y,laMfgy~$Ldy^4{0ϜB!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!2t €eS>VaGKUuisTF«MO r>S[mRdhF$H)&{ywkhU_-ZpTG!olzBdR!Zs:#앱 zϒmGUU >MAQU̥1{dt<ۧz4?lj1Zʧ]gS!z'~=jjHe 7P^ꘟ +.~x^^[l.Ҩ.+Z4BӝB3m1`>J{Rv|PL&Lp82^ L"K+^4ccZtYO"`:@k1m. Ȥ;g-.ܕP3L}?+`#s)l73V/;7nfE#݀B6Kq:tul?V@/4 (Jv@!eo܏1͎91?^0?͊%_Vww-[,LV8'gpES yg k6fzБV4h[\k҉Ė~IլPpdfpGQ!0bѢZ3.!lX ќNlow瘿0~` ↠t&2w2ICp"k!ّ5mJ5ϬU`,+Z%0h;cZ\e1'鴡mH+_lEĪnEWQwҏ:h-kGFtUnS{YҊ !DH`-DsTGΣYW3 26##{*76F3mOe oA- Z P|Y>jsSELl$ZX3Z}BBjCekhexxU{iᒹo}qnb .v:im 襠aj zhќHM+!xfi]w(8}I`-Dr_h#s3P,e=cLz C/sec;87XSZf_l/ *>t5ss1հ(kֵV"fkR *UOm64_1:m$Em% ȓt|#.Gb}<AH,~zh*WaԌCM@1j *D92cEQDߗRB%GD4|esKVpۧjX/i6$!b >uڣBtCh*;L@>"_cwR1nGx÷5M،'ό_5 ;c>&No 54oҪRN3 f}NWXwxllcv <{Pk9)6]eT%[7@ԌC5#Lteqv-U( m!tuSN hh=`"U3Eg4!ęEk!:Hrҋ|ũ>G 3:j[&z1Cl91r U峫 h 10@|0><@[^t1^) /kz>"[Zw9 cPfrL~gP{h\xl`Do*(x "yGsk>iֻˤ}&-?4?jr]&PRRM@Z&Y0kQ-G}18LjlQcȽgI688yp =`ֲLXׅAڣ՗[3gC"}(5cPx`t gK/ڳx]+>Z-j7^}7."ָ@'/ ǣPUJ$)}vPPp 4A3o>xY)h$=4Iy[j z%Sd·)Nٺ*j -LաhQyqg|f92Ha7.Z<'/IcW 8;C0 m:ʪkRXe_\~䄨'u>ceSAI=&C {Z,Φ Yi݄˽ =xV;/C|I +sddoa 6\l:uY\,}]e6Զ>i0u=QYS+%`s>XS҇Y5T,B u1Y?LqU<\ZQ\jB>^nbx XsĶ=@ ~s=(kN ]+6LaD 8]$mSպ{PG 3{'c Ȗ_hθ$CF67(ؘ56H7^,yKde pe>,KN)Ha)Mi̔SX4b_i_Y[3Qa?_?uVt:d,FZ1] :-K+'6H#p"hEowZ:@J7f?wMGWy XRg90Fg#Ldy !N y$h-F{dn#12~U,RAAAdU,ߜ^*niԼ2sf\ѐq>FJ',b^_ַG\?{.kuZp5VcSX<}zBo(?/bƺXϷT׶yi&"#k&4ן> g]2<7lr>`QBM*\4 % ؃B 6a1^J1Nf n>IK:>Yg|v#¤yK,L_aΫ"7BclȖ5wGC&IOpyվ::} 쓈)C[lw&Yw*7}u* aɲ)%G8`@cx}jؠHmpXgiߚωqwSGjŒo;B6kq0kY_  ]y"YS!hq4T+}FNV|#s\|~Uk哿y=̬!>ɸum/r&l [*O,>RA=\Tz:`>̷AxDC~D(TdLm)0UТS:O  HBX эȌ8c μ,lWy5̥ <y`1W6_c,0g q|>Wt44fߣձ:>x0D""4QHE|T$TlА[wz?TN ;/ܿgc gfr?].NK& 3 E*d};b~@edZ{hμ˘Gs n1:]2s] 9n|733{;emV H`-LViS[6micq.zf{N)-32_uHcz#_ⲊJP-9ϱAm#ȳjp -ܪ,U5[WZQ/Yɟ.9֫7[~`?d`}\OY5U]Wo3gY`TKOL4"Hy%r{β2wʾk~.MhE!Y(HyX5iUPbATaIPj 4Wٿ=ѵ` / ǣw@\|\VQ׿`yQ4eyi*Hǃ.7qFTX? W/DҢ^[7cOqypQw9=m x6Hg QZa{`ސ}*dTbK#9'>C x*PƀP+bdVӽ7+#->t)W>EםsVeGTD4DQ~,&VۻwRS$Co<=9F X3n\}Zh,1-:n6~\uOւCՇci[({撝f$g$" no)mڠI }S=P P9s92.xSIy5 g .Q6=:ʘ`7&'%O9JgF,+S,c!X 8\SATIO_\yځfq-7jE+\FGs\z hhX^@vlyz$ qZti+Դ&P&AZc.txx/)9LfRS͍by8@P>^v(Qw9zF{&1}-A"a f4Zl?` [|%{PQ?W45͖J 7+/o\~ǠqchdXdOEUͽ".M|Tgz +| '"s)1[A&NPNX>-+ǎQ4'tjU>T HKub\3--kWO-&i] ֡(ۧQ]*q:ZtĹY!.@/@\ Ѧ##YӨomFd07Qd}C5>W.!&>s452y1͌? n!643>ߺ+>8`_EGhM:EQQ8`XsGny.>\EON[.q촕;Ri SK=}4>·HGZ T#Qnm]=E?ySF|+Kި- f[*QbK?}z@fiVzc;6J-qQnIkiB <Џ41@!<첮#6wt{)t='^K9w/lSul&·탄hv_؃{|{cR >* =[YS#nz$D*18VQQ| }4l믪z/<^QҪA1A'/Z8)[M=kT(?Ƶ> /U u iޒHt C__ O.Jk$ݎkǏd?TVWo MI Gfvyщ]阿?@u A$t硅m/}~/i#B_fJq?I\j͌u"ۺq;nuyd*@9:@FRN4))'D7$49&X76z_MN猎/MmOW{WYƵ]khu%Lʪ* F+q ~.wwkҗ[mh(e+`U(5#vz}!DI`-:M;20OYc뮊z@0ƀoGfʖ2WjZ.AU+-jsabΠ:7dm^=*hs"!6v;T3Kv2x'v0:q(nuSO*X8w+UMdϫVWbW1Ӭ=ܿ1)Z2_CUA+Z2]i=Mx<}#P=Bf3M)JcF*@i0W*MI #"Ho  'n1$LH`-:1 T1:9cŚw2sGfYv j{ /{5 a!v}s_6SǤ}?F0T⟃Ĕ߿g|>[ S;GģS M IDATC,1>$͊0 #Y)͚LQگެVWgٹ/qW8HLxX|(vm|gf[9F~lM`:Kj!- E*Z2,TGvFkjܨa%BCkqJ]<;ב:t/άv嘚jtC[_51>O6=ZDt]ҽcZ_00OhB_U-rzKƐ~Me.iᨊ:ϒSѢ: q87kǠ!K< zڣ(Ψpdf ADV`-"'JzT$+|Eu,Ď1<¶ۏrCZbo&& 5W۱WN4 .2QQT"!DZ2C~4Gu%Einf}1Bo%F~bKj~u8.]&}K7jh$ /l&za~.)2{}fڕ= Lbn0g*(̫/,Ux-~Bcp:FjiX+),= km1O|hӞi'S11p$'&G Aؓ^)BJb/ &a~$ץe6j$̾M\:t/XosqZ|['PV CaL|=vuΖ. 53 >ܷy%v9-o4< <"悽'q/qz*Z:c஘!MRhegu{nu7Bm =.qE|wo|vbXԔQ1F㾑ң)+th$vE'=Q{}` !Sf.rmo?(<|N8b<r\|7!Ɍ8ňKJG՜~.?9& n}=@Q)f1#z _nߍpv|o)C5`0_/c⬌IpUs *t*%\a4=J4ST5-h{єMd3aUUm-r "g '1_o gzV˳EG/iV6XSΎM7uϾsl;vtX-Oczn>·xa-.;`WoհKFNrAXCnYaè10Cw8c]<<@ |N:{#N pӻ,~ Lg0 ~[[j"51G~ZXK'POHE!:N-2OX4᮪\> 7Lcoƻ :>Meyg ߧbݷ? v6> ]2?{lb>j7b!:#3܇A@ |A⹁+4wSC800I_jJPdpukH-Og EtRi9-5 Œ#:Pi})>pvg;J/`Ü0e#cmB⡊**Ym5SqY#;l klǢxDH1#J*OcWɡ1(Z2wbo"8]%gf1h׀n220F lgb"QU#DkqJl=ўP W@mAlwJ]xgc&.bX~~n9wނZ;ZwlWd.?K޿{Eŋ~!ݴ#p&r+9< u%0PVO^iB:X.C_S~ڷ^raԍfCB0p4JտGSsNQ5s+\ ϽC^\h`W/^>@<*2wC->gq1hkOەZ<, qZt}4]5KSrrWA}O贠QU]z߰JGQpEpy㡚PLzUxm`"7̥Pag:e!N3w2@m&'6lөt)ljynp=VVWm1R^+A8! K̺-<^n]^ 6 `hN nncS>fxE꜑Q*eTQj0j3 z7=f_j!tAE-T`Q1~v$Za$M1Cy2JbBdZYTfuNWN)SJt᭽.w!5mRzb"eZ5p?殤+Zw⹟T13Z!, aqhOSDc賑1}au1ը*{MSsrJ9TQD3`rc\T?ݲm.6vĴ;&"!ދ**EvC%ISc"4ek5%*9P!@yetX ._{kdQj*k5 LRzw\9s&U>T h>{(|$N5MnyO1k^Ʀ:;n[5E{Hp::0{CEog JqpddT/TyYl4+ I GWcfqc2%1nF1Oz"uݣF!1yf:ּmn9u/  A5NIBO7a߱y^dVGYtEsW8@<Qex#$8Mf^GFˎK r>w'FA"pP j "CkGGw@)A =ֹe[#D7 3Tud]-=cL65HO-LgfKX82r,XҦ\EsNmz΃΃Fmip:؎-.w?*mz4w wdeli7&5~㱩ɤ\7)Qz\Bt4 '2:gsšU3m[72 s`C mϾہ_xOiǾfz5 81ISWalǫrsuTwM+8QzE :8.0S=!BӐci`^fyٞ%NȾ [ӛEܐIzݲ~]Uv0 ЪR^ش11~o[D!D9,mD/Fjkf7 `xm< Wy=0n\ 4|ө)!>M.{BqH%Zn$>T. Xvbs\w]<$A֛A}ǎOœg_Ɩ)EhP/7j X1gn" (|hyOԖB!]FRA Y{2v4KlVK-;]k{OV۫1=Ss:⧟_{LjB鍿{х WZ@ߏ]ѡB!ĩ 3PR~/R}D]~} ;HHO=Z=3bt3dm䄞nw܂>w\x^;Z΀B-YbKP-BӝL&' >y{os]ݎMR'JyL,[>LdZݎS&".22.?c+UiSibmD!1N7]&73}A+s{opJ7zy"rTPcbbbPg/>;} `LJ҉c fh _:6O"M iS7R+߻P!t 3P9v49dS0kYx^9s JexEGxnY>\5Z!<$$"CC<6uP@xL)22Ƹ%B! y.ouhaIkX:>{4& Jv_GF"fjlSki2X6fGf6rJ9>s+9i{)5/糚Ruc[U!辤*H7昿a0ȯ&t-z2Xy~ENǟ>="Z fhK[GeM f<8^zX8OLƼiP/Tt{rfo%2@@@}W_D7h `T2p (K B kxlƢP !.$}xs>pxL㱄h<^;~,|-kaD`һJ+*QZQCl<~tDHٶGlk/1ލ Ecda"b8Jf@S=F?lV_{*qL8BqZl~WpHg:ɬKF ǜ\uïº;38Ë3һ~~?#W^j5yEu ]՛mC1ƫ: Tz2=]tfVyeH59 ! x0@C=@&eE?0lR!DWwsMh<̇k=pu4lЉWlU{H>X۱5w8~|'^zAn QR )Ž<MF1ǰ`Du5PBc٥eL"g\6YeLQC Yha:6DBÄ0@?AZ{ .&/{v d6,yr=kRwVcĀoȣ= JA5m>}MiǤc ':QN)lx&x:&:] ;T! A(PPF{sB!:]%UG߬oq_f+} K9Ugbu".ǯjhUVUn"v$yJ^>;,Nş\<_lۅZCg#5R#F/;!i -cI``<.5LҼ cuTt BDRA:Yr҉ +1̫~!2$l1(߫)M8?x2V߄ 8Tﶡgt.3kC`Eh$Ɲ {ݰ]iXE<@\ya kؔޛʻxB!D&u'J=oٍiݴfëo޻'KOEgu+F 4Myة GDy&3ԥ|1ƢkwHu1h(~!A$g.`NIy_峳wU5< =fy>fs߃؈V׏`~dzLjwp7U/e:`-2X?2 Z!h ;##.E/3Wi~McJG0as/uSӧLmm ؃ʺB!,)3 VhG~p[I}~_]y)7:8^^7{qA|CA4=>kW/5̶rL.u _boBy*Hh,͠d3Fi,P}}QVY7u_bp4v`Nwނ#.7j<oo@Y~8 Jq]P}DEG>K"j2!BtndWye|u6@y[9R IDATmXxֿ`MX̸m9>eRg kogt~=:M<@XA"ߩF=B!ĩ#u'Μu+x}^c##❍x^}ݧ *1"=WCr9`} @7<kކRoDu[!/ ;3SK! 'rUUa+}|ԝ%uPmotTgG9c7obR|):^%@Io˂R!{mts_ٚJ|ZTa`ucJ'ޱtϰH!v0z 1}ȤJ {B!? ;2>O~@48/:ㆡnjΉ~4RWog&[7DdEQEQF-Xy~]M~grbh gsJ1V$-5sq1#{EQETU *]\"Y @>T+[?Aˋ9l҃쉎"77:,033mg.ofAA≀3'"2((cJOBm2,sMl$U0~`õĿniϪ㊢(K%ֽTvBIufҒov V'H?(R=*(2F.` dc ]uv25I41r_ ('˫_QEQA%v:W@ٱCtxjT֯#LA?e#0((̸O+;J/Wx[%Z*H  ^;F[#2((ҸNc>faC?"f w/l߾b$%*uh6;Hcf_ӃL= $ٲ:c+Ue\"Yw͠,g#TE F`8gB R :uMk,nWܼWQEqXp?5@- ߹MdvhICADZU/Eb5.Ruf+'2D\P0'j@s;m 3QIg1'eR(1k\%ֻi^՚(h0fkf.~>f#mnӳA@IKb3n')Mßi[0~_[3*C4խI.BK%9^av\JbX{ӊ%f(lbé܊}U/xNJR"s%X4mccКtÊ1ù`~̗<߰M[BmJ0;|WBghsA##=aR B8Ӑ1BD 3xCǦ勷(=db@ NiO,K*ma#d3Dc$։D m3x\esݖu%%fH13y&";khjڛq2)Ɏ)3 $cq"I+Jԗ_EQƭ1Xow-7| N_!)ϢdbPë,ИS,$3xN&;&Q7'FUK%>9c[ZqءLj3A||BXcU?.e9ș0 %,[-S EWTb9ݍ/IxO-|bx"@-|{jB`EtxVՄshPy, F?ިmJo_ojNX *]cց{:}WڛQs@ I1t11D۴|*(ʸ0fe6DXu;;'秧o(ߵxo;?Rd -tq^ITw ]=V51t%ߺog(Yy) k;~8qŊ3jc$?eWdv8(2&af0]^<}reg_*ؾxdc%>),vaTkUڢ.^IKzA1GI5 #!>ް;>0f2Wpu VocfaGQSc"?NWc}/ 礦<7ӑ\vv˻)~!_O8,%:x"Spi ƚnk*>B7 |Y2[Fzvkt)h&ϙNq^! *[S}᪊^z-DQ1bv#>ږ)lv~k!w}R$^zfC{p8ŚJw&| |[ |q[jF/0;Xb;SGJyX,MvH$P\4kw „fUJOyI,[]GMsJQe$FV(-#SY[w= {՝|s7&$kN% ^oXlqˇ0C$!A_aF;^-\S1wq3}p:[thJI)l !4$ !H㆗OW}a~+ĞQXgdwZ21{-s>]9L~G_{on<܌<܌#-''nBNjnm&qќdzo$$ɗ n$ٲ1ǝū6KopWn:`EQ1*.>X @fWiO:ա?͙9)#Ë&6Ty8 ZcqM=| VmH `x=ei#K:FQe .Y݁l \5,Yv? wY4wu_N/NkC݁/3ӓ׳=[&SxJekʧ _놨("*n*cQE e%;U?So H%ڲqa3Rۃ^| Gw9 q=F^O̟E'1U.n?q.3ˆY:"w >b `QbQف(nT%ֻ䧏r9/ KⒹ%n.G2㝝xݍhv͍sRSK/gz_XZB f*5g>&nc K}-#P>%? +=[Q%JFMbϰhr;z}y6B #7KgN {vߏۺMN' ST 9hW]GnW8l+A\;35p1U^#bDQQ`M+D}h ;˰0qVO9}E#FEbbxY睝xu'xcx4i(+_n`1J G㰼4ALp"'@Fkt]!y尘i-4DKB1 0h3muod3_ܖ")RG}C-ZۛiRS23av\xڭ"*=\ ˿(̧(J|b)_ʡBY<l)wRLXfWl܌%* loa.[]ˠqhͦ+qF oI:d+6 >m3S&BRJMK~[|KF2A|B_UcPeb: \'}쬆.es{_=!X94mgզy|]|iQK`3:P `􋧶ܸpjD'LWښPS{039/zSU~6S' {|eD|b7:lm"|7.G|&m;\XEx fk+Ydէ`F}=lS߼u(e/by}qESf׉(Xv97XvyŅ+Ɨ夣5G*{N/Jg·fЖeȘ?+n8ykZe ,7+A衤 ˖EuBQٽ|LSݹ{XtC-ogdRMc3h%m]my_ $*V`LښRJn$RO͊9J$+[SW&³ |wWS%8`E OLXWYR[;`ͦ-K`rN66هqbhb_`uFIc35@潺51Λ,yE١/ZbgԦimkđC!OCnobRǮ!Cl5Ǭg{|P9@? f3Dte/(z3[сø${B7 Xolo3Tpa263Y|9+ek˗A "= zHcMU} K6C{W)%vۉ~,Sjco zlbF51882;EQB]N)B35ڒJT蕆dqkē,V71:jH"JI⥲x%bkB`JtN#N ';9 :׭i URc8`b%EQC\i%iX/RmI'rHJluB;+Z*݁FǠv>?4\>y"14hl%0ultvyjCb&. ́!)>%ZVF^ wǕ4;EQ?P4q*9%X8u76cm֓SmIHIJ`~~^JFWTaagfS\]Lhڭ~=:'R$X%1*1! CfÞo.oX'fǢ(J_1əݐ8=y>">:p8ϝ=w\vQLHh~2{yRO*P%Kf:ŠZf f&FrEQ1䮊~mv3*}$IF||pa(sb@a\Rdk#T/z~L}T+ Ce˯6;EQNĺ/fӖ~{Řz3ayɈ咏8۠t$"k0(xA^vːZ+91XKMoX]|>/YLGrVvXqp!F n |ٰ ߟefxA,\W!I+SiB.{5C>CEXWvIAnlr:Ɍ 8X{BΞ\!zԡ}cXGY!A ݌ʄ?ص[+,J*^h(C|+͎CQ;NO%q]-> {b".. n 2BDt1$: k'XX` ۘku3^pVoZɠ"9(8-I庅ݾ(L REn vlCvXK+CT= I53~ʸmlntR]|~9EQƙ8b6W/y\T;]ʠx{GuKOa\ %Gb"̘ Kg}p;EysJ  0IG@4M:?\e?+AzmpuC@@5vؒlHMIժeζDŽ` y؀dNwG㚦!)ɨ["3Xq(*5{B =6e6pzqu-k椊2E=_i8;;m;m;QsgMò3֎S%V3sjX11w)'b? Y6[Qp,ti3|>}hh#HJLFzZ&S3!*:q7S̙[ρ]AAu{hHNEVzZ:_wjjPTGg9wQ8˅CQ_Fރ.3oo  +eO~|egihQVfb(|X":%bɌ#~uDł̌\de@T=t:qx ܞ0q 0{bNF||"rs zK2 IN^HlQrAxE7DoBEQb~y;Qė[]xgg56ڍ.?،>U. Dc=rl4LD@~ O5t@ :L 2:$'br H),iKLH”I3:]B 'c]CZL*y'Z?.j-䒷:Ne"棤0_\WoBumyiUX+*8MP%E&aѴIvj y!'a"1d92 $Ra8QS_ NJt!mSO]ڡ~(*|*!غa3&3FaܨN(\TVq5`$snJR"j؞EN>otdyg"jOQLw!m/ ЛTC6 %[XQ';3 a/~G#Do2Ev7qVu !*+,M0x2)Ix#ԵcZ^Y8M% A3p%3TEX̠F@GK}*!>y9(xGD(+ƾCU|73e:_<ΜOcEFGOlkT#0m "lG&&(8hirHL(fQL$O )"}m|sje(t]> K4*Cw!"1/^)9~0o(ͺW7ފ2T1_Ez>Xoob@_W׀}u xc"egtbJ'db>RkiF>"k?F\XG?5n#3UQ iiY(Huw!)__eX|tߛm[2/N<7;Yx! k W wdơ&jh+[Ң*CvήS7/4h<,C)!5r5M-ij?nyޜӶ>-Vp ,435VX.۫']E  7,VH׭=0b΂~lvbJϒ,ya.y#Ƿ.Κ+ΡLABJ=I"5PC6˧ԙG$uԍl+ /vJffzv71rJPI#E:uy:?= i|ޜ `Ů#puhKǝW\F(faڋkEachӊ%l.3`v,BR]CRJtww;! y.H_G>CQ̶XϜxC64Y`= `2Q+ Ɍ M~;#_ZTo}"f>> A_Fg*[]EWK$~,\Rob3jGzjFSkj}b,os?UQƮMgO0>AQchlAI9٘k ) hv昘ZH& ;hg M@y!dc1N'P%:=7jDا_\VXY'X&Gc.ݷiUѠ;A.J ⿣9{%T#Ң %>\F4N4Dmhoxr£+Kn0$&<Ψ^h=)#Bj?Yb׉6W.| l;\J;N=C/F7/2&:ވpL;3kf8dUP|`8FT70V bKv%Z[Vk[n[2e%1 ?OoXDZxۅ?NƊ pTD nv㞯ۇn-D8k<eLI>_\Iv ;7,[*i.-> 0A_9jM@ѝf1 ҍ / W8 ]NUdnWϗ(DߓX{;tz2ңɭI/:Z:`ríԛ2qr&lb Հ&<`îad /-}*oLŠCrԬX=c|µۉ{f3Rp!;3hƯ֎*[AD}hh98)i\X3\CQz!d8N^1#J7H)#RaGQ@OAk" M2VDN߇Q\bclWI|]x{*EF+-G|\|TzV{VE_XhPtR 1h/Ƹ qYv;6FnqI1Nj͎e>:Œ1`@V4Љ G2x{Oh~+ZQNXlC9Q=cVL%zakmGxZ݃Kll?XOHu z> -W2[Wx7EXTXsnv,aZ! 4θh9l%$آvbنk1̌w՗F9'_M+tIUELw}:~%D&dV ={pocx)IMAnZ rRSܴd%':ynvJ6T Lj L0n=eמӈ|ٛ$ Kq򢹭blu[N^)%EF4x<=[P#2i@hlCg:R (D&ZYEf(t{O{iO %D[;ȫ zpc376;&AS?DNj &:p@z-3Ya`am%# Ut`M./:-HK4;qhh:~qK98^j D[{ T7FCuvuD;1]Vӊ5;EURy'CKLm*ad2!ԁo'xcðT=iρ kHlb ; -kpu[/5;$ǟ44:J:Z՜'7%' 11Jjma$at]#uL6)c۱j]hmvA)v70e=L>)b`k ]"sC?>@LTdxژ kڼ2 mS;W^7:TØx*Ǒw]ApPj ߞ6zJGEZQS$HJ5d؊5CfQ;*)-*uipwp Q֎}pԷ9sS#k2W Jcвuł=\_H]||vAu@]} ) 8ǒƦNHui?{pڄw)hlC[{K33r F|͎CQF8y=bM 4%4!XY ɌC $g>.vkmDZvgT@Պ Y(U|~)_vumk@]{;RNUh-(m dgX3fJJrkq(!ԛE`EGUX22rR^!A2`^LR2o( G KG"CPѢ9NY3#` l#h+ᄌ9C[k;O5?R- 3 paLtb,Z p>񵑓0r8RlQWWcbDcSCq=}'RRMvߙ?) Rq;p{Z㐝uUQ+o3BQF-`VCj5`PbҊPt{w=osSWʠkqu*k[z\13\ӬHIﴹNwGW(C8QؿofF S!~wvyp:8xxO ͙x1P('A5[)CЉ4 m}/ $]H[pQc5;K8Z{ύm~>z/d&'"1!aZ {<.Q@[pf->ْ2|cPX̤?|b/cSE IDATHo$x?-!& ΁ wWWB8w/7-mI!M`M"%`b q `6uߍcpJ35t)qf/jB$fCsk#c 3CΪH137MPT8y0p1(J,閷 =h3Ck\d$q9 5n]k[B37&oY7p΁OUe| A/71DoyyjYX4mN)%Lb8 dx1NKo5iA7֢M^%4f}pا{F̭b8ґFm_w59]ؽoנIuzZdX"Ov]!v<0dZH4pSOVCDE C6r Cd ?Gj"$JÍGjx#{-Dww2{3!U#!=@m .`K e&R1; E%;:7|E𣼲hhĘk5D6"WqUD@2ҳ^Rb=p{&D5zއ֠&F9i)$̌Z;Pή;[Po{XIu|\<Ϙ1C`b(|,"4'k1EԐĚƌ3(AXw 1Bo,0S:ӯ#**1aB!bfGa`]o<_ׅ}Qst?[,L*16 nuc܉UGEw/#M$$B? f!K7T~#H|[.% Kոua]vzBc`BVTHzZ6roh,QP;֌-G._'UyFX0W]k",PX#p97?[KںF44$:,'>YHK͊׺ފtvJ|\&e$!6;E1[U> Jsַ0#Akc /Þ[|<~JdWm7%`v Q4F"-- Ka7uF.H;E t݇f/d{ -[]}K-- ZZ&Dj&9\K^HwHhTh5M>_'jנiiHKI͖XYgp;ւW[V䃱ْQ3w0̼s{Nqipvq]HKArR:hr7h=$'|E*s`;42 7 A;z2y@XhGr4c-Cb Xb1;}ȁE3XрvГfbT2,Q;ATe83;JpG'^g@f@ ;*hABBJ4ؑUjz-&"=-$վ"Կ eE>G?~[svxNAQRrunu/N[W -%N|D02}ˁjrC^ECTIX+E B9gH$ִJ^#&!83R1X2!eV{:h:&5~uU%'"99#s;6A{0SB}5j_zƋo~9s<2bCIia[G;Bb- HIJ B@í:?<>D$Xw![& ǖBR` (ۙyړjN|P7XSQiD&EB".7=G Crad  1\~>&##->̵m=<dw )QAWiuzhAfTVX_hAZjf_%X')lKVY;Rvp U/II'.ߘ&Fᎋ2Mo6- jUyfu&Fh:ٻ BcQǥjAuP?\vt> K*^oO땳-z D E]}#:fN"YbMDROO#'yy{Fb~.߉m pձL_8I"ђ@ %bC':B F; ON(BzrqqHMzPSu%50s98CvU=l4ŵ/zDGPTt=@\t֞Bh#z"&F )Yi>sjn, ýs3tz FL$>vG=v\Y;(xF} t:}_)Qtpc`xA_qR`pJ2^{96?>.d'$ s="YbZ~rIu(jx֋ˋ堤g5/=D@ցjZҲz;t&gJދ۽WIǓ{%-)*Zki/ppxm;qTJ5JJ%T* -Z=%tRNYռmae_OA/U*xěZTP\cy f 6?E T<ۢ@9\sτ l w #NNҎ~^e1#CbSʸ abMqm%k Z1H{{].Θ~@ju+ej#KB@lL<㒠P@iQqx4>Ě%N1~n8c%)~Jo5[M-^$|1=i`f|\s]w&z蓂HONIMJ!+c16k-jaoE,6q0-d46Dn'vMR.PBX5k J~{}i¬qqqЪTRnn oҐ.P|r7";#ӥD\$֔äǙuՔ"WxX, Xa[a` L6j ƐZN)Ӳ(%CHaㆳ8m |7QNY#st*3"DQH9cPng[P"fk/{3vs1/.\.J8 R ӎg\ETAB5@7BwZERhK%sHΰ LoR`!Q$M鬩9f^]O=>;jp)s$zVwAl,!6@x)\7jt Q+M4d;h"AA{zyT!R"8XAy(U*(wP+P("G(i<5҂W,0KI0Kӱ[wj-fe!LR^2M]'43F5ZYz})g70*%?%i1.$c"ÀXbc*)(D~e)"#iEJ.9fbպS _9qw\ ij;Xe3㥪x{ {~%} vbHyO-(P<⌭ *.;bɄ$RPe!q1$9 xQ3c݈?&`3L33/`^rc뚓jb橘0i j~L0Yv#RW#3ݣ+a %Y-~@U ^ ܫk֣޶Gݎ3r&; JUF{$/`bX7=KI/O)%pDL67[}9* ym< OnzNĜ*ܯtGD*"ڜ*󟼍R8ޟ_'_Ǘ[hu&w]0clB"n4R'"Jjj˾]!fikD)+N[S<e[qJBqor9R_A+?}Dڀf\1.ੌbܙX 5+(Hfc`sؘ&3KJDzU?6<&KXb5"=Tq۹ӡSw-vw%5&}]"t3%o/JO$a3}SʃeZ@T>CQ,*KbR}0?@Ya8?iz)g^'~?R_z /)/{,5G-m'UvzqQhB(>4[`" Bc n$wGB= 02)5&?MۋoaCLpD~'*7lNQNIqN':= J~yXb݇dv ?B7o&PZ1gk-5M3 %mv< <ї.Ecu`U*a 6 yo&"0"ښo=t)H %?v+;PBzL+S vV 5ncu} 8JYbDR|k'ǯY eAmٛXb}>;l֗ Dmz(O) Ja-8Rq$C4\39X` AT\vX!4!YM=ۿh0f] W9=:Ndz7]/wo ~ڝ{`wW<pj$> *XeU(ʚV[R*Qv/AZjK=?V̩"=T,#8Xp%)}wbkCg;2QCZC`&;4$k6ihD]11QXqw ӰUO[ܬYD!wP)(DEk5䎦Ǧ[bcE3Ŷ(/&챋R˻6ߊO MPy/.KK)]GcKA֠D7}> HN5 ţsQÍ%ւEh]OR*0$5™#rky{8б6DPDb ]Brl:p9z 45!$%H-?SQY5Xm'yzΠg0) [b=Bwd,t< ȌGfBbu)ح*+-!jD'nLT^X5KoQmsS>6[ݫgB.ө_B/t{K "V(ere;nab~5 q&%% 3x8$ǘs&QZ#lrP M KS$}T!<+ࣄ&Pp1/A?x@_Ϛw2\6q,GՆyo.S7^xSKMjAiA*ͻ ^2n wӵyr8L:ijNj%4(}?3'KGQQv}[)N+ƶ}C`dF(e3LHe3ZMi˙ Xpֈx>f}O!Q5)YkS@R @m@S'\(Gؽ>W e{،5jqI{o\R48x|>J̙q&b:QX ߿Kct]uK&cSy *gs R`ΥT&q8aË+cVYMZn9UWúfICPiO xbݔh+AD$0+fQ-r+AGtc Q>h6SÈ*Vű6{}lƚ yMBvb<6?[_|J-}>UBQ1.gm'9/(Hr_$D a:!n ד-vwsΐ)Sp~"R[5oTa'.66T%xavj[]ltmNP6c̈́.>K@&Nƒ\ {`zaTZ8V'3$Xztkp ú  q wxEUǶ.x^Hxp 򹬄8̻h[AjQESgBng/E}SK{)ŋuk1`$kMu YcΒ'И/H6;&dHRB8u NJ-Xq tz'[Nct պkh(7*z꾎_fO "&d.Xrx|7xݍT 6۴/+ǀDp<C8b&Z_Zݗ-x h:9ƌP+ ';PVgŁrvu'9Z ˋP=6JȩEsҴ!:rLEBXWdE^UR< K__aYW4t |m;<~*lVQ@!K{ʭM-LCZlp5p9io;085Ys=MHvbCC)A'/zf 6vǏɮ\_> LmTk Ubgrppl<*ƢϚwH*\Gӏ0_oi^^TJnq&򒠓t*4a,2-Cä3}y~ 0ӫk;g`xZ؊{ir%LPJ&S3p)mꆤ&M<\"k# 5rL[!Bqz˟{f^ui@ ^"!c?;P*MpdNjBM|?jik%GfL0،5Cl TJ2CA{y؋]H(i~l1 W"7CVK(@AZ_*:%Lb$N|[)Od7Gi%L]4(k[z@@c< OWҲ ib5oqJZ _q1R,1^vL"21Jt- )~X3]2ɘj0+Y9}l"|ḷ(pW%EJ@ދw,Jchm朙gvٌ\*Br!B(%|n⑓Gf5%nA B!Sbf6ct-å??̓n[;8B6X(O[{ W4=7?}P]b#ڐ]P9F|эSr}e H&Z%LڞL3,fAA ᎁ|rZ>'^_;׶k;u٬ɊX1;*[kwWǙᢁF4o|}dF(e G(a]A.Eyk_Nr0&!0QTo2ڛ^s潵em7kdgd\A ])5<(d>=zuT[^Aw|g{0*(Do.{kwi# Q;kk&?{=/[@`5)kZ,ffNq 4@DICM``ĕ[7?Ħ@) By\a3΍k%b{ga ^XU50آ%R_;(dC S:WÒJܜzZh`-cxr{*Oͻ*UѢyφ"־ KEpxwA$?/3If3)x ƥOAvRbT #ٵ&#aF3#+w%X"lBQ& K9&sb8[_{DpE3/)}i \*Ce@emq;WP  J>.f:eqO~ӛ)¿ۺ~ᎋ {g ?SJ_%L9:g[wΨm4Vۃ_"\UtnS`GfD*㮎  gB8{%)񡎍 a> `!TO?kZG)mv;cش`E'd r~z5:QzZ}Αrs"p卨،5ӥKQsdH,f:1Ry/X微M#<:8r*;F;p=}=ï2qZwێSql"~!?BA$ֹF~%vK=H);{_Va8h. ۱p.-wL=f*|LJjW` wK>&ćcYQl],shL\ ,@A^ʟaųN>'ÐDžUxN0'B#?w%IX7OJ=.G.w}spqVOv <ȱ_4Dk& ]™˱ʆ eu٤{Ĵ6\y,O`~MGŽ7"ShLq':}JwT"LCNH(h9#ܥ "&ȿ ^}4unS<t-_?7L|=r #^E,Vc'CҊh/"R'KFzd3HWTv|JcuoƗ37nZ#CLQJ{[tYxOs5R=f"=~{oq4ILGD%ֹx sGZdvZ.Wpcw nc]Axo=+(kkKn@vD?szܣ[WzYK"7'aL% 7;3TT4ebSZ8.(gT|J@o|w>u۽&drJ{ͬH)7r,!hLGfcAwN뒒W I8򕂒ngz,<{?wPQeGMÿ#]SW@E(n(ѪUǻJv7q*f&~AP^szѬ5 UijyEX3ݳ>VYv7CΙ[UT;\{M5/9idGZ:**FuL6|4?xǡNnI7 eݻh %|`PRkѽ|έ e'a<*x'.r`dv&+-w( Ĵ5'G*pM2 /Y:̚؅_ygLQ\4v48mVT]|ª.QThޭRtOD'֔Rn]-7lŠ[z<R%*uí.@W [FhIa(b$;aΌP觐v3;*R)368hM%% 鑬K?96/+Κ8ϼ~?Vnݎj%`Il#vX3 !_K5ޑ*,;h!a3rVFL@ @?tqO tBtaG @1,10 t$͆0]cSPY N]b`p|m!!43A1x[mWޒ U| Uըu4T~}C6퓣Da5찉=CE|y^ B|ѬaΌ31y@qc dGOPO% `x>c EL|ya '2Z\"nʭI4;/s]t(F-w5OwwN#W]i _Qnb; "2w jx}v)[kJ((}"ʼnubV |)VuKY 'OLFub (RVUant,knR| O]n{Cv|gfrQ*qygBbQ |s}`WW[~G;sj"אhsB5xC8B; tLbUZ ] ":l4]"EaI<^yr8Jnoݷq &cª9>-KA)dz-s[D]b ٴ sV"Jo0C ?(N1@WvѐlK86c0&wpchej vU @rFf}ݸefg޷!0vv.Y=h qR< TZO\V~Z+Il2ѓ2P<4yu0jO$fB}Щڮ8JBQϾAi]=? Ywr%箓u!;' HK6#>V|/ "րHgI|{ P75=?h?IVMȚV}L[D)مM vŢϾqygìC\Es^z.߉#ŶyOUC3*>DJ)_ rQ.!^8ŭJE߃(=e&9'} twIVU5TTK 3%Fqi[H~>*J,N v@9Jst]\B'Ŗ?0!XpLW۶˭4>1^#NX1' xʭªd%cE``rRS"FIǽzJ)p[GO+ dtBr1~Ŧ:1r0LC &ܨ_ 3I?͍zyYi1iޥ?kRpzQR.}RTpNm7K~Ѿs,CbW + V(ȧUwRoxꚟ;yf| Nd* l,xv6( nJܪ Ի ն[n*%X|gzAOngd`-=ҀfAc>۵ KZA" { iUX'w68nx=[ٯGM8cqTt&8Eʍi"; w/?*uǯ9ap{\J* 8\XjJ@plWr0oq'h,x  jyYcW]~I PR]cu?7w~R΄FT4ɋQ~x׫TXbpSNBAxg+ʮ~FXojG ?d4+a& "`v=ފ}WVGDR-%' cKP i}#g.9e̅iqg N,xg+ xlBIvKWH@tr8϶.m/nGfs\v }fAHz-;P,ڬ Z1 ӥ1}x>v10~#)ђ:=V` jd[t(w}ʵۋo1å7\zq(j\)gCF~&LDpAU׋_p:-.wԊ& 3< 3(ާghwx.[MbX6',ϡ(p Kڎq1:dZUrڮb0zהz#5R`χV| oPei 0U[s4vڄ@YۮxgOFyB}.J\nTJd&̼a{'3JG"NQvN!^+G waRmg;& ,E  hTc)F %jb&] D6);첳}f}?8Ιj^83 .7 wPQ״Di61Rz6k%Țhct ­"w8i!zϛb㏧<, ? @@w`Ǒ/( ȼc孳cQ A;Ę㐷Gq!I''{Yp׌)Am[S^g_}Ԣ;Dל;]0 5UYo[O!f/cWHq\∕zGYe˧"zgbmYmubv;x<`٠ն/2S|Ǡ cг z8p5edQ@ /ݼӳg~Gxg酿\7G=T,~ [ )mPvj9n=Gq\݇[*PdsjЃ6" If]d.1O~G4}[_hrAK`[uLc D/T|1b؛Kϫg!BVmچct{c\ J1&q _fvsG^n%%ϧpɵ/:V:'ҭ 'Z&OMt};k^+=S8.nvdXiM"_ !)UTe%CSl1]y =gе3B j6,VJ !]i S9"U"S w-ߵ @b2JA ?6z.T` $ 1/0&\B@`Niݑ5; `#/n2~)`~cłjZĀjPă.|):vwtk'j{Չ'akjR"z 2shmRNN*-c﯃J劣 Hox9,e`fK%aVz$ZetQMb8' 0LRƵQǂ$~[BӪ1 7EdlϤX tj 0|I}ܤ$$,]1>6|"<]'I_xc::[жYW#olE4ӋشHδQ#Pk$Ipwz9.>Rᡤ!vO+ڌEuxש?'sCS &S/(\zMݷEWsf ⱁ,3?þWl(r!+Ezǭv~XO& *zr[ḻZrDp:Ͽƶ|\d=||k΢'.Z6;7G 5O¥JN&wH:9%$Mb1I+s~8l%~0e2ڥdQY(Lo 7 vum?h@PK@c׵Z㙵7.<{ /\F`7I)xS̴ӑ#}g> :oXnb]_ÆEO#^gI?.pHO3g9.qHl,O+f k^Y_өl*kQ][`1鐓ܸGi mm!xX i];tcsq?|>~sy*ohEV㑟]]! ©AZy>V΍6zL` -5IK z]\giW¤;Yf cFuL(2 vj蝜_##TQn }alM[T1cq \^(~gz& {@]+@`sQPWEE>I袘@ϻqF+5yJL37Nt;BO)9\j\y;^tfzT` LZt۹Ѷ%R~vMOku)gLhw3.)#L5V$d@Y\ :h'iNp~ qm8N~ X_@o1^jo(2ϧĠCI;!j@v/+,.AꞐyՇ yfF1yӍD|ƚQPtS>u 5f}eX=^?Jj骘bDLKwh$i`3ǝX7k 2Wzй7M:/(}g"&7SP=. rʲp%̚ШO/>\:TV8wس1uח= M4o(x7tW=&nfTՐ ;% y2>cqqBC,O{궁"(I(X*W?}GmQ =9;[oli۾s/}y$(> 3It%p*¡IZ.FZcrRqe5xAm1~sd1U=6iqOf1;S3F˳~23HCtgw2H9.ȋŘgX5"ɨ. ݓ$Njk" iAZQqu2AՌr-[,0y]߅O1cK A}딋yVn܆Ӊ7 `H>~pp)f8cknU΀^O56 _]٢}( xk1sa߻Vf}N} qfv00n'fjT;Y56:&t[! xa^&#+zud),u> Ů+I ވ:(&%ka0D f I&#NXfn4J/[٬&&c$&d@VOsf6h.YI^ߏ?\&cdY~27%>x;K od v+s]3.ðNjQ0c'{#Io L@/߽^JJL:ׇ^e* ǘ!Edr7-VWT;QQD@vo+̺)qKcWxQbkd p#`RFsd3uvK"'6D'ˤgE)wOiu- 2tp=xu~xgqzy6o5 M%aJ剺:i8LP蝽8rYcMݶ:DzL&Qڧ%ՔƀՎz/J"'rXT+;>*-^!74TOL HY9/^f)ȫnTsD`p _bR^Ф\UQV:]vU@U ɿF13m1EytxDȘ>_>At}+<T=~ETMD}a6E' GW;kեSWL9)@ԎZ{KA5=`mIGŋ5`tfK@O\AX SWl.7[6NQIK?NYf'_]'Kb~[ȅ֝d@8Z@Do\cGF>:0r-[F~g*]H1bªe&t*\ لV Tg9lטczx^~s "W9QY~d+ &@3wÈ3hՁ_L>Z(};~9xX:l;쏎aYc-F\laIZ%L\+T7b_{U=,{|6%D`T.7on΄m'ŵB+ gMBލռrhɇ:0 ET[0["p'T':mdh">1R\1z~{·1 [6괨f?uOM+cS0@}М+QX!n2Y"$o@*тjp̵{zxac\V/]1D9*0S]c-h.g :IHPpzQZ6pP 0gbA5#` @5j[3K_94l{T4_JPR;/A5>c=.Ck"Z 9} .1T/[ ܂%&lc+77Ϳ.spH )pi 薺%T\dQbŵ9c7S<w?'ol L]wk쁽2 RڝxˎFr?#pɽw򠚋ÔBP 4}m7R+߲dm-Xr_]"DD5 (;D9]8#ي}a~ q,K~Zh>J/n4ϥ? XQ `^Ic66D{P&YЂ Ì8:q.|= *[:h1ko!peђ{89XG`AmcC΄Z%6ƷKHY9q|1aɍ׎kXc[āu_@Oյ\R׏ѽ1$-jQd!UxIygccQS {`T!IjYb(,^!OX_!wX4Qf#f  -⎣A_В$<ѧ[$ ^vx=89XG(De(\  y0oWÉW~?x^x UkgkXڟ 1R,n pJ* ܬLd[Lhm ŒU9 jF{8CM'EeM *XSgh1 fvL by-c,o<*AVmOתxQw?}<~?Yn([zoJ 0H װ!-ddըdO593W7&v) v~H`uz* iz=ʀEx!.x1b|,ՕHRxAN*V@I kuɴ 9)g~S+6Uhԙ76h 2v+l|=_6-fP^#vR N*u 7i`~#DN@ NRSA޸:iEW:Qg `f)VC)o_}٣d=0kfn#AX|"؁}SqQAǖbOAq{%;g kN,^~Mk4LLr .I-pLLoT31z'.-1U{ UZj=l/@ǃic6x. '~e/<yg0T{ˬ HIׁklnTք"#ՈcQcwo1Ї d78(|=M935! a7=Xnx2 cW;xql}3vd8]p{GAeU߲ղz7Rۙ WgNuX}w߳ލ]eUC^F R o%?ca=4{u[^wxAZ+"5]L0wUL%SuOf.z~ 8SIw O`S_~KkloX礥 Ӛ:bA?P\,foO%|Rr\x`FzLvk%I_GޗƦ,M\\62/DYﱳluuیu;9]WY 0$LḎn2ë)ca=~`U^ЯHMׂHr{(k(*+OTˌ qKJ P fLQuKgY떪]TVր0ˋq= ag-ޚ9J@jA$8^~A>Zba>A` 7{| mPUt;\P3j3^A^njMn`eR E!S0|{@/PiUjxMAH@vj v&T!6.$p?+Dm 3Ԕl_% > :`Шe @<:Cbq-RPW.R3te>_x(T@9M:6/[ܺ/0472Ov^9~t"xZsSjGFo7\8if3ZmI2y`҅`n#xqZ?03#󶩓?cT?O^#rA\OԢ2p8s OMLmMH+OFM'V@'jU,Cqi\RQZf(R$zc؜"‡]>紛#l3#X;_~TG]_Ho$Jd1 $kS]2SAuYfR+Ȗ;`wFU_N"(Qֲhs7 ៿}0/(63ahӰ(F: md[b$i7(򡠸&nS`Ы;>8Nѵ[qGka_ ^zEFS:}?Ŋ[Ӊђ%.onEJ?kxCa^pDYж~ixgJOewAcUߍ6Se Dɴk5)Q_qё1EUhAk2AšVzw@9:2'MܾRdM JlBvj ƠϨjқ-=7vi _Yu`P"a籥lOqQ*Ulۅ~{e`9ЪZδ-,Vm xj68o^Pd㍻~

xYWd,DkAU0}\I_\]zfطr6,껠m&Ht}Ns\4ȇiMyBP7$U fbAuc0^ @VSٳ| MbLcg2N  ff^0dttd cq)8]>mD2IXp\:iD`A-kw6$uVj .#ʺ@@6ؕإvsV~"=yqevJ $ɨ"\oT!ڲ|hX"Uj5 -ŨXbO= ^"3 !2N>nۖ_gEU8L\@wϘ_|& -qsb+.vq%W3<1WtDV9WǏз.b6E;2X2!]~=DߥE3.4>I)+5^HRAV/šU,ɰv$3e:71!>dTm(yP44qȴ&חMկ7bXl nϮ] ӝr#)EIbJ0DFX%Ln miX3vvt ڥ%O+#nezd\7_>L=B_ʠ֊HI)΍ dNJUD .,y2W MCORkwAL9{=3x[eTž!ߘczFls[ .;]ak?sj#h0}PfBIi-01m_ <׎I7մ1߸&J̴u~]gz5Rӵz/NTשeE7U@;3ׇ_ 3봆 Nw\qY%5X ٛ#Y(rcF#Zv6CfFbq=Fkv|pbj*zB$Ruꔩ|PTb^c՜V$YbG/ Ʃ}\s2pW8ZX!^糹\k12=W/8ᕀ8ҀE}#/n<^EWO~ Q> 9\L `cl~wB7~}"U疑 IDATXޏb É:[gS$~]rkOCk_"CT$?! en L `$ &} j<02j$T0hOn0Pv>ԃa_}=>;.;ESxWDtIV+.a^=Kys1r^yqIWlm;.&3T{WՉH)I8ZP) : *V/y 1KpK mȤFQ Tm>*7lY o*\r.6^n/%і29G  )׻˔\S&0<ݷ~)? oYENj1%6AKHtu5jFDJVZd׆TU"$k`ԉ6X7U bw7ﵸO(s\<鿙VM /gPFΉu% [&oe`y r]R_}*5-PQ{ {]h_8DQ@Z/b ktGsS9!Q!e^@xNNw8E1 ]+z^9,a[5),?yzVi-u#4qK2ʨ.wDJïevBO!r0gbo@Q|2d4"l 3Q X{|y939_`~Xma·?,^VdD{\H|\c CTǣ=d)d(WjQVބfL Rm4TɿlUcK15zaJ6گ!|U5 m~hEVr:? ae<\WC]7,)ZEjgΎlEzMQ;Lj O߈88.8=`¿ AWWPNEBf^~dXT^jZ=@X _cn+tYI׏u`a$uL3+6D@B,\ AIrhb{fׇ;LVN 2j5\>T4B@ 2Mh(2l }rȋzd%IFaI0**dNI-D&O<y<=Ʀv} Qt󭍂TQBe3N<Z91xB(nR HIUV5c@:Tr{lh~t3A7 bHzV:|G`1'ՀB:ɍ)<ZAZGՂ@ ~W.)>zDJZu(j.Fүx-jk H80VeT_p;N5-utukCo W6`n3ϟV#'D@JJpδwGbGTnqq`T2s,g{u=v <6.PWڗ-4 u9}( ^zIk|Xz0gx`ɳw+;!ސb)9cj_=?`nf6 UqjY10($ցп0dJ?kB|SKG4w.oqkM lD*:V5{\ |SWe[u 4-,QRf k0N;/^RkC7a\Q6E;]<&5p6c0W N֬,E A $vi)$)xH*ec8Xsb>\{O,|x`-*\ۄM ]'v V+¬bœ;ҔɨEfY, xQRk ~{D9>բWwd:+ yɝn#kVUť6x|jTm@يS_^Mco })qm5_z_>G>OjJwk=ښ5!Ӵ\XQU3np] '{j|@P1D 8 v?zyF fDzcw߲P}یq}|v:F:bBU އҀ{[Maʭp@;d`'jw:=.d^@7^WTsd*-ۂd!v\$'LsCADrN{ LFwVT:IIkor0H򋅖?8'51ve!`H}lKe]}AK~ً+ 1J'j*R H)1XQ5\r&-I: 'm~48% E۷9九{ O uźSy\Rj"ꬨ\$[Va+hTmAB$q1֜b(ovLJ%Pt[=IXKq~rh 5PkSgwy 7 +W#޼b9ŝ^ `g(]0@D~5jmg5z\"&w}N,XDLx}N:7: U1>cq1㺔n < aW3T2D<PW I CUqn+.m:ߕ]v[*kVlS 9&0F$&13x`u^=E6at(G5gH`II#s[K aanR[)iC 6ԫ&.Jd ]p\55RF:6N? >c69XK$.LmAM'*Ybp::^4hIBQ.6'*9bax`ŬV`>{X;IPbn#bA`qa[hO8Wc?Bs=.lŪZ'*«WfQYZ1p\5ODG>P8>G/:C`pS Da4+ׅa9 Gk8\wHU]QqzeX)…vs\?\<q UPqn:d\'06g"AۏjWY-zX /q1\, ]EH CZNŨ1 D5¼Nc:VrI`:ڻUxJi4=OW)Zf(RQĚrѴ&'cG&-ܨuԷ\գs \zn N̕ KAFkʅ+v)h>`f·1ڠwǦŕGX\i>95i D#5ѼNk4] ϭԬgRMwEQ(W7bZԉ*U:&D#5NZ1: wP(2vnVvR{U Fky @-86t;Yj:$1Hn)3*큝=v=دz\pŚhD1s,iIx )ixT@xnX~co]@N W=.X(&4ti~{)ÝԦ]J7O guC'vӡcbM4xNY*>^a/bեj28H TSdwX^~k1 n\~3 y:h6b.o!Lx\ubuŠ:][j"C (̟iuwDt;f 4tF Mnƈ㽵/3>kiK(,xDh4{pf~H{FqXexo:A;Ay3|(J&۰85Z\}UPY44-\Fk:#c:S zd>bY '|6;$mlZ pjQ2rű@a%LFk>mAAI$qfKx),[6~lm+>5u'hFk>%XQNS^7A a 9ȃ-V!#$јaFzO|;#)kĚNDz{^^3PbLV:\ѡ <ς_̡F*uS5(bbMCgr]Vma +*TT6MqN AJ m-쥨M+[^cYQa5D5 ]?[XD ^/-_wq9ƒDcz- (::jtj8w0e7H+PJpv~j`'4+D5 Ct[/1^xV'ɦV!: rEvc6XYkce jUۗ0E ZsAOT8~abM4rQy/~uIuklWad@I+kזځJ)<3=Q6cvgwZT#ˏC4bMITҰ{`WDr`+vkKMw >9WcsEg;YXwo-:5bbM)Ƨ,u>tlq?E o4P,*$D]ISn,©G]y@Dwr3> 6*`jwrjKMIRU飡FL g0LFW)o u;|B7V[pb  Lvu[wpl% G`.n(ou^`Q "6U^kKMto;c4?h׺AF<Ɖ9֛Dbrh0\%b`/Qcz3Tb[ m4; 掷Q,:pGS+D5@6c o,pWFξjPJᾅiۗ4=7Ԟ8VAa|bk#2ҲYlkwBu17͂IVbѽP"8{z qB֎+]Nq@dSLF kv :űʶ6hw#4޽nD3S(Vkum,,Վ}:R/ ㉵QD#N5D#IӡNߌmPm|ło]a[wɶ<f*ChoD#E 0BCwF栢8u98yriq bM4BXSa-=jU$E7 b^ΞْRхe:cd;RDav5κtniFt#٪c[dE;c]pZk,^ pTmdJl61 ɒ^8ϕ1޸r p&&D#5~%ӧU c AN/BmCc[V}> L\džkIFaV a,NRt[ \ Bfwg=K$U{$na&m|Ȍ{<$Jekۂmވe lK`첍WN7č;~~T>ژ簇ZYE\9F kʝ%zŽm)|i7[:pk|LQ. qmP*L7J^za^Tta)5a&@7_d!zQFKR#Kd{-Q+k3šĒ7j^/V)6\lEu%S+ MQIY5NC,ؔZ,76,(it=6"f8N)Z:=ŢRE6hPHpl y͎m9MM@ eäcw?=׋K[&J tۂo$Ek$Im_ tQ*iFŕ{+h&`V|/""5u'v}7$JfkyЧh&ױ:LUn ӕEAz{m [i,\k,鱬/;67&dmHS=2UDߵQ(D:LЋqFD6JBDd`^^ Seժ5ш`bMb {IߠW)(= .WsBذG|;E7mcMD۲Tஒ[;HfDz/]WXԬ{ 5"%Oqrfw(d A!"\_i付.Z]zfĚhD0!/R JC ϱ-*j3Ik%I)VQJзIZ6[Ƕ NЖ B'8 3f 3z%O|X k 9tRVJEwdVhD?˴6ly_|Xo֕{ w9?`J{hBV-mYpl XH Ơ6+JSE- bL6"m;s+"@Qg ,("3&֔/b@ 틾4pZDFIvy),Vn 6;Y#."JO7޿\Yj;$z#z7{!"*`nt>1hIv;Kבuԥ}#h L` =kc~Jgu[V1;]D1D40zV0]>`vR.%7qb`0C(58" k>zÀyǽn'*-sYA4δZ]QR٩zJq]ՠ9Cϼ8(Ě ~\?vs3C?JD+׻h4*ױ1;UTqd7Dw!W:]|H,|鋿sh5Hp~y``+'p!hlIzz02rTՊv7rkw#GFoM8zX?3?ZA4(A.9LU .n;h{XZi̟C0CG= _6S*()hV;DE[ jLU #[Wnv* zȤP"qDa 䥏Q VʈhNN7DEG[9随j3ӻ$Mԛ;T| sc#`1ß==]-o L*P_zD tnN7ˉY2]*;t#\Dg ?[|#ҟ14# ą-< -V|OT5ȉ^#ctx=Ge)TJ*2ӤVXZi3fF<_bhDGqh`^<{ w^Dp|ٙ':(AI+8As jCXs Lpzpk#0#O]_YwMt0<Ё\8 {NzFQa"RDq0L Dq#K)AwP*y(=cvA6;.uz~#?&ִ/&3?ȏyl fʘ೰Dh(I)D#NFgqlG }咇RE@/N vsibm^Zj`DGLg9/̟:Ƕpfba6  1@H8Ht8J$)DN"bAw;cŏ4ո|v'&$}#O]2̸&ִ'@s?k`r©)64HN5 Ij6K6& aޒcPȒBZpX:ڮ4#x39,#1ΟOy2ϔ"B`R`|&6R}wm ߳Dv},wѸьvg^8}r^`Vֺy24J \ǂp cuf9H6 e abMrWqkƲΝHrԛn,alW 1/|lGD4>XӶ^z?X /"l3w%%hqs𗃶_?cD;=J5$8u?~ٻ&Q5m)I(pn~ 7IlRd+ đozzUTʷSO]B"il@wyٿiԉ*JEo` RA^/E.iVJ`VZ}9DDC3'kxR0W%? rh$+SP?' 3Syn'A#I;v`; kvaDD4QՋHoyL2/iqXm4|'ծcځS!Hb$Na%p\ǵzY͕m"q]OpZ}"K1,e=d 䥏2`QDpUQU\ [,f+DD{W7PoyˣO]sXD#5>TpQ;^!x?j4H "m'ڮ!hrrV>X#Gѽj!/???oDD5w/'M +d(e"78ZaN+AIƲ h/ϕ Ys1;h`~7=ju}uw@De ,K`YY'e DeJ d7VVvYu 1 ny-{q,T.y_;&1&@̻FV|K ~荕]XvN'JPL<tXc!L yt'F('":JE|C|X;&<1p6{PAYEH-7f剛'\o*\B"Uf-Zr(wL'Ji@hwcXcb=̃ٴHDDT-y(oL'msb9wDycb=*ekeTp Tq卉sX1xg:8z>{DDD}kl|/z~^c(4TM0[xD"":8ϵM1卉 Z n\$"Ap#:*XOXc "8=Gh X1hFP;"":D Rq剉$3?#N_*y@';(?3wG1@K4XC$  %Z,l CDb\GQXO2#}Ĉ~_D)^׬c; `Q(0&3QĚ& fie B@kn&c8҈-[z\WqVZ;z T$PJP((mcR^ ML ItYWz DnjOA1剉$3zb&+ @͸FMeDQ(JO= ~Aq-5E4^QXO0%V]#; ʓg,TjĠ$Y]vpR ۶ʸW,a[[IwDycb=D_,[P8Y]v z zajHk $$EZ8]A׋چc[=TJ.%=b1o&.flEFZ\K :QN?J7@Ě;˾9t9Q`ez }6k\Q)y(]p1h >_}ߑwDo+h~o;$Z҃fD EjH};h( XmseNzgoeA!RfJc | @sjV9Bjuޅ>@}'P* 3^Wl?hSkV;;],*xsU=n622޸zqAJDw23&5mJ"o/_#=h83S ` o4זڥUwdm07h0M4ԑ\R*s?Qe¡Jkx]$] l4?;QĚ6yzڌh"t`CbN7µͬ\:֛݁t+!./5yJw,D5mz;\Q^l[Νav'M_-k7蔿;t4wquiHZޱ&tc7lpu}#]MaVmd__hz\ɦ#Jז{yC4jXm,߹zͼ!:0e Nᾅ8ClAkuYjI Gױ.>rh0/}ڭet""r͡RIūWpFnijA4T˫h4NV IDAT{slGt'&tw=D {\Ylƚm);=S+ci6kkX\n׋ haՋkF5's hq9Mz#@k;]RLFkvRťkuDq~=$Ƴu>jx.͔V;ĕ\:}yD485^+T.StղrZ#۶0U- ґu6qEmxtl3.-5 4##}\vd vw]Zd ,K)BU LW^[ʦ=ֻHKRWX^ko#_^DDetIhǟkUQ*p8׋qj}dǕJES ;.C|/sX1i[/?|N)\2B+~DE ^tǔ+K.j*%I61j k;>}1mŏy(nn[*X8Uclj7ƧwRjCZ@S/Lpu`7i/=ԥ?*C0Ӆ0mn8DGQڕ>t9V17[F q" [=ԛ$wR*eղ?c.ju=~/}r@ayLi.?n@~Y)y86[Fl<5 IS$FdƉFj$qDkT#¤=ղJC˫-4!?%7{ԏD{ĚgXp03U&ɱ֓v!N4$EH8,ځc[R K4:bZ⡷={i}F41xt=y:,}@ZT"<'1IEYEq d:0LD$\rY2N7z7+FO<3h`H4!XӞӖsj^GPhDq}E)$AIb pS,8<]ǁ1a" tl#Sh.9YJbERr.@|ncEB}ܣO_Cyp Cۅ0̸ce.E7s"~"%Iz8o4~,KevA;Ga F>@~k<qt ?#yEg;(\ 9#ey3NZC;Um߁R,S&hC4[=}~1Cϼ2'$:XӁt !דm+<osmϵ \"qY#3JR$6r  Z};ݲ,R `[ Xe ,%ߖ%P*q Rmurh tӜji"Baye6<džY7?0输 JRa %x+_NW~-OYw,DGŨhL]8SyrXJ~-(`׃3RDө`6Wuj<-h(džc+ضDZVCx3dlua78a+ΨU{Op"`1Ӱ c!"yR ?d[% KUfroh M5TCi?}(bbM_b< ΈFP{/QńՋϟ[" N 4!:ʘXӡß==x"X&L ? DLih.|Ag|}ޱMז_;IĚD,P;"#:?S>w D5ϟ;(i~|XsB&֔?qe?f&DDsoK $cbM#‡NV?)U,X52jDȊ@Ui) uS+ uս,WKXZjbft:%`fȂN }!i$e['婋 1s SV/|CЈʒ0 KpMl\q$c?v%3O} ֹƹA̓ x3p<5DK}\!x` ߢ^1L U^7ʘ zjםzj3?}D_k3 _/|-7xM1S^wr;pnLitq)mpR'!kJP"yC_*D^&.D5QϿ 3*g5@Nf"`IdK8uk`5Y3ה`U kLVM`L &He664W Ƙ2D*lE3cC0omA["m?`]Y%!+ ko]{ #8&DE*QUKi*R}4LSAJŏ7Ëh٧⮭J♂9jAԒ$KZzɠb$"""""""""""""""""#5DDtdfy~^9İhqŚƎR qqHDsH`bMDDcHkqox DD`bMDDhjwaBD5i>ƘÈhk"";Ƙ?ݾ4@nĚƎmۿ @.R8DDX?=#!"Xјt:? wq_T*?vq@ g}ay疫("_M&DD4>xnV{$vwDGų>[;'>?;x{y tDvc[S@7F蒆tۈ-5_\//勉5m>ל9٬x&J=zSmۧ*Dz'Onu}@&ʐmq_;3?WxD"8L+TtSZWMhptzYVUȊ“hZ*'@V6@p ke4g{a~<`fq6hSOH)"+\8Ϋi'm6؋$UUorhš(m`Dh4defѢE8Bh8{}|G.;|HU)_8O\Uc}THmbA3>GZ}(O-iCCEt鞯N9q2I&\׏v87g Dm{j B8 Ķ t85➶cԒA0' +F,f-{O \ݽ9lyWժ=oGh@*Zʳ5aMMMA$KD/\fLD"~w饗YN5,zHaaMgMEdN$9dLض=#e=a*kILh}8w|Y KxSvdDUYqJ˪2md0["$~?ZDvEx!ʻ>X&"Ko߿kG "aUa,T@1Q|+W렃1"_xG"g Uo*gc~,q0cٚ?=7mts8yTYYyd u>:ED7caMh4mۍb8dAuu /PBP@Ua_`z WU`<թ;Np8y] ۊW DXp/7$B#!mKwk z*]x8#A7ϥqlڴAUe>&"9阦 ~4a„ =?hАmkǹKNDD{ DTbT*u *..!vpS<O о!OoTžފQ֒"Ά`.4aQB.X*K^=N?/_ҾEPa܊vn/kڶ}zYwLrs S.,ygWڶ<:^Gm;†LRs Ol^ڿL6Y֒$:]Z\˺}i;-O]C+^x~-mW-0~%ۧ7$8m0{3o8iqض};KyQ\9$"Mh{j1zC_bCDdjHUXh4caM%!Yg>ٶ}|4^U隷ϜaNݯx{ZC{8 fo#/B:[\fhѢap)Wi7OG]]]eY$Xš(Ki~Ӥa|}STdӊyU2O?M,Z{XP u&:mk}(3 ~@EQOD+nQshš(\׽4VD=|j*< .Y${eU&g 4gSUO9z\PTTt;> "XXeQSSJO7vu0 Ot!]a:W=w  뺋Es}}`&ʲ_,^#vr8+?b%d}885tnU]a;=f뺿Td>&" XXeY,{.eYWeY_auP՛o*bD=Ѽ1nf3۶+eqeSSSӛDD kSgTVVvUUU"r!b1]{|Od.3KrU]zODO,|ydoY7_ixy30%u9׋ZpO0wo'<,{Yo!"۰&A<OȭxbӦ#th] ʲ#2`(+W^!= Հ;>FKAVIC"aaM䳆p0+BP]<Ick<ľSPP42': #*I]yk&("/- iEov~8Q۵ `IۂYOazFm#p{2Dš(TnjNIDATV nwhIIɅ/kTVV^ڣߑɑKTVxGA .,xFUyQ,]eХ",qwA$(KHށ˖t'QWo&"~VGMMMj!ziY5xJ&{- +ZۖȝEZ(= oAq;wA$U@[Dn(<(Df;,qжpjkk0j@Gz; O\4DsnqϙNldU]!%KH._^T*.S SsF8[x,Q&ʑX,^Dƫb!"@ cӹzs^n)]@0f,&eFY b ,LvfYs}Q>&ʡƧm^`I\`:\G,˺4vKԣ8'[B:iox {}ֲs]kBVf{Un~2pڴi]7nT_SSSP__?웕\p]w6!"!ʽxB8>ԋ555Ů^aF^\-PkFײNoMT_UM*RwRml0䛫;W"rDD{ Dy e8Fk555===#݁WAUz"R5QL2 Hs"ewGyrʕA ×?qީ{]#K3G²,/P(+JUu7;DD{+Dy_zٵmuk<{cVx 鬑 )9Yc#;0d=+))9|FJzhVDDWaaMG6 ""H6]CU*.ݠe|H*XP#ԸhS0$' " >Q>&ʣfUKgֿ+WIwt^$#WW9.~Nee|Kfm6hš(  e:h`}܀=rT dAR>T|L&a^lYg(DDyš(;Eg>LKDd.w355*rQ3gsJZt\hѢg0UUU\haaM4 Qq^dTAnqEpWZuF41䂈`Q6{70DDbaM4 ׿#"weqʔf\X7Gy$VEg#o~F˚$#h4< 9?xiEp8\ \ED4&%m4ݽX,+Q0_<5P4 h%􃌮~0۶})jDDc kQ~ @4s{K6i|z:^ ~(y3t}n?ly"gGVi!E:ُ|l>u* MXX"79DdESSn}Z=lB0Z:kw+oi.v1{Z3@j/k?xv-Vo&[O RmLLR+m۞w ß~|o1!"k&E6'inF.50?pqykb̖'Z{k+Z pq 2҂|}:&Y3D=wme[,uuBU Yt[{ buEUȧ6TK +n';uttxo)|#[@vsT*5å#(p(L/EuJDbdzјšh2NU_޹sR?٭mᬗVTkr ZP>h7ĢwW-('_Co ^*ocKKK? я D:ޛwE]?!"XXJHqc˲n=>k;TnMBa#E}̟#Wtfta`a~.TWW8N~?HU_OEQ/wkg:@1 JD Dӷ=n7!-ޓXPq98v 5 șL>~쭉PE5,LUM&c-3 *ٳsv88]R `h>3X,ڑTh4݉‡F۶y4uG>k[8YsOiYuBJ}UUc K.hg<1eߚqךRDA Z.m g|il ,`r?9,ˮP<Qx5(cvm)"hnu\X{~aPG˟5/Ss//zktMt&ȁpq` { y]!/ (^{O5zVSSSUsD4yKUQUrqnp"!{@d  kQ䢋.:8L჋z{,2S֌=n=ԅh@;TeX!5JܷHX_Bߛ}n7Ed&,ZURRK3m{'PqןcOPh q]c"Tն?QwN< B4^)"|Vܵf} yO"SvsȖ{2j]X,wU6""J^$%< '-!4ĊHV k"р5(J3{-J!|!"ڍ5(пx}JdKW|K(XXUv%M~B)9Cf?s!"%Dy uC<[BDR2X˲5XXYIIƫ>CP(Ooohh`aMD{ Dy&")S~[2D?~0| ",򨲲rh/"7ֺ~D ˲.ҷD bȲkLcU厎6Q+yx˲1"5Qض} MExqǚ(jTTj2wN47a -@HDB;"¶mYXZ*++ϰ,k3V&wrfbOO& 4;SgN4TWWJ2FU_"򠪮)--}{qH';GDnު(-Mw<hkEth߲={."LU/;vl^8XU'?E:qXT^5Q<>yڕSTLpd׿fø\FF^G#P(4>c:4544lz|E5}P&ʑbņO466>g>49s#w.C뺧FX!"D9ظ3;ǩp(kls:u8|'CDK(l>}Ũ X9Jֆ ȅ>sUuݟ477㵉FD9fU;;nR~8w#Q$3Y0lH.4J&]F#DyhѢ@HD?-r_wn)=BUȱ:14=軚yϊ_T58[caMDV[[|饗,u'jg NR=QXXZM$DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD@pEroIENDB`yaegi-0.16.1/example/000077500000000000000000000000001460330105400143245ustar00rootroot00000000000000yaegi-0.16.1/example/closure/000077500000000000000000000000001460330105400160005ustar00rootroot00000000000000yaegi-0.16.1/example/closure/_pkg/000077500000000000000000000000001460330105400167205ustar00rootroot00000000000000yaegi-0.16.1/example/closure/_pkg/src/000077500000000000000000000000001460330105400175075ustar00rootroot00000000000000yaegi-0.16.1/example/closure/_pkg/src/foo/000077500000000000000000000000001460330105400202725ustar00rootroot00000000000000yaegi-0.16.1/example/closure/_pkg/src/foo/bar/000077500000000000000000000000001460330105400210365ustar00rootroot00000000000000yaegi-0.16.1/example/closure/_pkg/src/foo/bar/bar.go000066400000000000000000000005341460330105400221330ustar00rootroot00000000000000package bar import ( "fmt" ) var version = "v1" func NewSample() func(string, string) func(string) string { fmt.Println("in NewSample") return func(val string, name string) func(string) string { fmt.Println("in function", version, val, name) return func(msg string) string { return fmt.Sprint("here", version, val, name, msg) } } } yaegi-0.16.1/example/closure/closure_test.go000066400000000000000000000012601460330105400210410ustar00rootroot00000000000000package clos1 import ( "testing" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func TestFunctionCall(t *testing.T) { i := interp.New(interp.Options{GoPath: "./_pkg"}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } _, err := i.Eval(`import "foo/bar"`) if err != nil { t.Fatal(err) } fnv, err := i.Eval(`bar.NewSample()`) if err != nil { t.Fatal(err) } fn, ok := fnv.Interface().(func(string, string) func(string) string) if !ok { t.Fatal("conversion failed") } fn2 := fn("hello", "world") val := fn2("truc") expected := "herev1helloworldtruc" if val != expected { t.Errorf("Got: %q, want: %q", val, expected) } } yaegi-0.16.1/example/fs/000077500000000000000000000000001460330105400147345ustar00rootroot00000000000000yaegi-0.16.1/example/fs/fs_test.go000066400000000000000000000020631460330105400167330ustar00rootroot00000000000000package fs1 import ( "testing" "testing/fstest" // only available from 1.16. "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) var testFilesystem = fstest.MapFS{ "main.go": &fstest.MapFile{ Data: []byte(`package main import ( "foo/bar" "./localfoo" ) func main() { bar.PrintSomething() localfoo.PrintSomethingElse() } `), }, "_pkg/src/foo/bar/bar.go": &fstest.MapFile{ Data: []byte(`package bar import ( "fmt" ) func PrintSomething() { fmt.Println("I am a virtual filesystem printing something from _pkg/src/foo/bar/bar.go!") } `), }, "localfoo/foo.go": &fstest.MapFile{ Data: []byte(`package localfoo import ( "fmt" ) func PrintSomethingElse() { fmt.Println("I am virtual filesystem printing else from localfoo/foo.go!") } `), }, } func TestFilesystemMapFS(t *testing.T) { i := interp.New(interp.Options{ GoPath: "./_pkg", SourcecodeFilesystem: testFilesystem, }) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } _, err := i.EvalPath(`main.go`) if err != nil { t.Fatal(err) } } yaegi-0.16.1/example/getfunc/000077500000000000000000000000001460330105400157575ustar00rootroot00000000000000yaegi-0.16.1/example/getfunc/_gopath/000077500000000000000000000000001460330105400174005ustar00rootroot00000000000000yaegi-0.16.1/example/getfunc/_gopath/src/000077500000000000000000000000001460330105400201675ustar00rootroot00000000000000yaegi-0.16.1/example/getfunc/_gopath/src/github.com/000077500000000000000000000000001460330105400222265ustar00rootroot00000000000000yaegi-0.16.1/example/getfunc/_gopath/src/github.com/foo/000077500000000000000000000000001460330105400230115ustar00rootroot00000000000000yaegi-0.16.1/example/getfunc/_gopath/src/github.com/foo/bar/000077500000000000000000000000001460330105400235555ustar00rootroot00000000000000yaegi-0.16.1/example/getfunc/_gopath/src/github.com/foo/bar/foobar.go000066400000000000000000000001331460330105400253510ustar00rootroot00000000000000package bar type Foo struct { A string } func NewFoo() *Foo { return &Foo{A: "test"} } yaegi-0.16.1/example/getfunc/getfunc_test.go000066400000000000000000000007061460330105400210030ustar00rootroot00000000000000package main import ( "fmt" "testing" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func TestGetFunc(t *testing.T) { i := interp.New(interp.Options{GoPath: "./_gopath/"}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if _, err := i.Eval(`import "github.com/foo/bar"`); err != nil { t.Fatal(err) } val, err := i.Eval(`bar.NewFoo`) if err != nil { t.Fatal(err) } fmt.Println(val.Call(nil)) } yaegi-0.16.1/example/pkg/000077500000000000000000000000001460330105400151055ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/000077500000000000000000000000001460330105400160255ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/000077500000000000000000000000001460330105400166145ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/000077500000000000000000000000001460330105400206535ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/000077500000000000000000000000001460330105400214365ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/000077500000000000000000000000001460330105400222175ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400233260ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400235145ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400255535ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272005ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400306205ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000001251460330105400325650ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("Fromage") } yaegi-0.16.1/example/pkg/_pkg0/000077500000000000000000000000001460330105400161055ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/000077500000000000000000000000001460330105400166745ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/github.com/000077500000000000000000000000001460330105400207335ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/000077500000000000000000000000001460330105400215165ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/pkg/000077500000000000000000000000001460330105400222775ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/pkg/fromage/000077500000000000000000000000001460330105400237175ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/pkg/fromage/cheese/000077500000000000000000000000001460330105400251535ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/pkg/fromage/cheese/cheese.go000066400000000000000000000001231460330105400267320ustar00rootroot00000000000000package cheese import "fmt" func Hello() string { return fmt.Sprint("Cheese") } yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/pkg/fromage/fromage.go000066400000000000000000000002241460330105400256640ustar00rootroot00000000000000package fromage import ( "fmt" "github.com/foo/pkg/fromage/cheese" ) func Hello() string { return fmt.Sprintf("Fromage %s", cheese.Hello()) } yaegi-0.16.1/example/pkg/_pkg0/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234060ustar00rootroot00000000000000package pkg import ( "fmt" "github.com/foo/pkg/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg1/000077500000000000000000000000001460330105400161065ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg1/src/000077500000000000000000000000001460330105400166755ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg1/src/github.com/000077500000000000000000000000001460330105400207345ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg1/src/github.com/foo/000077500000000000000000000000001460330105400215175ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg1/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223005ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg1/src/github.com/foo/pkg/fromage/000077500000000000000000000000001460330105400237205ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg1/src/github.com/foo/pkg/fromage/fromage.go000066400000000000000000000001261460330105400256660ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("Fromage!") } yaegi-0.16.1/example/pkg/_pkg1/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234070ustar00rootroot00000000000000package pkg import ( "fmt" "github.com/foo/pkg/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg10/000077500000000000000000000000001460330105400161665ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/000077500000000000000000000000001460330105400167555ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/000077500000000000000000000000001460330105400210145ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/000077500000000000000000000000001460330105400215775ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/pkg.go000066400000000000000000000003331460330105400227060ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/vendor/000077500000000000000000000000001460330105400230745ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/vendor/guthib.com/000077500000000000000000000000001460330105400251335ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400265605ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400302005ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg10/src/github.com/foo/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000001251460330105400321450ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("Fromage") } yaegi-0.16.1/example/pkg/_pkg11/000077500000000000000000000000001460330105400161675ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/000077500000000000000000000000001460330105400167565ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/foo/000077500000000000000000000000001460330105400175415ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/foo/foo.go000066400000000000000000000001541460330105400206530ustar00rootroot00000000000000package main import ( "fmt" "guthib.com/traefik/fromage" ) func main() { fmt.Print(fromage.Hello()) } yaegi-0.16.1/example/pkg/_pkg11/src/foo/vendor/000077500000000000000000000000001460330105400210365ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/foo/vendor/guthib.com/000077500000000000000000000000001460330105400230755ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/foo/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400245225ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/foo/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400261425ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg11/src/foo/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000001251460330105400301070ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("Fromage") } yaegi-0.16.1/example/pkg/_pkg12/000077500000000000000000000000001460330105400161705ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/000077500000000000000000000000001460330105400167575ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/000077500000000000000000000000001460330105400210165ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/000077500000000000000000000000001460330105400216015ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/main.go000066400000000000000000000001551460330105400230550ustar00rootroot00000000000000package main import ( "fmt" "guthib.com/foo/pkg" ) func main() { fmt.Printf("%s", pkg.NewSample()()) } yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/pkg/000077500000000000000000000000001460330105400223625ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/pkg/pkg.go000066400000000000000000000003121460330105400234660ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/bar" ) func Here() string { return "hello" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", bar.Bar(), Here()) } } yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/vendor/000077500000000000000000000000001460330105400230765ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/vendor/guthib.com/000077500000000000000000000000001460330105400251355ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/vendor/guthib.com/bar/000077500000000000000000000000001460330105400257015ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg12/src/guthib.com/foo/vendor/guthib.com/bar/bar.go000066400000000000000000000000761460330105400267770ustar00rootroot00000000000000package bar // Bar is bar func Bar() string { return "Yo" } yaegi-0.16.1/example/pkg/_pkg13/000077500000000000000000000000001460330105400161715ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/000077500000000000000000000000001460330105400167605ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/000077500000000000000000000000001460330105400210175ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/000077500000000000000000000000001460330105400216025ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/000077500000000000000000000000001460330105400223465ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/main.go000066400000000000000000000001621460330105400236200ustar00rootroot00000000000000package main import ( "fmt" "guthib.com/bat/baz" ) func main() { t := baz.NewT() fmt.Printf("%s", t.A3) } yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/vendor/000077500000000000000000000000001460330105400236435ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/vendor/guthib.com/000077500000000000000000000000001460330105400257025ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/vendor/guthib.com/bat/000077500000000000000000000000001460330105400264505ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/vendor/guthib.com/bat/baz/000077500000000000000000000000001460330105400272245ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg13/src/guthib.com/foo/bar/vendor/guthib.com/bat/baz/baz.go000066400000000000000000000002661460330105400303330ustar00rootroot00000000000000package baz func NewT() *T { return &T{ A1: make([]U, 0), A3: "foobar", } } type T struct { A1 []U A3 string } type U struct { B1 V B2 V } type V struct { C1 string } yaegi-0.16.1/example/pkg/_pkg2/000077500000000000000000000000001460330105400161075ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/000077500000000000000000000000001460330105400166765ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/000077500000000000000000000000001460330105400207355ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/000077500000000000000000000000001460330105400215205ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223015ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234100ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400235765ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400256355ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272625ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400307025ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000002141460330105400326460ustar00rootroot00000000000000package fromage import ( "fmt" "guthib.com/traefik/cheese" ) func Hello() string { return fmt.Sprintf("Fromage %s", cheese.Hello()) } yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/000077500000000000000000000000001460330105400321775ustar00rootroot00000000000000guthib.com/000077500000000000000000000000001460330105400341575ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendortraefik/000077500000000000000000000000001460330105400356045ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.comcheese/000077500000000000000000000000001460330105400370405ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefikfromage.go000066400000000000000000000001231460330105400410030ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg2/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheesepackage cheese import "fmt" func Hello() string { return fmt.Sprint("Cheese!") }yaegi-0.16.1/example/pkg/_pkg3/000077500000000000000000000000001460330105400161105ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/000077500000000000000000000000001460330105400166775ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/000077500000000000000000000000001460330105400207365ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/000077500000000000000000000000001460330105400215215ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223025ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234110ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400235775ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400256365ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272635ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400307035ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/000077500000000000000000000000001460330105400323505ustar00rootroot00000000000000couteau.go000066400000000000000000000001241460330105400342620ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteaupackage couteau import "fmt" func Hello() string { return fmt.Sprint("Couteau") }yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000003061460330105400326510ustar00rootroot00000000000000package fromage import ( "fmt" "guthib.com/traefik/cheese" "guthib.com/traefik/fromage/couteau" ) func Hello() string { return fmt.Sprintf("Fromage %s %s", couteau.Hello(), cheese.Hello()) } yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/000077500000000000000000000000001460330105400322005ustar00rootroot00000000000000guthib.com/000077500000000000000000000000001460330105400341605ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendortraefik/000077500000000000000000000000001460330105400356055ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.comcheese/000077500000000000000000000000001460330105400370415ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefikfromage.go000066400000000000000000000001231460330105400410040ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg3/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheesepackage cheese import "fmt" func Hello() string { return fmt.Sprint("Cheese!") }yaegi-0.16.1/example/pkg/_pkg4/000077500000000000000000000000001460330105400161115ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/000077500000000000000000000000001460330105400167005ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/000077500000000000000000000000001460330105400207375ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/000077500000000000000000000000001460330105400215225ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223035ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234120ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400236005ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400256375ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272645ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400307045ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/000077500000000000000000000000001460330105400323515ustar00rootroot00000000000000couteau.go000066400000000000000000000001251460330105400342640ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteaupackage couteau import "fmt" func Hello() string { return fmt.Sprint("Couteau") } yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000003061460330105400326520ustar00rootroot00000000000000package fromage import ( "fmt" "guthib.com/traefik/cheese" "guthib.com/traefik/fromage/couteau" ) func Hello() string { return fmt.Sprintf("Fromage %s %s", cheese.Hello(), couteau.Hello()) } yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/000077500000000000000000000000001460330105400322015ustar00rootroot00000000000000guthib.com/000077500000000000000000000000001460330105400341615ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendortraefik/000077500000000000000000000000001460330105400356065ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.comcheese/000077500000000000000000000000001460330105400370425ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefikcheese.go000066400000000000000000000002131460330105400406210ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheesepackage cheese import ( "fmt" "guthib.com/traefik/cheese/vin" ) func Hello() string { return fmt.Sprintf("Cheese %s", vin.Hello()) } vin/000077500000000000000000000000001460330105400376365ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheesevin.go000066400000000000000000000001161460330105400407570ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg4/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/cheese/vinpackage vin import "fmt" func Hello() string { return fmt.Sprint("Vin!") } yaegi-0.16.1/example/pkg/_pkg5/000077500000000000000000000000001460330105400161125ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/000077500000000000000000000000001460330105400167015ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/000077500000000000000000000000001460330105400207405ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/000077500000000000000000000000001460330105400215235ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223045ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234130ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400236015ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400256405ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272655ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/cheese/000077500000000000000000000000001460330105400305215ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/cheese/cheese.go000066400000000000000000000002131460330105400323000ustar00rootroot00000000000000package cheese import ( "fmt" "guthib.com/traefik/cheese/vin" ) func Hello() string { return fmt.Sprintf("Cheese %s", vin.Hello()) } yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/cheese/vin/000077500000000000000000000000001460330105400313155ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/cheese/vin/vin.go000066400000000000000000000001161460330105400324360ustar00rootroot00000000000000package vin import "fmt" func Hello() string { return fmt.Sprint("Vin!") } yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400307055ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/000077500000000000000000000000001460330105400323525ustar00rootroot00000000000000couteau.go000066400000000000000000000001251460330105400342650ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteaupackage couteau import "fmt" func Hello() string { return fmt.Sprint("Couteau") } yaegi-0.16.1/example/pkg/_pkg5/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000003061460330105400326530ustar00rootroot00000000000000package fromage import ( "fmt" "guthib.com/traefik/cheese" "guthib.com/traefik/fromage/couteau" ) func Hello() string { return fmt.Sprintf("Fromage %s %s", cheese.Hello(), couteau.Hello()) } yaegi-0.16.1/example/pkg/_pkg6/000077500000000000000000000000001460330105400161135ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/000077500000000000000000000000001460330105400167025ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/000077500000000000000000000000001460330105400207415ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/000077500000000000000000000000001460330105400215245ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223055ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234140ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400236025ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400256415ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272665ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400307065ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteau/000077500000000000000000000000001460330105400323535ustar00rootroot00000000000000couteau.go000066400000000000000000000001251460330105400342660ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/couteaupackage couteau import "fmt" func Hello() string { return fmt.Sprint("Couteau") } yaegi-0.16.1/example/pkg/_pkg6/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000003061460330105400326540ustar00rootroot00000000000000package fromage import ( "fmt" "guthib.com/traefik/cheese" "guthib.com/traefik/fromage/couteau" ) func Hello() string { return fmt.Sprintf("Fromage %s %s", cheese.Hello(), couteau.Hello()) } yaegi-0.16.1/example/pkg/_pkg6/src/guthib.com/000077500000000000000000000000001460330105400207415ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/guthib.com/traefik/000077500000000000000000000000001460330105400223665ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/guthib.com/traefik/cheese/000077500000000000000000000000001460330105400236225ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/guthib.com/traefik/cheese/cheese.go000066400000000000000000000002131460330105400254010ustar00rootroot00000000000000package cheese import ( "fmt" "guthib.com/traefik/cheese/vin" ) func Hello() string { return fmt.Sprintf("Cheese %s", vin.Hello()) } yaegi-0.16.1/example/pkg/_pkg6/src/guthib.com/traefik/cheese/vin/000077500000000000000000000000001460330105400244165ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg6/src/guthib.com/traefik/cheese/vin/vin.go000066400000000000000000000001161460330105400255370ustar00rootroot00000000000000package vin import "fmt" func Hello() string { return fmt.Sprint("Vin!") } yaegi-0.16.1/example/pkg/_pkg7/000077500000000000000000000000001460330105400161145ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/000077500000000000000000000000001460330105400167035ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/000077500000000000000000000000001460330105400207425ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/000077500000000000000000000000001460330105400215255ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223065ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/pkg.go000066400000000000000000000003231460330105400234140ustar00rootroot00000000000000package pkg import ( "fmt" "guthib.com/traefik/vin" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), vin.Hello()) } } yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/000077500000000000000000000000001460330105400236035ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/000077500000000000000000000000001460330105400256425ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/000077500000000000000000000000001460330105400272675ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/000077500000000000000000000000001460330105400307075ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/fromage/fromage.go000066400000000000000000000001251460330105400326540ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("fromage") } yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/000077500000000000000000000000001460330105400300635ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vendor/000077500000000000000000000000001460330105400313605ustar00rootroot00000000000000guthib.com/000077500000000000000000000000001460330105400333405ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vendortraefik/000077500000000000000000000000001460330105400347655ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vendor/guthib.comcheese/000077500000000000000000000000001460330105400362215ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vendor/guthib.com/traefikcheese.go000066400000000000000000000002141460330105400400010ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vendor/guthib.com/traefik/cheesepackage cheese import ( "fmt" "guthib.com/traefik/fromage" ) func Hello() string { return fmt.Sprintf("cheese %s", fromage.Hello()) } yaegi-0.16.1/example/pkg/_pkg7/src/github.com/foo/pkg/vendor/guthib.com/traefik/vin/vin.go000066400000000000000000000002041460330105400312020ustar00rootroot00000000000000package vin import ( "fmt" "guthib.com/traefik/cheese" ) func Hello() string { return fmt.Sprintf("vin %s", cheese.Hello()) } yaegi-0.16.1/example/pkg/_pkg8/000077500000000000000000000000001460330105400161155ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg8/src/000077500000000000000000000000001460330105400167045ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg8/src/github.com/000077500000000000000000000000001460330105400207435ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg8/src/github.com/foo/000077500000000000000000000000001460330105400215265ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg8/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223075ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg8/src/github.com/foo/pkg/fromage/000077500000000000000000000000001460330105400237275ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg8/src/github.com/foo/pkg/fromage/fromage.go000066400000000000000000000001261460330105400256750ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("Fromage!") } yaegi-0.16.1/example/pkg/_pkg8/src/github.com/foo/pkg/pkg.go000066400000000000000000000003311460330105400234140ustar00rootroot00000000000000package pkg import ( "fmt" fr "github.com/foo/pkg/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fr.Hello()) } } yaegi-0.16.1/example/pkg/_pkg9/000077500000000000000000000000001460330105400161165ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg9/src/000077500000000000000000000000001460330105400167055ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg9/src/github.com/000077500000000000000000000000001460330105400207445ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg9/src/github.com/foo/000077500000000000000000000000001460330105400215275ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg9/src/github.com/foo/pkg/000077500000000000000000000000001460330105400223105ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg9/src/github.com/foo/pkg/fromage/000077500000000000000000000000001460330105400237305ustar00rootroot00000000000000yaegi-0.16.1/example/pkg/_pkg9/src/github.com/foo/pkg/fromage/fromage.go000066400000000000000000000001261460330105400256760ustar00rootroot00000000000000package fromage import "fmt" func Hello() string { return fmt.Sprint("Fromage!") } yaegi-0.16.1/example/pkg/_pkg9/src/github.com/foo/pkg/pkg.go000066400000000000000000000003331460330105400234170ustar00rootroot00000000000000package pkg import ( "fmt" "github.com/foo/pkg/fromage" ) func Here() string { return "root" } func NewSample() func() string { return func() string { return fmt.Sprintf("%s %s", Here(), fromage.Hello()) } } yaegi-0.16.1/example/pkg/_pkg9/src/github.com/foo/pkg/pkgfalse.go000066400000000000000000000003501460330105400244310ustar00rootroot00000000000000package pkgfalse import ( "fmt" "github.com/foo/pkg/fromage" ) func HereNot() string { return "root" } func NewSampleNot() func() string { return func() string { return fmt.Sprintf("%s %s", HereNot(), fromage.Here()) } } yaegi-0.16.1/example/pkg/pkg_test.go000066400000000000000000000103711460330105400172560ustar00rootroot00000000000000package pkg import ( "bytes" "fmt" "os" "path/filepath" "testing" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func TestPackages(t *testing.T) { testCases := []struct { desc string goPath string expected string topImport string evalFile string }{ { desc: "vendor", goPath: "./_pkg/", expected: "root Fromage", }, { desc: "sub-subpackage", goPath: "./_pkg0/", expected: "root Fromage Cheese", }, { desc: "subpackage", goPath: "./_pkg1/", expected: "root Fromage!", }, { desc: "multiple vendor folders", goPath: "./_pkg2/", expected: "root Fromage Cheese!", }, { desc: "multiple vendor folders and subpackage in vendor", goPath: "./_pkg3/", expected: "root Fromage Couteau Cheese!", }, { desc: "multiple vendor folders and multiple subpackages in vendor", goPath: "./_pkg4/", expected: "root Fromage Cheese Vin! Couteau", }, { desc: "vendor flat", goPath: "./_pkg5/", expected: "root Fromage Cheese Vin! Couteau", }, { desc: "fallback to GOPATH", goPath: "./_pkg6/", expected: "root Fromage Cheese Vin! Couteau", }, { desc: "recursive vendor", goPath: "./_pkg7/", expected: "root vin cheese fromage", }, { desc: "named subpackage", goPath: "./_pkg8/", expected: "root Fromage!", }, { desc: "at the project root", goPath: "./_pkg10/", expected: "root Fromage", topImport: "github.com/foo", }, { desc: "eval main that has vendored dep", goPath: "./_pkg11/", expected: "Fromage", evalFile: "./_pkg11/src/foo/foo.go", }, { desc: "vendor dir is a sibling or an uncle", goPath: "./_pkg12/", expected: "Yo hello", topImport: "guthib.com/foo/pkg", }, { desc: "eval main with vendor as a sibling", goPath: "./_pkg12/", expected: "Yo hello", evalFile: "./_pkg12/src/guthib.com/foo/main.go", }, { desc: "eval main with vendor", goPath: "./_pkg13/", expected: "foobar", evalFile: "./_pkg13/src/guthib.com/foo/bar/main.go", }, } for _, test := range testCases { test := test t.Run(test.desc, func(t *testing.T) { goPath, err := filepath.Abs(filepath.FromSlash(test.goPath)) if err != nil { t.Fatal(err) } var stdout, stderr bytes.Buffer i := interp.New(interp.Options{GoPath: goPath, Stdout: &stdout, Stderr: &stderr}) // Use binary standard library if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } var msg string if test.evalFile != "" { if _, err := i.EvalPath(filepath.FromSlash(test.evalFile)); err != nil { fatalStderrf(t, "%v", err) } msg = stdout.String() } else { // Load pkg from sources topImport := "github.com/foo/pkg" if test.topImport != "" { topImport = test.topImport } if _, err = i.Eval(fmt.Sprintf(`import %q`, topImport)); err != nil { t.Fatal(err) } value, err := i.Eval(`pkg.NewSample()`) if err != nil { t.Fatal(err) } fn := value.Interface().(func() string) msg = fn() } if msg != test.expected { fatalStderrf(t, "Got %q, want %q", msg, test.expected) } }) } } func fatalStderrf(t *testing.T, format string, args ...interface{}) { t.Helper() fmt.Fprintf(os.Stderr, format+"\n", args...) t.FailNow() } func TestPackagesError(t *testing.T) { testCases := []struct { desc string goPath string expected string }{ { desc: "different packages in the same directory", goPath: "./_pkg9/", expected: `1:21: import "github.com/foo/pkg" error: found packages pkg and pkgfalse in ` + filepath.FromSlash("_pkg9/src/github.com/foo/pkg"), }, } for _, test := range testCases { test := test t.Run(test.desc, func(t *testing.T) { // Init go interpreter i := interp.New(interp.Options{GoPath: test.goPath}) // Use binary standard library if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } // Load pkg from sources _, err := i.Eval(`import "github.com/foo/pkg"`) if err == nil { t.Fatalf("got no error, want %q", test.expected) } if err.Error() != test.expected { t.Errorf("got %q, want %q", err.Error(), test.expected) } }) } } yaegi-0.16.1/extract/000077500000000000000000000000001460330105400143435ustar00rootroot00000000000000yaegi-0.16.1/extract/extract.go000066400000000000000000000310401460330105400163420ustar00rootroot00000000000000/* Package extract generates wrappers of package exported symbols. */ package extract import ( "bufio" "bytes" "errors" "fmt" "go/constant" "go/format" "go/importer" "go/token" "go/types" "io" "math/big" "os" "path" "path/filepath" "regexp" "runtime" "strconv" "strings" "text/template" ) const model = `// Code generated by 'yaegi extract {{.ImportPath}}'. DO NOT EDIT. {{.License}} {{if .BuildTags}}// +build {{.BuildTags}}{{end}} package {{.Dest}} import ( {{- range $key, $value := .Imports }} {{- if $value}} "{{$key}}" {{- end}} {{- end}} {{- if or .Val .Typ }} "{{.ImportPath}}" {{- end}} "reflect" ) func init() { Symbols["{{.PkgName}}"] = map[string]reflect.Value{ {{- if .Val}} // function, constant and variable definitions {{range $key, $value := .Val -}} {{- if $value.Addr -}} "{{$key}}": reflect.ValueOf(&{{$value.Name}}).Elem(), {{else -}} "{{$key}}": reflect.ValueOf({{$value.Name}}), {{end -}} {{end}} {{- end}} {{- if .Typ}} // type definitions {{range $key, $value := .Typ -}} "{{$key}}": reflect.ValueOf((*{{$value}})(nil)), {{end}} {{- end}} {{- if .Wrap}} // interface wrapper definitions {{range $key, $value := .Wrap -}} "_{{$key}}": reflect.ValueOf((*{{$value.Name}})(nil)), {{end}} {{- end}} } } {{range $key, $value := .Wrap -}} // {{$value.Name}} is an interface wrapper for {{$key}} type type {{$value.Name}} struct { IValue interface{} {{range $m := $value.Method -}} W{{$m.Name}} func{{$m.Param}} {{$m.Result}} {{end}} } {{range $m := $value.Method -}} func (W {{$value.Name}}) {{$m.Name}}{{$m.Param}} {{$m.Result}} { {{- if eq $m.Name "String"}} if W.WString == nil { return "" } {{end -}} {{$m.Ret}} W.W{{$m.Name}}{{$m.Arg}} } {{end}} {{end}} ` // Val stores the value name and addressable status of symbols. type Val struct { Name string // "package.name" Addr bool // true if symbol is a Var } // Method stores information for generating interface wrapper method. type Method struct { Name, Param, Result, Arg, Ret string } // Wrap stores information for generating interface wrapper. type Wrap struct { Name string Method []Method } // restricted map defines symbols for which a special implementation is provided. var restricted = map[string]bool{ "osExit": true, "osFindProcess": true, "logFatal": true, "logFatalf": true, "logFatalln": true, "logLogger": true, "logNew": true, } func matchList(name string, list []string) (match bool, err error) { for _, re := range list { match, err = regexp.MatchString(re, name) if err != nil || match { return } } return } // Extractor creates a package with all the symbols from a dependency package. type Extractor struct { Dest string // The name of the created package. License string // License text to be included in the created package, optional. Exclude []string // Comma separated list of regexp matching symbols to exclude. Include []string // Comma separated list of regexp matching symbols to include. Tag []string // Comma separated of build tags to be added to the created package. } func (e *Extractor) genContent(importPath string, p *types.Package) ([]byte, error) { prefix := "_" + importPath + "_" prefix = strings.NewReplacer("/", "_", "-", "_", ".", "_", "~", "_").Replace(prefix) typ := map[string]string{} val := map[string]Val{} wrap := map[string]Wrap{} imports := map[string]bool{} sc := p.Scope() for _, pkg := range p.Imports() { imports[pkg.Path()] = false } qualify := func(pkg *types.Package) string { if pkg.Path() != importPath { imports[pkg.Path()] = true } return pkg.Name() } for _, name := range sc.Names() { o := sc.Lookup(name) if !o.Exported() { continue } if len(e.Include) > 0 { match, err := matchList(name, e.Include) if err != nil { return nil, err } if !match { // Explicitly defined include expressions force non matching symbols to be skipped. continue } } match, err := matchList(name, e.Exclude) if err != nil { return nil, err } if match { continue } pname := p.Name() + "." + name if rname := p.Name() + name; restricted[rname] { // Restricted symbol, locally provided by stdlib wrapper. pname = rname } switch o := o.(type) { case *types.Const: if b, ok := o.Type().(*types.Basic); ok && (b.Info()&types.IsUntyped) != 0 { // Convert untyped constant to right type to avoid overflow. val[name] = Val{fixConst(pname, o.Val(), imports), false} } else { val[name] = Val{pname, false} } case *types.Func: // Skip generic functions and methods. if s := o.Type().(*types.Signature); s.TypeParams().Len() > 0 || s.RecvTypeParams().Len() > 0 { continue } val[name] = Val{pname, false} 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 { if t.NumMethods() == 0 && t.NumEmbeddeds() != 0 { // Skip interfaces used to implement constraints for generics. delete(typ, name) continue } var methods []Method for i := 0; i < t.NumMethods(); i++ { f := t.Method(i) if !f.Exported() { continue } sign := f.Type().(*types.Signature) args := make([]string, sign.Params().Len()) params := make([]string, len(args)) for j := range args { v := sign.Params().At(j) if args[j] = v.Name(); args[j] == "" { args[j] = fmt.Sprintf("a%d", j) } // process interface method variadic parameter if sign.Variadic() && j == len(args)-1 { // check is last arg // only replace the first "[]" to "..." at := types.TypeString(v.Type(), qualify)[2:] params[j] = args[j] + " ..." + at args[j] += "..." } else { params[j] = args[j] + " " + types.TypeString(v.Type(), qualify) } } arg := "(" + strings.Join(args, ", ") + ")" param := "(" + strings.Join(params, ", ") + ")" results := make([]string, sign.Results().Len()) for j := range results { v := sign.Results().At(j) results[j] = v.Name() + " " + types.TypeString(v.Type(), qualify) } result := "(" + strings.Join(results, ", ") + ")" ret := "" if sign.Results().Len() > 0 { ret = "return" } methods = append(methods, Method{f.Name(), param, result, arg, ret}) } wrap[name] = Wrap{prefix + name, methods} } } } // Generate buildTags with Go version only for stdlib packages. // Third party packages do not depend on Go compiler version by default. var buildTags string if isInStdlib(importPath) { var err error buildTags, err = genBuildTags() if err != nil { return nil, err } } base := template.New("extract") parse, err := base.Parse(model) if err != nil { return nil, fmt.Errorf("template parsing error: %w", err) } if importPath == "log/syslog" { buildTags += ",!windows,!nacl,!plan9" } if importPath == "syscall" { // As per https://golang.org/cmd/go/#hdr-Build_constraints, // using GOOS=android also matches tags and files for GOOS=linux, // so exclude it explicitly to avoid collisions (issue #843). // Also using GOOS=illumos matches tags and files for GOOS=solaris. switch os.Getenv("GOOS") { case "android": buildTags += ",!linux" case "illumos": buildTags += ",!solaris" } } for _, t := range e.Tag { if t != "" { buildTags += "," + t } } if buildTags != "" && buildTags[0] == ',' { buildTags = buildTags[1:] } b := new(bytes.Buffer) data := map[string]interface{}{ "Dest": e.Dest, "Imports": imports, "ImportPath": importPath, "PkgName": path.Join(importPath, p.Name()), "Val": val, "Typ": typ, "Wrap": wrap, "BuildTags": buildTags, "License": e.License, } err = parse.Execute(b, data) if err != nil { return nil, fmt.Errorf("template error: %w", err) } // gofmt source, err := format.Source(b.Bytes()) if err != nil { return nil, fmt.Errorf("failed to format source: %w: %s", err, b.Bytes()) } return source, nil } // fixConst checks untyped constant value, converting it if necessary to avoid overflow. func fixConst(name string, val constant.Value, imports map[string]bool) string { var ( tok string str string ) switch val.Kind() { case constant.String: tok = "STRING" str = val.ExactString() case constant.Int: tok = "INT" str = val.ExactString() case constant.Float: v := constant.Val(val) // v is *big.Rat or *big.Float f, ok := v.(*big.Float) if !ok { f = new(big.Float).SetRat(v.(*big.Rat)) } tok = "FLOAT" str = f.Text('g', int(f.Prec())) case constant.Complex: // TODO: not sure how to parse this case fallthrough //nolint:gocritic // Empty Fallthrough is expected. default: return name } imports["go/constant"] = true imports["go/token"] = true return fmt.Sprintf("constant.MakeFromLiteral(%q, token.%s, 0)", str, tok) } // importPath checks whether pkgIdent is an existing directory relative to // e.WorkingDir. If yes, it returns the actual import path of the Go package // located in the directory. If it is definitely a relative path, but it does not // exist, an error is returned. Otherwise, it is assumed to be an import path, and // pkgIdent is returned. func (e *Extractor) importPath(pkgIdent, importPath string) (string, error) { wd, err := os.Getwd() if err != nil { return "", err } dirPath := filepath.Join(wd, pkgIdent) _, err = os.Stat(dirPath) if err != nil && !os.IsNotExist(err) { return "", err } if err != nil { if pkgIdent != "" && pkgIdent[0] == '.' { // pkgIdent is definitely a relative path, not a package name, and it does not exist return "", err } // pkgIdent might be a valid stdlib package name. So we leave that responsibility to the caller now. return pkgIdent, nil } // local import if importPath != "" { return importPath, nil } modPath := filepath.Join(dirPath, "go.mod") _, err = os.Stat(modPath) if os.IsNotExist(err) { return "", errors.New("no go.mod found, and no import path specified") } if err != nil { return "", err } f, err := os.Open(modPath) if err != nil { return "", err } defer func() { _ = f.Close() }() sc := bufio.NewScanner(f) var l string for sc.Scan() { l = sc.Text() break } if sc.Err() != nil { return "", err } parts := strings.Fields(l) if len(parts) < 2 { return "", errors.New(`invalid first line syntax in go.mod`) } if parts[0] != "module" { return "", errors.New(`invalid first line in go.mod, no "module" found`) } return parts[1], nil } // Extract writes to rw a Go package with all the symbols found at pkgIdent. // pkgIdent can be an import path, or a local path, relative to e.WorkingDir. In // the latter case, Extract returns the actual import path of the package found at // pkgIdent, otherwise it just returns pkgIdent. // If pkgIdent is an import path, it is looked up in GOPATH. Vendoring is not // supported yet, and the behavior is only defined for GO111MODULE=off. func (e *Extractor) Extract(pkgIdent, importPath string, rw io.Writer) (string, error) { ipp, err := e.importPath(pkgIdent, importPath) if err != nil { return "", err } pkg, err := importer.ForCompiler(token.NewFileSet(), "source", nil).Import(pkgIdent) if err != nil { return "", err } content, err := e.genContent(ipp, pkg) if err != nil { return "", err } if _, err := rw.Write(content); err != nil { return "", err } return ipp, nil } // GetMinor returns the minor part of the version number. func GetMinor(part string) string { minor := part index := strings.Index(minor, "beta") if index < 0 { index = strings.Index(minor, "rc") } if index > 0 { minor = minor[:index] } return minor } const defaultMinorVersion = 22 func genBuildTags() (string, error) { version := runtime.Version() if strings.HasPrefix(version, "devel") { return "", fmt.Errorf("extracting only supported with stable releases of Go, not %v", version) } parts := strings.Split(version, ".") minorRaw := GetMinor(parts[1]) currentGoVersion := parts[0] + "." + minorRaw minor, err := strconv.Atoi(minorRaw) if err != nil { return "", fmt.Errorf("failed to parse version: %w", err) } // Only append an upper bound if we are not on the latest go if minor >= defaultMinorVersion { return currentGoVersion, nil } nextGoVersion := parts[0] + "." + strconv.Itoa(minor+1) return currentGoVersion + ",!" + nextGoVersion, nil } func isInStdlib(path string) bool { return !strings.Contains(path, ".") } yaegi-0.16.1/extract/extract_test.go000066400000000000000000000102631460330105400174050ustar00rootroot00000000000000package extract import ( "bytes" "os" "path" "strings" "testing" ) var expectedOutput = `// Code generated by 'yaegi extract guthib.com/baz'. DO NOT EDIT. package bar import ( "guthib.com/baz" "reflect" ) func init() { Symbols["guthib.com/baz/baz"] = map[string]reflect.Value{ // function, constant and variable definitions "Hello": reflect.ValueOf(baz.Hello), } } ` func TestPackages(t *testing.T) { testCases := []struct { desc string moduleOn string wd string arg string importPath string expected string contains string dest string }{ { desc: "stdlib math pkg, using go/importer", dest: "math", arg: "math", // We check this one because it shows both defects when we break it: the value // gets corrupted, and the type becomes token.INT // TODO(mpl): if the ident between key and value becomes annoying, be smarter about it. contains: `"MaxFloat32": reflect.ValueOf(constant.MakeFromLiteral("340282346638528859811704183484516925440", token.FLOAT, 0)),`, }, { desc: "using relative path, using go.mod", wd: "./testdata/1/src/guthib.com/bar", arg: "../baz", expected: expectedOutput, }, { desc: "using relative path, manual import path", wd: "./testdata/2/src/guthib.com/bar", arg: "../baz", importPath: "guthib.com/baz", expected: expectedOutput, }, { desc: "using relative path, go.mod is ignored, because manual path", wd: "./testdata/3/src/guthib.com/bar", arg: "../baz", importPath: "guthib.com/baz", expected: expectedOutput, }, { desc: "using relative path, dep in vendor, using go.mod", wd: "./testdata/4/src/guthib.com/bar", arg: "./vendor/guthib.com/baz", expected: expectedOutput, }, { desc: "using relative path, dep in vendor, manual import path", wd: "./testdata/5/src/guthib.com/bar", arg: "./vendor/guthib.com/baz", importPath: "guthib.com/baz", expected: expectedOutput, }, { desc: "using relative path, package name is not same as import path", wd: "./testdata/6/src/guthib.com/bar", arg: "../baz-baz", importPath: "guthib.com/baz", expected: expectedOutput, }, { desc: "using relative path, interface method parameter is variadic", wd: "./testdata/7/src/guthib.com/variadic", arg: "../variadic", importPath: "guthib.com/variadic", expected: ` // Code generated by 'yaegi extract guthib.com/variadic'. DO NOT EDIT. package variadic import ( "guthib.com/variadic" "reflect" ) func init() { Symbols["guthib.com/variadic/variadic"] = map[string]reflect.Value{ // type definitions "Variadic": reflect.ValueOf((*variadic.Variadic)(nil)), // interface wrapper definitions "_Variadic": reflect.ValueOf((*_guthib_com_variadic_Variadic)(nil)), } } // _guthib_com_variadic_Variadic is an interface wrapper for Variadic type type _guthib_com_variadic_Variadic struct { IValue interface{} WCall func(method string, args ...[]interface{}) (interface{}, error) } func (W _guthib_com_variadic_Variadic) Call(method string, args ...[]interface{}) (interface{}, error) { return W.WCall(method, args...) } `[1:], }, } for _, test := range testCases { test := test t.Run(test.desc, func(t *testing.T) { cwd, err := os.Getwd() if err != nil { t.Fatal(err) } wd := test.wd if wd == "" { wd = cwd } else { if err := os.Chdir(wd); err != nil { t.Fatal(err) } defer func() { if err := os.Chdir(cwd); err != nil { t.Fatal(err) } }() } dest := path.Base(wd) if test.dest != "" { dest = test.dest } ext := Extractor{ Dest: dest, } var out bytes.Buffer if _, err := ext.Extract(test.arg, test.importPath, &out); err != nil { t.Fatal(err) } if test.expected != "" { if out.String() != test.expected { t.Fatalf("\nGot:\n%q\nWant: \n%q", out.String(), test.expected) } } if test.contains != "" { if !strings.Contains(out.String(), test.contains) { t.Fatalf("Missing expected part: %s in %s", test.contains, out.String()) } } }) } } yaegi-0.16.1/extract/testdata/000077500000000000000000000000001460330105400161545ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/1/000077500000000000000000000000001460330105400163145ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/1/src/000077500000000000000000000000001460330105400171035ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/1/src/guthib.com/000077500000000000000000000000001460330105400211425ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/1/src/guthib.com/bar/000077500000000000000000000000001460330105400217065ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/1/src/guthib.com/bar/main.go000066400000000000000000000001111460330105400231520ustar00rootroot00000000000000package main import ( "guthib.com/baz" ) func main() { baz.Hello() } yaegi-0.16.1/extract/testdata/1/src/guthib.com/baz/000077500000000000000000000000001460330105400217165ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/1/src/guthib.com/baz/baz.go000066400000000000000000000000601460330105400230150ustar00rootroot00000000000000package baz func Hello() { println("HELLO") } yaegi-0.16.1/extract/testdata/1/src/guthib.com/baz/go.mod000066400000000000000000000000371460330105400230240ustar00rootroot00000000000000module guthib.com/baz go 1.14 yaegi-0.16.1/extract/testdata/2/000077500000000000000000000000001460330105400163155ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/2/src/000077500000000000000000000000001460330105400171045ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/2/src/guthib.com/000077500000000000000000000000001460330105400211435ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/2/src/guthib.com/bar/000077500000000000000000000000001460330105400217075ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/2/src/guthib.com/bar/main.go000066400000000000000000000001111460330105400231530ustar00rootroot00000000000000package main import ( "guthib.com/baz" ) func main() { baz.Hello() } yaegi-0.16.1/extract/testdata/2/src/guthib.com/baz/000077500000000000000000000000001460330105400217175ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/2/src/guthib.com/baz/baz.go000066400000000000000000000000601460330105400230160ustar00rootroot00000000000000package baz func Hello() { println("HELLO") } yaegi-0.16.1/extract/testdata/3/000077500000000000000000000000001460330105400163165ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/3/src/000077500000000000000000000000001460330105400171055ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/3/src/guthib.com/000077500000000000000000000000001460330105400211445ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/3/src/guthib.com/bar/000077500000000000000000000000001460330105400217105ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/3/src/guthib.com/bar/main.go000066400000000000000000000001111460330105400231540ustar00rootroot00000000000000package main import ( "guthib.com/baz" ) func main() { baz.Hello() } yaegi-0.16.1/extract/testdata/3/src/guthib.com/baz/000077500000000000000000000000001460330105400217205ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/3/src/guthib.com/baz/baz.go000066400000000000000000000000601460330105400230170ustar00rootroot00000000000000package baz func Hello() { println("HELLO") } yaegi-0.16.1/extract/testdata/3/src/guthib.com/baz/go.mod000066400000000000000000000000431460330105400230230ustar00rootroot00000000000000module should.not/be/used go 1.14 yaegi-0.16.1/extract/testdata/4/000077500000000000000000000000001460330105400163175ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/000077500000000000000000000000001460330105400171065ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/guthib.com/000077500000000000000000000000001460330105400211455ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/000077500000000000000000000000001460330105400217115ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/main.go000066400000000000000000000001111460330105400231550ustar00rootroot00000000000000package main import ( "guthib.com/baz" ) func main() { baz.Hello() } yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/vendor/000077500000000000000000000000001460330105400232065ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/vendor/guthib.com/000077500000000000000000000000001460330105400252455ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/vendor/guthib.com/baz/000077500000000000000000000000001460330105400260215ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/vendor/guthib.com/baz/baz.go000066400000000000000000000000601460330105400271200ustar00rootroot00000000000000package baz func Hello() { println("HELLO") } yaegi-0.16.1/extract/testdata/4/src/guthib.com/bar/vendor/guthib.com/baz/go.mod000066400000000000000000000000371460330105400271270ustar00rootroot00000000000000module guthib.com/baz go 1.14 yaegi-0.16.1/extract/testdata/5/000077500000000000000000000000001460330105400163205ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/000077500000000000000000000000001460330105400171075ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/guthib.com/000077500000000000000000000000001460330105400211465ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/guthib.com/bar/000077500000000000000000000000001460330105400217125ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/guthib.com/bar/main.go000066400000000000000000000001111460330105400231560ustar00rootroot00000000000000package main import ( "guthib.com/baz" ) func main() { baz.Hello() } yaegi-0.16.1/extract/testdata/5/src/guthib.com/bar/vendor/000077500000000000000000000000001460330105400232075ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/guthib.com/bar/vendor/guthib.com/000077500000000000000000000000001460330105400252465ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/guthib.com/bar/vendor/guthib.com/baz/000077500000000000000000000000001460330105400260225ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/5/src/guthib.com/bar/vendor/guthib.com/baz/baz.go000066400000000000000000000000601460330105400271210ustar00rootroot00000000000000package baz func Hello() { println("HELLO") } yaegi-0.16.1/extract/testdata/6/000077500000000000000000000000001460330105400163215ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/6/src/000077500000000000000000000000001460330105400171105ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/6/src/guthib.com/000077500000000000000000000000001460330105400211475ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/6/src/guthib.com/bar/000077500000000000000000000000001460330105400217135ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/6/src/guthib.com/bar/main.go000066400000000000000000000001111460330105400231570ustar00rootroot00000000000000package main import ( "guthib.com/baz" ) func main() { baz.Hello() } yaegi-0.16.1/extract/testdata/6/src/guthib.com/baz-baz/000077500000000000000000000000001460330105400224755ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/6/src/guthib.com/baz-baz/baz.go000066400000000000000000000000601460330105400235740ustar00rootroot00000000000000package baz func Hello() { println("HELLO") } yaegi-0.16.1/extract/testdata/6/src/guthib.com/baz-baz/go.mod000066400000000000000000000000311460330105400235750ustar00rootroot00000000000000module guthib.com/baz-bazyaegi-0.16.1/extract/testdata/7/000077500000000000000000000000001460330105400163225ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/7/src/000077500000000000000000000000001460330105400171115ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/7/src/guthib.com/000077500000000000000000000000001460330105400211505ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/7/src/guthib.com/variadic/000077500000000000000000000000001460330105400227325ustar00rootroot00000000000000yaegi-0.16.1/extract/testdata/7/src/guthib.com/variadic/go.mod000066400000000000000000000000421460330105400240340ustar00rootroot00000000000000module guthib.com/baz-baz/variadicyaegi-0.16.1/extract/testdata/7/src/guthib.com/variadic/variadic.go000066400000000000000000000001571460330105400250460ustar00rootroot00000000000000package variadic type Variadic interface { Call(method string, args ...[]interface{}) (interface{}, error) } yaegi-0.16.1/generate.go000066400000000000000000000005721460330105400150160ustar00rootroot00000000000000// Package yaegi provides a Go interpreter. package yaegi //go:generate go generate github.com/traefik/yaegi/internal/cmd/extract //go:generate go generate github.com/traefik/yaegi/interp //go:generate go generate github.com/traefik/yaegi/stdlib //go:generate go generate github.com/traefik/yaegi/stdlib/syscall //go:generate go generate github.com/traefik/yaegi/stdlib/unsafe yaegi-0.16.1/go.mod000066400000000000000000000000511460330105400137730ustar00rootroot00000000000000module github.com/traefik/yaegi go 1.21 yaegi-0.16.1/install.sh000066400000000000000000000237461460330105400147070ustar00rootroot00000000000000#!/bin/sh set -e # Code generated by godownloader on 2020-09-27T12:53:27Z. DO NOT EDIT. # usage() { this=$1 cat </dev/null } echoerr() { echo "$@" 1>&2 } log_prefix() { echo "$0" } _logp=6 log_set_priority() { _logp="$1" } log_priority() { if test -z "$1"; then echo "$_logp" return fi [ "$1" -le "$_logp" ] } log_tag() { case $1 in 0) echo "emerg" ;; 1) echo "alert" ;; 2) echo "crit" ;; 3) echo "err" ;; 4) echo "warning" ;; 5) echo "notice" ;; 6) echo "info" ;; 7) echo "debug" ;; *) echo "$1" ;; esac } log_debug() { log_priority 7 || return 0 echoerr "$(log_prefix)" "$(log_tag 7)" "$@" } log_info() { log_priority 6 || return 0 echoerr "$(log_prefix)" "$(log_tag 6)" "$@" } log_err() { log_priority 3 || return 0 echoerr "$(log_prefix)" "$(log_tag 3)" "$@" } log_crit() { log_priority 2 || return 0 echoerr "$(log_prefix)" "$(log_tag 2)" "$@" } uname_os() { os=$(uname -s | tr '[:upper:]' '[:lower:]') case "$os" in cygwin_nt*) os="windows" ;; mingw*) os="windows" ;; msys_nt*) os="windows" ;; esac echo "$os" } uname_arch() { arch=$(uname -m) case $arch in x86_64) arch="amd64" ;; x86) arch="386" ;; i686) arch="386" ;; i386) arch="386" ;; aarch64) arch="arm64" ;; armv5*) arch="armv5" ;; armv6*) arch="armv6" ;; armv7*) arch="armv7" ;; esac echo ${arch} } uname_os_check() { os=$(uname_os) case "$os" in darwin) return 0 ;; dragonfly) return 0 ;; freebsd) return 0 ;; linux) return 0 ;; android) return 0 ;; nacl) return 0 ;; netbsd) return 0 ;; openbsd) return 0 ;; plan9) return 0 ;; solaris) return 0 ;; windows) return 0 ;; esac log_crit "uname_os_check '$(uname -s)' got converted to '$os' which is not a GOOS value. Please file bug at https://github.com/client9/shlib" return 1 } uname_arch_check() { arch=$(uname_arch) case "$arch" in 386) return 0 ;; amd64) return 0 ;; arm64) return 0 ;; armv5) return 0 ;; armv6) return 0 ;; armv7) return 0 ;; ppc64) return 0 ;; ppc64le) return 0 ;; mips) return 0 ;; mipsle) return 0 ;; mips64) return 0 ;; mips64le) return 0 ;; s390x) return 0 ;; amd64p32) return 0 ;; esac log_crit "uname_arch_check '$(uname -m)' got converted to '$arch' which is not a GOARCH value. Please file bug report at https://github.com/client9/shlib" return 1 } untar() { tarball=$1 case "${tarball}" in *.tar.gz | *.tgz) tar --no-same-owner -xzf "${tarball}" ;; *.tar) tar --no-same-owner -xf "${tarball}" ;; *.zip) unzip "${tarball}" ;; *) log_err "untar unknown archive format for ${tarball}" return 1 ;; esac } http_download_curl() { local_file=$1 source_url=$2 header=$3 if [ -z "$header" ]; then code=$(curl -w '%{http_code}' -sL -o "$local_file" "$source_url") else code=$(curl -w '%{http_code}' -sL -H "$header" -o "$local_file" "$source_url") fi if [ "$code" != "200" ]; then log_debug "http_download_curl received HTTP status $code" return 1 fi return 0 } http_download_wget() { local_file=$1 source_url=$2 header=$3 if [ -z "$header" ]; then wget -q -O "$local_file" "$source_url" else wget -q --header "$header" -O "$local_file" "$source_url" fi } http_download() { log_debug "http_download $2" if is_command curl; then http_download_curl "$@" return elif is_command wget; then http_download_wget "$@" return fi log_crit "http_download unable to find wget or curl" return 1 } http_copy() { tmp=$(mktemp) http_download "${tmp}" "$1" "$2" || return 1 body=$(cat "$tmp") rm -f "${tmp}" echo "$body" } github_release() { owner_repo=$1 version=$2 test -z "$version" && version="latest" giturl="https://github.com/${owner_repo}/releases/${version}" json=$(http_copy "$giturl" "Accept:application/json") test -z "$json" && return 1 version=$(echo "$json" | tr -s '\n' ' ' | sed 's/.*"tag_name":"//' | sed 's/".*//') test -z "$version" && return 1 echo "$version" } hash_sha256() { TARGET=${1:-/dev/stdin} if is_command gsha256sum; then hash=$(gsha256sum "$TARGET") || return 1 echo "$hash" | cut -d ' ' -f 1 elif is_command sha256sum; then hash=$(sha256sum "$TARGET") || return 1 echo "$hash" | cut -d ' ' -f 1 elif is_command shasum; then hash=$(shasum -a 256 "$TARGET" 2>/dev/null) || return 1 echo "$hash" | cut -d ' ' -f 1 elif is_command openssl; then hash=$(openssl -dst openssl dgst -sha256 "$TARGET") || return 1 echo "$hash" | cut -d ' ' -f a else log_crit "hash_sha256 unable to find command to compute sha-256 hash" return 1 fi } hash_sha256_verify() { TARGET=$1 checksums=$2 if [ -z "$checksums" ]; then log_err "hash_sha256_verify checksum file not specified in arg2" return 1 fi BASENAME=${TARGET##*/} want=$(grep "${BASENAME}" "${checksums}" 2>/dev/null | tr '\t' ' ' | cut -d ' ' -f 1) if [ -z "$want" ]; then log_err "hash_sha256_verify unable to find checksum for '${TARGET}' in '${checksums}'" return 1 fi got=$(hash_sha256 "$TARGET") if [ "$want" != "$got" ]; then log_err "hash_sha256_verify checksum for '$TARGET' did not verify ${want} vs $got" return 1 fi } cat /dev/null <>", false, false, false, true, false, true}, "and": {"&", false, false, false, false, false, true}, "or": {"|", false, false, false, false, false, true}, "xor": {"^", false, false, false, false, false, true}, "andNot": {"&^", false, false, false, false, false, true}, }, "IncDec": map[string]Op{ "inc": {Name: "+"}, "dec": {Name: "-"}, }, "Comparison": map[string]Op{ "equal": {Name: "==", Complex: true}, "greater": {Name: ">", Complex: false}, "greaterEqual": {Name: ">=", Complex: false}, "lower": {Name: "<", Complex: false}, "lowerEqual": {Name: "<=", Complex: false}, "notEqual": {Name: "!=", Complex: true}, }, "Unary": map[string]Op{ "not": {Name: "!", Float: false, Bool: true}, "neg": {Name: "-", Float: true, Bool: false}, "pos": {Name: "+", Float: true, Bool: false}, "bitNot": {Name: "^", Float: false, Bool: false, Int: true}, }, } if err = parse.Execute(b, data); err != nil { log.Fatal(err) } // gofmt source, err := format.Source(b.Bytes()) if err != nil { log.Fatal(err) } if err = os.WriteFile("op.go", source, 0o666); err != nil { log.Fatal(err) } } yaegi-0.16.1/internal/unsafe2/000077500000000000000000000000001460330105400160505ustar00rootroot00000000000000yaegi-0.16.1/internal/unsafe2/go1_20_unsafe.go000066400000000000000000000023441460330105400207320ustar00rootroot00000000000000//go:build !go1.21 // +build !go1.21 // Package unsafe2 provides helpers to generate recursive struct types. package unsafe2 import ( "reflect" "unsafe" ) type dummy struct{} // DummyType represents a stand-in for a recursive type. var DummyType = reflect.TypeOf(dummy{}) // the following type sizes must match their original definition in Go src/reflect/type.go. type rtype struct { _ uintptr _ uintptr _ uint32 _ uint32 _ uintptr _ uintptr _ uint32 _ uint32 } type emptyInterface struct { typ *rtype _ unsafe.Pointer } type structField struct { _ uintptr typ *rtype _ uintptr } type structType struct { rtype _ uintptr fields []structField } // SetFieldType sets the type of the struct field at the given index, to the given type. // // The struct type must have been created at runtime. This is very unsafe. func SetFieldType(s reflect.Type, idx int, t reflect.Type) { if s.Kind() != reflect.Struct || idx >= s.NumField() { return } rtyp := unpackType(s) styp := (*structType)(unsafe.Pointer(rtyp)) f := styp.fields[idx] f.typ = unpackType(t) styp.fields[idx] = f } func unpackType(t reflect.Type) *rtype { v := reflect.New(t).Elem().Interface() return (*emptyInterface)(unsafe.Pointer(&v)).typ } yaegi-0.16.1/internal/unsafe2/go1_21_unsafe.go000066400000000000000000000025261460330105400207350ustar00rootroot00000000000000//go:build go1.21 // +build go1.21 // Package unsafe2 provides helpers to generate recursive struct types. package unsafe2 import ( "reflect" "unsafe" ) type dummy struct{} // DummyType represents a stand-in for a recursive type. var DummyType = reflect.TypeOf(dummy{}) // The following type sizes must match their original definition in Go src/internal/abi/type.go. type abiType struct { _ uintptr _ uintptr _ uint32 _ uint8 _ uint8 _ uint8 _ uint8 _ uintptr _ uintptr _ int32 _ int32 } type abiName struct { Bytes *byte } type abiStructField struct { Name abiName Typ *abiType Offset uintptr } type abiStructType struct { abiType PkgPath abiName Fields []abiStructField } type emptyInterface struct { typ *abiType _ unsafe.Pointer } // SetFieldType sets the type of the struct field at the given index, to the given type. // // The struct type must have been created at runtime. This is very unsafe. func SetFieldType(s reflect.Type, idx int, t reflect.Type) { if s.Kind() != reflect.Struct || idx >= s.NumField() { return } rtyp := unpackType(s) styp := (*abiStructType)(unsafe.Pointer(rtyp)) f := styp.Fields[idx] f.Typ = unpackType(t) styp.Fields[idx] = f } func unpackType(t reflect.Type) *abiType { v := reflect.New(t).Elem().Interface() eface := *(*emptyInterface)(unsafe.Pointer(&v)) return eface.typ } yaegi-0.16.1/internal/unsafe2/unsafe_test.go000066400000000000000000000010621460330105400207160ustar00rootroot00000000000000package unsafe2_test import ( "reflect" "testing" "github.com/traefik/yaegi/internal/unsafe2" ) func TestSwapFieldType(t *testing.T) { f := []reflect.StructField{ { Name: "A", Type: reflect.TypeOf(int(0)), }, { Name: "B", Type: reflect.PtrTo(unsafe2.DummyType), }, { Name: "C", Type: reflect.TypeOf(int64(0)), }, } typ := reflect.StructOf(f) ntyp := reflect.PtrTo(typ) unsafe2.SetFieldType(typ, 1, ntyp) if typ.Field(1).Type != ntyp { t.Fatalf("unexpected field type: want %s; got %s", ntyp, typ.Field(1).Type) } } yaegi-0.16.1/interp/000077500000000000000000000000001460330105400141725ustar00rootroot00000000000000yaegi-0.16.1/interp/ast.go000066400000000000000000000563561460330105400153270ustar00rootroot00000000000000package interp import ( "fmt" "go/ast" "go/constant" "go/parser" "go/scanner" "go/token" "reflect" "strconv" "strings" "sync/atomic" ) // nkind defines the kind of AST, i.e. the grammar category. type nkind uint // Node kinds for the go language. const ( undefNode nkind = iota addressExpr arrayType assignStmt assignXStmt basicLit binaryExpr blockStmt branchStmt breakStmt callExpr caseBody caseClause chanType chanTypeSend chanTypeRecv commClause commClauseDefault compositeLitExpr constDecl continueStmt declStmt deferStmt defineStmt defineXStmt ellipsisExpr exprStmt fallthroughtStmt fieldExpr fieldList fileStmt forStmt0 // for {} forStmt1 // for init; ; {} forStmt2 // for cond {} forStmt3 // for init; cond; {} forStmt4 // for ; ; post {} forStmt5 // for ; cond; post {} forStmt6 // for init; ; post {} forStmt7 // for init; cond; post {} forRangeStmt // for range {} funcDecl funcLit funcType goStmt gotoStmt identExpr ifStmt0 // if cond {} ifStmt1 // if cond {} else {} ifStmt2 // if init; cond {} ifStmt3 // if init; cond {} else {} importDecl importSpec incDecStmt indexExpr indexListExpr interfaceType keyValueExpr labeledStmt landExpr lorExpr mapType parenExpr rangeStmt returnStmt selectStmt selectorExpr selectorImport sendStmt sliceExpr starExpr structType switchStmt switchIfStmt typeAssertExpr typeDecl typeSpec // type A int typeSpecAssign // type A = int typeSwitch unaryExpr valueSpec varDecl ) var kinds = [...]string{ undefNode: "undefNode", addressExpr: "addressExpr", arrayType: "arrayType", assignStmt: "assignStmt", assignXStmt: "assignXStmt", basicLit: "basicLit", binaryExpr: "binaryExpr", blockStmt: "blockStmt", branchStmt: "branchStmt", breakStmt: "breakStmt", callExpr: "callExpr", caseBody: "caseBody", caseClause: "caseClause", chanType: "chanType", chanTypeSend: "chanTypeSend", chanTypeRecv: "chanTypeRecv", commClause: "commClause", commClauseDefault: "commClauseDefault", compositeLitExpr: "compositeLitExpr", constDecl: "constDecl", continueStmt: "continueStmt", declStmt: "declStmt", deferStmt: "deferStmt", defineStmt: "defineStmt", defineXStmt: "defineXStmt", ellipsisExpr: "ellipsisExpr", exprStmt: "exprStmt", fallthroughtStmt: "fallthroughStmt", fieldExpr: "fieldExpr", fieldList: "fieldList", fileStmt: "fileStmt", forStmt0: "forStmt0", forStmt1: "forStmt1", forStmt2: "forStmt2", forStmt3: "forStmt3", forStmt4: "forStmt4", forStmt5: "forStmt5", forStmt6: "forStmt6", forStmt7: "forStmt7", forRangeStmt: "forRangeStmt", funcDecl: "funcDecl", funcType: "funcType", funcLit: "funcLit", goStmt: "goStmt", gotoStmt: "gotoStmt", identExpr: "identExpr", ifStmt0: "ifStmt0", ifStmt1: "ifStmt1", ifStmt2: "ifStmt2", ifStmt3: "ifStmt3", importDecl: "importDecl", importSpec: "importSpec", incDecStmt: "incDecStmt", indexExpr: "indexExpr", indexListExpr: "indexListExpr", interfaceType: "interfaceType", keyValueExpr: "keyValueExpr", labeledStmt: "labeledStmt", landExpr: "landExpr", lorExpr: "lorExpr", mapType: "mapType", parenExpr: "parenExpr", rangeStmt: "rangeStmt", returnStmt: "returnStmt", selectStmt: "selectStmt", selectorExpr: "selectorExpr", selectorImport: "selectorImport", sendStmt: "sendStmt", sliceExpr: "sliceExpr", starExpr: "starExpr", structType: "structType", switchStmt: "switchStmt", switchIfStmt: "switchIfStmt", typeAssertExpr: "typeAssertExpr", typeDecl: "typeDecl", typeSpec: "typeSpec", typeSpecAssign: "typeSpecAssign", typeSwitch: "typeSwitch", unaryExpr: "unaryExpr", valueSpec: "valueSpec", varDecl: "varDecl", } func (k nkind) String() string { if k < nkind(len(kinds)) { return kinds[k] } return "nKind(" + strconv.Itoa(int(k)) + ")" } // astError represents an error during AST build stage. type astError error // action defines the node action to perform at execution. type action uint // Node actions for the go language. // It is important for type checking that *Assign directly // follows it non-assign counterpart. const ( aNop action = iota aAddr aAssign aAssignX aAdd aAddAssign aAnd aAndAssign aAndNot aAndNotAssign aBitNot aBranch aCall aCallSlice aCase aCompositeLit aConvert aDec aEqual aGreater aGreaterEqual aGetFunc aGetIndex aGetMethod aGetSym aInc aLand aLor aLower aLowerEqual aMethod aMul aMulAssign aNeg aNot aNotEqual aOr aOrAssign aPos aQuo aQuoAssign aRange aRecv aRem aRemAssign aReturn aSend aShl aShlAssign aShr aShrAssign aSlice aSlice0 aStar aSub aSubAssign aTypeAssert aXor aXorAssign ) var actions = [...]string{ aNop: "nop", aAddr: "&", aAssign: "=", aAssignX: "X=", aAdd: "+", aAddAssign: "+=", aAnd: "&", aAndAssign: "&=", aAndNot: "&^", aAndNotAssign: "&^=", aBitNot: "^", aBranch: "branch", aCall: "call", aCallSlice: "callSlice", aCase: "case", aCompositeLit: "compositeLit", aConvert: "convert", aDec: "--", aEqual: "==", aGreater: ">", aGreaterEqual: ">=", aGetFunc: "getFunc", aGetIndex: "getIndex", aGetMethod: "getMethod", aGetSym: ".", aInc: "++", aLand: "&&", aLor: "||", aLower: "<", aLowerEqual: "<=", aMethod: "Method", aMul: "*", aMulAssign: "*=", aNeg: "-", aNot: "!", aNotEqual: "!=", aOr: "|", aOrAssign: "|=", aPos: "+", aQuo: "/", aQuoAssign: "/=", aRange: "range", aRecv: "<-", aRem: "%", aRemAssign: "%=", aReturn: "return", aSend: "<~", aShl: "<<", aShlAssign: "<<=", aShr: ">>", aShrAssign: ">>=", aSlice: "slice", aSlice0: "slice0", aStar: "*", aSub: "-", aSubAssign: "-=", aTypeAssert: "TypeAssert", aXor: "^", aXorAssign: "^=", } func (a action) String() string { if a < action(len(actions)) { return actions[a] } return "Action(" + strconv.Itoa(int(a)) + ")" } func isAssignAction(a action) bool { switch a { case aAddAssign, aAndAssign, aAndNotAssign, aMulAssign, aOrAssign, aQuoAssign, aRemAssign, aShlAssign, aShrAssign, aSubAssign, aXorAssign: return true } return false } func (interp *Interpreter) firstToken(src string) token.Token { var s scanner.Scanner file := interp.fset.AddFile("", interp.fset.Base(), len(src)) s.Init(file, []byte(src), nil, 0) _, tok, _ := s.Scan() return tok } func ignoreError(err error, src string) bool { se, ok := err.(scanner.ErrorList) if !ok { return false } if len(se) == 0 { return false } return ignoreScannerError(se[0], src) } func wrapInMain(src string) string { return fmt.Sprintf("package main; func main() {%s\n}", src) } func (interp *Interpreter) parse(src, name string, inc bool) (node ast.Node, err error) { mode := parser.DeclarationErrors // Allow incremental parsing of declarations or statements, by inserting // them in a pseudo file package or function. Those statements or // declarations will be always evaluated in the global scope. var tok token.Token var inFunc bool if inc { tok = interp.firstToken(src) switch tok { case token.PACKAGE: // nothing to do. case token.CONST, token.FUNC, token.IMPORT, token.TYPE, token.VAR: src = "package main;" + src default: inFunc = true src = wrapInMain(src) } // Parse comments in REPL mode, to allow tag setting. mode |= parser.ParseComments } if ok, err := interp.buildOk(&interp.context, name, src); !ok || err != nil { return nil, err // skip source not matching build constraints } f, err := parser.ParseFile(interp.fset, name, src, mode) if err != nil { // only retry if we're on an expression/statement about a func if !inc || tok != token.FUNC { return nil, err } // do not bother retrying if we know it's an error we're going to ignore later on. if ignoreError(err, src) { return nil, err } // do not lose initial error, in case retrying fails. initialError := err // retry with default source code "wrapping", in the main function scope. src := wrapInMain(strings.TrimPrefix(src, "package main;")) f, err = parser.ParseFile(interp.fset, name, src, mode) if err != nil { return nil, initialError } } if inFunc { // return the body of the wrapper main function return f.Decls[0].(*ast.FuncDecl).Body, nil } setYaegiTags(&interp.context, f.Comments) return f, nil } // Note: no type analysis is performed at this stage, it is done in pre-order // processing of CFG, in order to accommodate forward type declarations. // ast parses src string containing Go code and generates the corresponding AST. // The package name and the AST root node are returned. // The given name is used to set the filename of the relevant source file in the // interpreter's FileSet. func (interp *Interpreter) ast(f ast.Node) (string, *node, error) { var err error var root *node var anc astNode var st nodestack pkgName := "main" addChild := func(root **node, anc astNode, pos token.Pos, kind nkind, act action) *node { var i interface{} nindex := atomic.AddInt64(&interp.nindex, 1) n := &node{anc: anc.node, interp: interp, index: nindex, pos: pos, kind: kind, action: act, val: &i, gen: builtin[act]} n.start = n if anc.node == nil { *root = n } else { anc.node.child = append(anc.node.child, n) if anc.node.action == aCase { ancAst := anc.ast.(*ast.CaseClause) if len(ancAst.List)+len(ancAst.Body) == len(anc.node.child) { // All case clause children are collected. // Split children in condition and body nodes to desambiguify the AST. nindex = atomic.AddInt64(&interp.nindex, 1) body := &node{anc: anc.node, interp: interp, index: nindex, pos: pos, kind: caseBody, action: aNop, val: &i, gen: nop} if ts := anc.node.anc.anc; ts.kind == typeSwitch && ts.child[1].action == aAssign { // In type switch clause, if a switch guard is assigned, duplicate the switch guard symbol // in each clause body, so a different guard type can be set in each clause name := ts.child[1].child[0].ident nindex = atomic.AddInt64(&interp.nindex, 1) gn := &node{anc: body, interp: interp, ident: name, index: nindex, pos: pos, kind: identExpr, action: aNop, val: &i, gen: nop} body.child = append(body.child, gn) } // Add regular body children body.child = append(body.child, anc.node.child[len(ancAst.List):]...) for i := range body.child { body.child[i].anc = body } anc.node.child = append(anc.node.child[:len(ancAst.List)], body) } } } return n } // Populate our own private AST from Go parser AST. // A stack of ancestor nodes is used to keep track of current ancestor for each depth level ast.Inspect(f, func(nod ast.Node) bool { anc = st.top() var pos token.Pos if nod != nil { pos = nod.Pos() } switch a := nod.(type) { case nil: anc = st.pop() case *ast.ArrayType: st.push(addChild(&root, anc, pos, arrayType, aNop), nod) case *ast.AssignStmt: var act action var kind nkind if len(a.Lhs) > 1 && len(a.Rhs) == 1 { if a.Tok == token.DEFINE { kind = defineXStmt } else { kind = assignXStmt } act = aAssignX } else { kind = assignStmt switch a.Tok { case token.ASSIGN: act = aAssign case token.ADD_ASSIGN: act = aAddAssign case token.AND_ASSIGN: act = aAndAssign case token.AND_NOT_ASSIGN: act = aAndNotAssign case token.DEFINE: kind = defineStmt act = aAssign case token.SHL_ASSIGN: act = aShlAssign case token.SHR_ASSIGN: act = aShrAssign case token.MUL_ASSIGN: act = aMulAssign case token.OR_ASSIGN: act = aOrAssign case token.QUO_ASSIGN: act = aQuoAssign case token.REM_ASSIGN: act = aRemAssign case token.SUB_ASSIGN: act = aSubAssign case token.XOR_ASSIGN: act = aXorAssign } } n := addChild(&root, anc, pos, kind, act) n.nleft = len(a.Lhs) n.nright = len(a.Rhs) st.push(n, nod) case *ast.BasicLit: n := addChild(&root, anc, pos, basicLit, aNop) n.ident = a.Value switch a.Kind { case token.CHAR: // Char cannot be converted to a const here as we cannot tell the type. v, _, _, _ := strconv.UnquoteChar(a.Value[1:len(a.Value)-1], '\'') n.rval = reflect.ValueOf(v) case token.FLOAT, token.IMAG, token.INT, token.STRING: v := constant.MakeFromLiteral(a.Value, a.Kind, 0) n.rval = reflect.ValueOf(v) } st.push(n, nod) case *ast.BinaryExpr: kind := binaryExpr act := aNop switch a.Op { case token.ADD: act = aAdd case token.AND: act = aAnd case token.AND_NOT: act = aAndNot case token.EQL: act = aEqual case token.GEQ: act = aGreaterEqual case token.GTR: act = aGreater case token.LAND: kind = landExpr act = aLand case token.LOR: kind = lorExpr act = aLor case token.LEQ: act = aLowerEqual case token.LSS: act = aLower case token.MUL: act = aMul case token.NEQ: act = aNotEqual case token.OR: act = aOr case token.REM: act = aRem case token.SUB: act = aSub case token.SHL: act = aShl case token.SHR: act = aShr case token.QUO: act = aQuo case token.XOR: act = aXor } st.push(addChild(&root, anc, pos, kind, act), nod) case *ast.BlockStmt: st.push(addChild(&root, anc, pos, blockStmt, aNop), nod) case *ast.BranchStmt: var kind nkind switch a.Tok { case token.BREAK: kind = breakStmt case token.CONTINUE: kind = continueStmt case token.FALLTHROUGH: kind = fallthroughtStmt case token.GOTO: kind = gotoStmt } st.push(addChild(&root, anc, pos, kind, aNop), nod) case *ast.CallExpr: action := aCall if a.Ellipsis != token.NoPos { action = aCallSlice } st.push(addChild(&root, anc, pos, callExpr, action), nod) case *ast.CaseClause: st.push(addChild(&root, anc, pos, caseClause, aCase), nod) case *ast.ChanType: switch a.Dir { case ast.SEND | ast.RECV: st.push(addChild(&root, anc, pos, chanType, aNop), nod) case ast.SEND: st.push(addChild(&root, anc, pos, chanTypeSend, aNop), nod) case ast.RECV: st.push(addChild(&root, anc, pos, chanTypeRecv, aNop), nod) } case *ast.CommClause: kind := commClause if a.Comm == nil { kind = commClauseDefault } st.push(addChild(&root, anc, pos, kind, aNop), nod) case *ast.CommentGroup, *ast.EmptyStmt: return false case *ast.CompositeLit: st.push(addChild(&root, anc, pos, compositeLitExpr, aCompositeLit), nod) case *ast.DeclStmt: st.push(addChild(&root, anc, pos, declStmt, aNop), nod) case *ast.DeferStmt: st.push(addChild(&root, anc, pos, deferStmt, aNop), nod) case *ast.Ellipsis: st.push(addChild(&root, anc, pos, ellipsisExpr, aNop), nod) case *ast.ExprStmt: st.push(addChild(&root, anc, pos, exprStmt, aNop), nod) case *ast.Field: st.push(addChild(&root, anc, pos, fieldExpr, aNop), nod) case *ast.FieldList: st.push(addChild(&root, anc, pos, fieldList, aNop), nod) case *ast.File: pkgName = a.Name.Name st.push(addChild(&root, anc, pos, fileStmt, aNop), nod) case *ast.ForStmt: // Disambiguate variants of FOR statements with a node kind per variant var kind nkind switch { case a.Cond == nil && a.Init == nil && a.Post == nil: kind = forStmt0 case a.Cond == nil && a.Init != nil && a.Post == nil: kind = forStmt1 case a.Cond != nil && a.Init == nil && a.Post == nil: kind = forStmt2 case a.Cond != nil && a.Init != nil && a.Post == nil: kind = forStmt3 case a.Cond == nil && a.Init == nil && a.Post != nil: kind = forStmt4 case a.Cond != nil && a.Init == nil && a.Post != nil: kind = forStmt5 case a.Cond == nil && a.Init != nil && a.Post != nil: kind = forStmt6 case a.Cond != nil && a.Init != nil && a.Post != nil: kind = forStmt7 } st.push(addChild(&root, anc, pos, kind, aNop), nod) case *ast.FuncDecl: n := addChild(&root, anc, pos, funcDecl, aNop) n.val = n if a.Recv == nil { // Function is not a method, create an empty receiver list. addChild(&root, astNode{n, nod}, pos, fieldList, aNop) } st.push(n, nod) case *ast.FuncLit: n := addChild(&root, anc, pos, funcLit, aGetFunc) addChild(&root, astNode{n, nod}, pos, fieldList, aNop) addChild(&root, astNode{n, nod}, pos, undefNode, aNop) st.push(n, nod) case *ast.FuncType: n := addChild(&root, anc, pos, funcType, aNop) n.val = n if a.TypeParams == nil { // Function has no type parameters, create an empty fied list. addChild(&root, astNode{n, nod}, pos, fieldList, aNop) } st.push(n, nod) case *ast.GenDecl: var kind nkind switch a.Tok { case token.CONST: kind = constDecl case token.IMPORT: kind = importDecl case token.TYPE: kind = typeDecl case token.VAR: kind = varDecl } st.push(addChild(&root, anc, pos, kind, aNop), nod) case *ast.GoStmt: st.push(addChild(&root, anc, pos, goStmt, aNop), nod) case *ast.Ident: n := addChild(&root, anc, pos, identExpr, aNop) n.ident = a.Name st.push(n, nod) if n.anc.kind == defineStmt && n.anc.anc.kind == constDecl && n.anc.nright == 0 { // Implicit assign expression (in a ConstDecl block). // Clone assign source and type from previous a := n.anc pa := a.anc.child[childPos(a)-1] if len(pa.child) > pa.nleft+pa.nright { // duplicate previous type spec a.child = append(a.child, interp.dup(pa.child[a.nleft], a)) } // duplicate previous assign right hand side a.child = append(a.child, interp.dup(pa.lastChild(), a)) a.nright++ } case *ast.IfStmt: // Disambiguate variants of IF statements with a node kind per variant var kind nkind switch { case a.Init == nil && a.Else == nil: kind = ifStmt0 case a.Init == nil && a.Else != nil: kind = ifStmt1 case a.Else == nil: kind = ifStmt2 default: kind = ifStmt3 } st.push(addChild(&root, anc, pos, kind, aNop), nod) case *ast.ImportSpec: st.push(addChild(&root, anc, pos, importSpec, aNop), nod) case *ast.IncDecStmt: var act action switch a.Tok { case token.INC: act = aInc case token.DEC: act = aDec } st.push(addChild(&root, anc, pos, incDecStmt, act), nod) case *ast.IndexExpr: st.push(addChild(&root, anc, pos, indexExpr, aGetIndex), nod) case *ast.IndexListExpr: st.push(addChild(&root, anc, pos, indexListExpr, aNop), nod) case *ast.InterfaceType: st.push(addChild(&root, anc, pos, interfaceType, aNop), nod) case *ast.KeyValueExpr: st.push(addChild(&root, anc, pos, keyValueExpr, aNop), nod) case *ast.LabeledStmt: st.push(addChild(&root, anc, pos, labeledStmt, aNop), nod) case *ast.MapType: st.push(addChild(&root, anc, pos, mapType, aNop), nod) case *ast.ParenExpr: st.push(addChild(&root, anc, pos, parenExpr, aNop), nod) case *ast.RangeStmt: // Insert a missing ForRangeStmt for AST correctness n := addChild(&root, anc, pos, forRangeStmt, aNop) r := addChild(&root, astNode{n, nod}, pos, rangeStmt, aRange) st.push(r, nod) if a.Key == nil { // range not in an assign expression: insert a "_" key variable to store iteration index k := addChild(&root, astNode{r, nod}, pos, identExpr, aNop) k.ident = "_" } case *ast.ReturnStmt: st.push(addChild(&root, anc, pos, returnStmt, aReturn), nod) case *ast.SelectStmt: st.push(addChild(&root, anc, pos, selectStmt, aNop), nod) case *ast.SelectorExpr: st.push(addChild(&root, anc, pos, selectorExpr, aGetIndex), nod) case *ast.SendStmt: st.push(addChild(&root, anc, pos, sendStmt, aSend), nod) case *ast.SliceExpr: if a.Low == nil { st.push(addChild(&root, anc, pos, sliceExpr, aSlice0), nod) } else { st.push(addChild(&root, anc, pos, sliceExpr, aSlice), nod) } case *ast.StarExpr: st.push(addChild(&root, anc, pos, starExpr, aStar), nod) case *ast.StructType: st.push(addChild(&root, anc, pos, structType, aNop), nod) case *ast.SwitchStmt: if a.Tag == nil { st.push(addChild(&root, anc, pos, switchIfStmt, aNop), nod) } else { st.push(addChild(&root, anc, pos, switchStmt, aNop), nod) } case *ast.TypeAssertExpr: st.push(addChild(&root, anc, pos, typeAssertExpr, aTypeAssert), nod) case *ast.TypeSpec: if a.Assign.IsValid() { st.push(addChild(&root, anc, pos, typeSpecAssign, aNop), nod) break } st.push(addChild(&root, anc, pos, typeSpec, aNop), nod) case *ast.TypeSwitchStmt: n := addChild(&root, anc, pos, typeSwitch, aNop) st.push(n, nod) if a.Init == nil { // add an empty init node to disambiguate AST addChild(&root, astNode{n, nil}, pos, fieldList, aNop) } case *ast.UnaryExpr: kind := unaryExpr var act action switch a.Op { case token.ADD: act = aPos case token.AND: kind = addressExpr act = aAddr case token.ARROW: act = aRecv case token.NOT: act = aNot case token.SUB: act = aNeg case token.XOR: act = aBitNot } st.push(addChild(&root, anc, pos, kind, act), nod) case *ast.ValueSpec: kind := valueSpec act := aNop switch { case a.Values != nil: if len(a.Names) > 1 && len(a.Values) == 1 { if anc.node.kind == constDecl || anc.node.kind == varDecl { kind = defineXStmt } else { kind = assignXStmt } act = aAssignX } else { if anc.node.kind == constDecl || anc.node.kind == varDecl { kind = defineStmt } else { kind = assignStmt } act = aAssign } case anc.node.kind == constDecl: kind, act = defineStmt, aAssign case anc.node.kind == varDecl && anc.node.anc.kind != fileStmt: kind, act = defineStmt, aAssign } n := addChild(&root, anc, pos, kind, act) n.nleft = len(a.Names) n.nright = len(a.Values) st.push(n, nod) default: err = astError(fmt.Errorf("ast: %T not implemented, line %s", a, interp.fset.Position(pos))) return false } return true }) interp.roots = append(interp.roots, root) return pkgName, root, err } type astNode struct { node *node ast ast.Node } type nodestack []astNode func (s *nodestack) push(n *node, a ast.Node) { *s = append(*s, astNode{n, a}) } func (s *nodestack) pop() astNode { l := len(*s) - 1 res := (*s)[l] *s = (*s)[:l] return res } func (s *nodestack) top() astNode { l := len(*s) if l > 0 { return (*s)[l-1] } return astNode{} } // dup returns a duplicated node subtree. func (interp *Interpreter) dup(nod, anc *node) *node { nindex := atomic.AddInt64(&interp.nindex, 1) n := *nod n.index = nindex n.anc = anc n.start = &n n.pos = anc.pos n.child = nil for _, c := range nod.child { n.child = append(n.child, interp.dup(c, &n)) } return &n } yaegi-0.16.1/interp/build.go000066400000000000000000000111541460330105400156220ustar00rootroot00000000000000package interp import ( "go/ast" "go/build" "go/parser" "path" "path/filepath" "strconv" "strings" ) // buildOk returns true if a file or script matches build constraints // as specified in https://golang.org/pkg/go/build/#hdr-Build_Constraints. // An error from parser is returned as well. func (interp *Interpreter) buildOk(ctx *build.Context, name, src string) (bool, error) { // Extract comments before the first clause f, err := parser.ParseFile(interp.fset, name, src, parser.PackageClauseOnly|parser.ParseComments) if err != nil { return false, err } for _, g := range f.Comments { // in file, evaluate the AND of multiple line build constraints for _, line := range strings.Split(strings.TrimSpace(g.Text()), "\n") { if !buildLineOk(ctx, line) { return false, nil } } } setYaegiTags(ctx, f.Comments) return true, nil } // buildLineOk returns true if line is not a build constraint or // if build constraint is satisfied. func buildLineOk(ctx *build.Context, line string) (ok bool) { if len(line) < 7 || line[:7] != "+build " { return true } // In line, evaluate the OR of space-separated options options := strings.Split(strings.TrimSpace(line[6:]), " ") for _, o := range options { if ok = buildOptionOk(ctx, o); ok { break } } return ok } // buildOptionOk return true if all comma separated tags match, false otherwise. func buildOptionOk(ctx *build.Context, tag string) bool { // in option, evaluate the AND of individual tags for _, t := range strings.Split(tag, ",") { if !buildTagOk(ctx, t) { return false } } return true } // buildTagOk returns true if a build tag matches, false otherwise // if first character is !, result is negated. func buildTagOk(ctx *build.Context, s string) (r bool) { not := s[0] == '!' if not { s = s[1:] } switch { case contains(ctx.BuildTags, s): r = true case s == ctx.GOOS: r = true case s == ctx.GOARCH: r = true case len(s) > 4 && s[:4] == "go1.": if n, err := strconv.Atoi(s[4:]); err != nil { r = false } else { r = goMinorVersion(ctx) >= n } } if not { r = !r } return } // setYaegiTags scans a comment group for "yaegi:tags tag1 tag2 ..." lines // and adds the corresponding tags to the interpreter build tags. func setYaegiTags(ctx *build.Context, comments []*ast.CommentGroup) { for _, g := range comments { for _, line := range strings.Split(strings.TrimSpace(g.Text()), "\n") { if len(line) < 11 || line[:11] != "yaegi:tags " { continue } tags := strings.Split(strings.TrimSpace(line[10:]), " ") for _, tag := range tags { if !contains(ctx.BuildTags, tag) { ctx.BuildTags = append(ctx.BuildTags, tag) } } } } } func contains(tags []string, tag string) bool { for _, t := range tags { if t == tag { return true } } return false } // goMinorVersion returns the go minor version number. func goMinorVersion(ctx *build.Context) int { current := ctx.ReleaseTags[len(ctx.ReleaseTags)-1] v := strings.Split(current, ".") if len(v) < 2 { panic("unsupported Go version: " + current) } m, err := strconv.Atoi(v[1]) if err != nil { panic("unsupported Go version: " + current) } return m } // skipFile returns true if file should be skipped. func skipFile(ctx *build.Context, p string, skipTest bool) bool { if !strings.HasSuffix(p, ".go") { return true } p = strings.TrimSuffix(path.Base(p), ".go") if pp := filepath.Base(p); strings.HasPrefix(pp, "_") || strings.HasPrefix(pp, ".") { return true } if skipTest && strings.HasSuffix(p, "_test") { return true } i := strings.Index(p, "_") if i < 0 { return false } a := strings.Split(p[i+1:], "_") last := len(a) - 1 if last-1 >= 0 { switch x, y := a[last-1], a[last]; { case x == ctx.GOOS: if knownArch[y] { return y != ctx.GOARCH } return false case knownOs[x] && knownArch[y]: return true case knownArch[y] && y != ctx.GOARCH: return true default: return false } } if x := a[last]; knownOs[x] && x != ctx.GOOS || knownArch[x] && x != ctx.GOARCH { return true } return false } var knownOs = map[string]bool{ "aix": true, "android": true, "darwin": true, "dragonfly": true, "freebsd": true, "illumos": true, "ios": true, "js": true, "linux": true, "netbsd": true, "openbsd": true, "plan9": true, "solaris": true, "wasip1": true, "windows": true, } var knownArch = map[string]bool{ "386": true, "amd64": true, "arm": true, "arm64": true, "loong64": true, "mips": true, "mips64": true, "mips64le": true, "mipsle": true, "ppc64": true, "ppc64le": true, "s390x": true, "wasm": true, } yaegi-0.16.1/interp/build_test.go000066400000000000000000000054671460330105400166730ustar00rootroot00000000000000package interp import ( "go/build" "testing" ) type testBuild struct { src string res bool } func TestBuildTag(t *testing.T) { // Assume a specific OS, arch and go version no matter the real underlying system ctx := build.Context{ GOARCH: "amd64", GOOS: "linux", BuildTags: []string{"foo"}, ReleaseTags: []string{"go1.11"}, } tests := []testBuild{ {"// +build linux", true}, {"// +build windows", false}, {"// +build go1.9", true}, {"// +build go1.11", true}, {"// +build go1.12", false}, {"// +build !go1.10", false}, {"// +build !go1.12", true}, {"// +build ignore", false}, {"// +build linux,amd64", true}, {"// +build linux,i386", false}, {"// +build linux,i386 go1.11", true}, {"// +build linux\n// +build amd64", true}, {"// +build linux\n\n\n// +build amd64", true}, {"// +build linux\n// +build i386", false}, {"// +build foo", true}, {"// +build !foo", false}, {"// +build bar", false}, } i := New(Options{}) for _, test := range tests { test := test src := test.src + "\npackage x" t.Run(test.src, func(t *testing.T) { if r, _ := i.buildOk(&ctx, "", src); r != test.res { t.Errorf("got %v, want %v", r, test.res) } }) } } func TestSkipFile(t *testing.T) { // Assume a specific OS, arch and go pattern no matter the real underlying system ctx := build.Context{ GOARCH: "amd64", GOOS: "linux", } tests := []testBuild{ {"foo/bar_linux_amd64.go", false}, {"foo/bar.go", false}, {"bar.go", false}, {"bar_linux.go", false}, {"bar_maix.go", false}, {"bar_mlinux.go", false}, {"bar_aix_foo.go", false}, {"bar_linux_foo.go", false}, {"bar_foo_amd64.go", false}, {"bar_foo_arm.go", true}, {"bar_aix_s390x.go", true}, {"bar_aix_amd64.go", true}, {"bar_linux_arm.go", true}, {"bar_amd64.go", false}, {"bar_arm.go", true}, } for _, test := range tests { test := test t.Run(test.src, func(t *testing.T) { if r := skipFile(&ctx, test.src, NoTest); r != test.res { t.Errorf("got %v, want %v", r, test.res) } }) } } func Test_goMinorVersion(t *testing.T) { tests := []struct { desc string context build.Context expected int }{ { desc: "stable", context: build.Context{ReleaseTags: []string{ "go1.1", "go1.2", "go1.3", "go1.4", "go1.5", "go1.6", "go1.7", "go1.8", "go1.9", "go1.10", "go1.11", "go1.12", }}, expected: 12, }, { desc: "devel/beta/rc", context: build.Context{ReleaseTags: []string{ "go1.1", "go1.2", "go1.3", "go1.4", "go1.5", "go1.6", "go1.7", "go1.8", "go1.9", "go1.10", "go1.11", "go1.12", "go1.13", }}, expected: 13, }, } for _, test := range tests { test := test t.Run(test.desc, func(t *testing.T) { minor := goMinorVersion(&test.context) if minor != test.expected { t.Errorf("got %v, want %v", minor, test.expected) } }) } } yaegi-0.16.1/interp/cfg.go000066400000000000000000002372051460330105400152710ustar00rootroot00000000000000package interp import ( "fmt" "go/constant" "log" "math" "path/filepath" "reflect" "strings" "unicode" ) // A cfgError represents an error during CFG build stage. type cfgError struct { *node error } func (c *cfgError) Error() string { return c.error.Error() } var constOp = map[action]func(*node){ aAdd: addConst, aSub: subConst, aMul: mulConst, aQuo: quoConst, aRem: remConst, aAnd: andConst, aOr: orConst, aShl: shlConst, aShr: shrConst, aAndNot: andNotConst, aXor: xorConst, aNot: notConst, aBitNot: bitNotConst, aNeg: negConst, aPos: posConst, } var constBltn = map[string]func(*node){ bltnComplex: complexConst, bltnImag: imagConst, bltnReal: realConst, } const nilIdent = "nil" func init() { // Use init() to avoid initialization cycles for the following constant builtins. constBltn[bltnAlignof] = alignof constBltn[bltnOffsetof] = offsetof constBltn[bltnSizeof] = sizeof } // cfg generates a control flow graph (CFG) from AST (wiring successors in AST) // and pre-compute frame sizes and indexes for all un-named (temporary) and named // variables. A list of nodes of init functions is returned. // Following this pass, the CFG is ready to run. func (interp *Interpreter) cfg(root *node, sc *scope, importPath, pkgName string) ([]*node, error) { if sc == nil { sc = interp.initScopePkg(importPath, pkgName) } check := typecheck{scope: sc} var initNodes []*node var err error baseName := filepath.Base(interp.fset.Position(root.pos).Filename) root.Walk(func(n *node) bool { // Pre-order processing if err != nil { return false } if n.scope == nil { n.scope = sc } switch n.kind { case binaryExpr, unaryExpr, parenExpr: if isBoolAction(n) { break } // Gather assigned type if set, to give context for type propagation at post-order. switch n.anc.kind { case assignStmt, defineStmt: a := n.anc i := childPos(n) - a.nright if i < 0 { break } if len(a.child) > a.nright+a.nleft { i-- } dest := a.child[i] if dest.typ == nil { break } if dest.typ.incomplete { err = n.cfgErrorf("invalid type declaration") return false } if !isInterface(dest.typ) { // Interface type are not propagated, and will be resolved at post-order. n.typ = dest.typ } case binaryExpr, unaryExpr, parenExpr: n.typ = n.anc.typ } case defineStmt: // Determine type of variables initialized at declaration, so it can be propagated. if n.nleft+n.nright == len(n.child) { // No type was specified on the left hand side, it will resolved at post-order. break } n.typ, err = nodeType(interp, sc, n.child[n.nleft]) if err != nil { break } for i := 0; i < n.nleft; i++ { n.child[i].typ = n.typ } case blockStmt: if n.anc != nil && n.anc.kind == rangeStmt { // For range block: ensure that array or map type is propagated to iterators // prior to process block. We cannot perform this at RangeStmt pre-order because // type of array like value is not yet known. This could be fixed in ast structure // by setting array/map node as 1st child of ForRangeStmt instead of 3rd child of // RangeStmt. The following workaround is less elegant but ok. c := n.anc.child[1] if c != nil && c.typ != nil && isSendChan(c.typ) { err = c.cfgErrorf("invalid operation: range %s receive from send-only channel", c.ident) return false } if t := sc.rangeChanType(n.anc); t != nil { // range over channel e := n.anc.child[0] index := sc.add(t.val) sc.sym[e.ident] = &symbol{index: index, kind: varSym, typ: t.val} e.typ = t.val e.findex = index n.anc.gen = rangeChan } else { // range over array or map var ktyp, vtyp *itype var k, v, o *node if len(n.anc.child) == 4 { k, v, o = n.anc.child[0], n.anc.child[1], n.anc.child[2] } else { k, o = n.anc.child[0], n.anc.child[1] } switch o.typ.cat { case valueT, linkedT: typ := o.typ.rtype if o.typ.cat == linkedT { typ = o.typ.val.TypeOf() } switch typ.Kind() { case reflect.Map: n.anc.gen = rangeMap ityp := valueTOf(reflect.TypeOf((*reflect.MapIter)(nil))) sc.add(ityp) ktyp = valueTOf(typ.Key()) vtyp = valueTOf(typ.Elem()) case reflect.String: sc.add(sc.getType("int")) // Add a dummy type to store array shallow copy for range sc.add(sc.getType("int")) // Add a dummy type to store index for range ktyp = sc.getType("int") vtyp = sc.getType("rune") case reflect.Array, reflect.Slice: sc.add(sc.getType("int")) // Add a dummy type to store array shallow copy for range ktyp = sc.getType("int") vtyp = valueTOf(typ.Elem()) } case mapT: n.anc.gen = rangeMap ityp := valueTOf(reflect.TypeOf((*reflect.MapIter)(nil))) sc.add(ityp) ktyp = o.typ.key vtyp = o.typ.val case ptrT: ktyp = sc.getType("int") vtyp = o.typ.val if vtyp.cat == valueT { vtyp = valueTOf(vtyp.rtype.Elem()) } else { vtyp = vtyp.val } case stringT: sc.add(sc.getType("int")) // Add a dummy type to store array shallow copy for range sc.add(sc.getType("int")) // Add a dummy type to store index for range ktyp = sc.getType("int") vtyp = sc.getType("rune") case arrayT, sliceT, variadicT: sc.add(sc.getType("int")) // Add a dummy type to store array shallow copy for range ktyp = sc.getType("int") vtyp = o.typ.val } kindex := sc.add(ktyp) sc.sym[k.ident] = &symbol{index: kindex, kind: varSym, typ: ktyp} k.typ = ktyp k.findex = kindex if v != nil { vindex := sc.add(vtyp) sc.sym[v.ident] = &symbol{index: vindex, kind: varSym, typ: vtyp} v.typ = vtyp v.findex = vindex } } } n.findex = -1 n.val = nil sc = sc.pushBloc() // Pre-define symbols for labels defined in this block, so we are sure that // they are already defined when met. // TODO(marc): labels must be stored outside of symbols to avoid collisions. for _, c := range n.child { if c.kind != labeledStmt { continue } label := c.child[0].ident sym := &symbol{kind: labelSym, node: c, index: -1} sc.sym[label] = sym c.sym = sym } // If block is the body of a function, get declared variables in current scope. // This is done in order to add the func signature symbols into sc.sym, // as we will need them in post-processing. if n.anc != nil && n.anc.kind == funcDecl { for k, v := range sc.anc.sym { sc.sym[k] = v } } case breakStmt, continueStmt, gotoStmt: if len(n.child) == 0 { break } // Handle labeled statements. label := n.child[0].ident if sym, _, ok := sc.lookup(label); ok { if sym.kind != labelSym { err = n.child[0].cfgErrorf("label %s not defined", label) break } n.sym = sym } else { n.sym = &symbol{kind: labelSym, index: -1} sc.sym[label] = n.sym } if n.kind == gotoStmt { n.sym.from = append(n.sym.from, n) // To allow forward goto statements. } case caseClause: sc = sc.pushBloc() if sn := n.anc.anc; sn.kind == typeSwitch && sn.child[1].action == aAssign { // Type switch clause with a var defined in switch guard. var typ *itype if len(n.child) == 2 { // 1 type in clause: define the var with this type in the case clause scope. switch { case n.child[0].ident == nilIdent: typ = sc.getType("interface{}") case !n.child[0].isType(sc): err = n.cfgErrorf("%s is not a type", n.child[0].ident) default: typ, err = nodeType(interp, sc, n.child[0]) } } else { // Define the var with the type in the switch guard expression. typ = sn.child[1].child[1].child[0].typ } if err != nil { return false } nod := n.lastChild().child[0] index := sc.add(typ) sc.sym[nod.ident] = &symbol{index: index, kind: varSym, typ: typ} nod.findex = index nod.typ = typ } case commClauseDefault: sc = sc.pushBloc() case commClause: sc = sc.pushBloc() if len(n.child) > 0 && n.child[0].action == aAssign { ch := n.child[0].child[1].child[0] var typ *itype if typ, err = nodeType(interp, sc, ch); err != nil { return false } if !isChan(typ) { err = n.cfgErrorf("invalid operation: receive from non-chan type") return false } elem := chanElement(typ) assigned := n.child[0].child[0] index := sc.add(elem) sc.sym[assigned.ident] = &symbol{index: index, kind: varSym, typ: elem} assigned.findex = index assigned.typ = elem } case compositeLitExpr: if len(n.child) > 0 && n.child[0].isType(sc) { // Get type from 1st child. if n.typ, err = nodeType(interp, sc, n.child[0]); err != nil { return false } // Indicate that the first child is the type. n.nleft = 1 } else { // Get type from ancestor (implicit type). if n.anc.kind == keyValueExpr && n == n.anc.child[0] { n.typ = n.anc.typ.key } else if atyp := n.anc.typ; atyp != nil { if atyp.cat == valueT && hasElem(atyp.rtype) { n.typ = valueTOf(atyp.rtype.Elem()) } else { n.typ = atyp.val } } if n.typ == nil { // A nil type indicates either an error or a generic type. // A child indexExpr or indexListExpr is used for type parameters, // it indicates an instanciated generic. if n.child[0].kind != indexExpr && n.child[0].kind != indexListExpr { err = n.cfgErrorf("undefined type") return false } t0, err1 := nodeType(interp, sc, n.child[0].child[0]) if err1 != nil { return false } if t0.cat != genericT { err = n.cfgErrorf("undefined type") return false } // We have a composite literal of generic type, instantiate it. lt := []*itype{} for _, n1 := range n.child[0].child[1:] { t1, err1 := nodeType(interp, sc, n1) if err1 != nil { return false } lt = append(lt, t1) } var g *node g, _, err = genAST(sc, t0.node.anc, lt) if err != nil { return false } n.child[0] = g.lastChild() n.typ, err = nodeType(interp, sc, n.child[0]) if err != nil { return false } // Generate methods if any. for _, nod := range t0.method { gm, _, err2 := genAST(nod.scope, nod, lt) if err2 != nil { err = err2 return false } gm.typ, err = nodeType(interp, nod.scope, gm.child[2]) if err != nil { return false } if _, err = interp.cfg(gm, sc, sc.pkgID, sc.pkgName); err != nil { return false } if err = genRun(gm); err != nil { return false } n.typ.addMethod(gm) } n.nleft = 1 // Indictate the type of composite literal. } } child := n.child if n.nleft > 0 { n.child[0].typ = n.typ child = n.child[1:] } // Propagate type to children, to handle implicit types for _, c := range child { if isBlank(c) { err = n.cfgErrorf("cannot use _ as value") return false } switch c.kind { case binaryExpr, unaryExpr, compositeLitExpr: // Do not attempt to propagate composite type to operator expressions, // it breaks constant folding. case keyValueExpr, typeAssertExpr, indexExpr: c.typ = n.typ default: if c.ident == nilIdent { c.typ = sc.getType(nilIdent) continue } if c.typ, err = nodeType(interp, sc, c); err != nil { return false } } } case forStmt0, forStmt1, forStmt2, forStmt3, forStmt4, forStmt5, forStmt6, forStmt7, forRangeStmt: sc = sc.pushBloc() sc.loop, sc.loopRestart = n, n.lastChild() case funcLit: n.typ = nil // to force nodeType to recompute the type if n.typ, err = nodeType(interp, sc, n); err != nil { return false } n.findex = sc.add(n.typ) fallthrough case funcDecl: // Do not allow function declarations without body. if len(n.child) < 4 { err = n.cfgErrorf("missing function body") return false } n.val = n // Skip substree in case of a generic function. if len(n.child[2].child[0].child) > 0 { return false } // Skip subtree if the function is a method with a generic receiver. if len(n.child[0].child) > 0 { recvTypeNode := n.child[0].child[0].lastChild() typ, err := nodeType(interp, sc, recvTypeNode) if err != nil { return false } if typ.cat == genericT || (typ.val != nil && typ.val.cat == genericT) { return false } if typ.cat == ptrT { rc0 := recvTypeNode.child[0] rt0, err := nodeType(interp, sc, rc0) if err != nil { return false } if rc0.kind == indexExpr && rt0.cat == structT { return false } } } // Compute function type before entering local scope to avoid // possible collisions with function argument names. n.child[2].typ, err = nodeType(interp, sc, n.child[2]) if err != nil { return false } n.typ = n.child[2].typ // Add a frame indirection level as we enter in a func. sc = sc.pushFunc() sc.def = n // Allocate frame space for return values, define output symbols. if len(n.child[2].child) == 3 { for _, c := range n.child[2].child[2].child { var typ *itype if typ, err = nodeType(interp, sc, c.lastChild()); err != nil { return false } if len(c.child) > 1 { for _, cc := range c.child[:len(c.child)-1] { sc.sym[cc.ident] = &symbol{index: sc.add(typ), kind: varSym, typ: typ} } } else { sc.add(typ) } } } // Define receiver symbol. if len(n.child[0].child) > 0 { var typ *itype fr := n.child[0].child[0] recvTypeNode := fr.lastChild() if typ, err = nodeType(interp, sc, recvTypeNode); err != nil { return false } if typ.cat == nilT { // This may happen when instantiating generic methods. s2, _, ok := sc.lookup(typ.id()) if !ok { err = n.cfgErrorf("type not found: %s", typ.id()) break } typ = s2.typ if typ.cat == nilT { err = n.cfgErrorf("nil type: %s", typ.id()) break } } recvTypeNode.typ = typ n.child[2].typ.recv = typ n.typ.recv = typ index := sc.add(typ) if len(fr.child) > 1 { sc.sym[fr.child[0].ident] = &symbol{index: index, kind: varSym, typ: typ} } } // Define input parameter symbols. for _, c := range n.child[2].child[1].child { var typ *itype if typ, err = nodeType(interp, sc, c.lastChild()); err != nil { return false } for _, cc := range c.child[:len(c.child)-1] { sc.sym[cc.ident] = &symbol{index: sc.add(typ), kind: varSym, typ: typ} } } if n.child[1].ident == "init" && len(n.child[0].child) == 0 { initNodes = append(initNodes, n) } case ifStmt0, ifStmt1, ifStmt2, ifStmt3: sc = sc.pushBloc() case switchStmt, switchIfStmt, typeSwitch: // Make sure default clause is in last position. c := n.lastChild().child if i, l := getDefault(n), len(c)-1; i >= 0 && i != l { c[i], c[l] = c[l], c[i] } sc = sc.pushBloc() sc.loop = n case importSpec: // Already all done in GTA. return false case typeSpec: // Processing already done in GTA pass for global types, only parses inlined types. if sc.def == nil { return false } typeName := n.child[0].ident var typ *itype if typ, err = nodeType(interp, sc, n.child[1]); err != nil { return false } if typ.incomplete { // Type may still be incomplete in case of a local recursive struct declaration. if typ, err = typ.finalize(); err != nil { err = n.cfgErrorf("invalid type declaration") return false } } switch n.child[1].kind { case identExpr, selectorExpr: n.typ = namedOf(typ, pkgName, typeName) default: n.typ = typ n.typ.name = typeName } sc.sym[typeName] = &symbol{kind: typeSym, typ: n.typ} return false case constDecl: // Early parse of constDecl subtrees, to compute all constant // values which may be used in further declarations. if !sc.global { for _, c := range n.child { if _, err = interp.cfg(c, sc, importPath, pkgName); err != nil { // No error processing here, to allow recovery in subtree nodes. err = nil } } } case arrayType, basicLit, chanType, chanTypeRecv, chanTypeSend, funcType, interfaceType, mapType, structType: n.typ, err = nodeType(interp, sc, n) return false } return true }, func(n *node) { // Post-order processing if err != nil { return } defer func() { if r := recover(); r != nil { // Display the exact location in input source which triggered the panic panic(n.cfgErrorf("CFG post-order panic: %v", r)) } }() switch n.kind { case addressExpr: if isBlank(n.child[0]) { err = n.cfgErrorf("cannot use _ as value") break } wireChild(n) err = check.addressExpr(n) if err != nil { break } n.typ = ptrOf(n.child[0].typ) n.findex = sc.add(n.typ) case assignStmt, defineStmt: if n.anc.kind == typeSwitch && n.anc.child[1] == n { // type switch guard assignment: assign dest to concrete value of src n.gen = nop break } var atyp *itype if n.nleft+n.nright < len(n.child) { if atyp, err = nodeType(interp, sc, n.child[n.nleft]); err != nil { break } } var sbase int if n.nright > 0 { sbase = len(n.child) - n.nright } wireChild(n) for i := 0; i < n.nleft; i++ { dest, src := n.child[i], n.child[sbase+i] updateSym := false var sym *symbol var level int if dest.rval.IsValid() && isConstType(dest.typ) { err = n.cfgErrorf("cannot assign to %s (%s constant)", dest.rval, dest.typ.str) break } if isBlank(src) { err = n.cfgErrorf("cannot use _ as value") break } if n.kind == defineStmt || (n.kind == assignStmt && dest.ident == "_") { if atyp != nil { dest.typ = atyp } else { if src.typ, err = nodeType(interp, sc, src); err != nil { return } if src.typ.isBinMethod { dest.typ = valueTOf(src.typ.methodCallType()) } else { // In a new definition, propagate the source type to the destination // type. If the source is an untyped constant, make sure that the // type matches a default type. dest.typ = sc.fixType(src.typ) } } if dest.typ.incomplete { return } if sc.global { // Do not overload existing symbols (defined in GTA) in global scope. sym, _, _ = sc.lookup(dest.ident) } if sym == nil { sym = &symbol{index: sc.add(dest.typ), kind: varSym, typ: dest.typ} sc.sym[dest.ident] = sym } dest.val = src.val dest.recv = src.recv dest.findex = sym.index updateSym = true } else { sym, level, _ = sc.lookup(dest.ident) } err = check.assignExpr(n, dest, src) if err != nil { break } if updateSym { sym.typ = dest.typ sym.rval = src.rval // As we are updating the sym type, we need to update the sc.type // when the sym has an index. if sym.index >= 0 { sc.types[sym.index] = sym.typ.frameType() } } n.findex = dest.findex n.level = dest.level // In the following, we attempt to optimize by skipping the assign // operation and setting the source location directly to the destination // location in the frame. // switch { case n.action != aAssign: // Do not skip assign operation if it is combined with another operator. case src.rval.IsValid(): // Do not skip assign operation if setting from a constant value. case isMapEntry(dest): // Setting a map entry requires an additional step, do not optimize. // As we only write, skip the default useless getIndexMap dest action. dest.gen = nop case isFuncField(dest): // Setting a struct field of function type requires an extra step. Do not optimize. case isCall(src) && !isInterfaceSrc(dest.typ) && n.kind != defineStmt: // Call action may perform the assignment directly. if dest.typ.id() != src.typ.id() { // Skip optimitization if returned type doesn't match assigned one. break } n.gen = nop src.level = level src.findex = dest.findex if src.typ.untyped && !dest.typ.untyped { src.typ = dest.typ } case src.action == aRecv: // Assign by reading from a receiving channel. n.gen = nop src.findex = dest.findex // Set recv address to LHS. dest.typ = src.typ case src.action == aCompositeLit: if dest.typ.cat == valueT && dest.typ.rtype.Kind() == reflect.Interface { // Skip optimisation for assigned interface. break } if dest.action == aGetIndex || dest.action == aStar { // Skip optimization, as it does not work when assigning to a struct field or a dereferenced pointer. break } n.gen = nop src.findex = dest.findex src.level = level case len(n.child) < 4 && n.kind != defineStmt && isArithmeticAction(src) && !isInterface(dest.typ): // Optimize single assignments from some arithmetic operations. src.typ = dest.typ src.findex = dest.findex src.level = level n.gen = nop case src.kind == basicLit: // Assign to nil. src.rval = reflect.New(dest.typ.TypeOf()).Elem() case n.nright == 0: n.gen = reset } n.typ = dest.typ if sym != nil { sym.typ = n.typ sym.recv = src.recv } n.level = level if n.anc.kind == constDecl { n.gen = nop n.findex = notInFrame if sym, _, ok := sc.lookup(dest.ident); ok { sym.kind = constSym } if childPos(n) == len(n.anc.child)-1 { sc.iota = 0 } else { sc.iota++ } } } case incDecStmt: err = check.unaryExpr(n) if err != nil { break } wireChild(n) n.findex = n.child[0].findex n.level = n.child[0].level n.typ = n.child[0].typ if sym, level, ok := sc.lookup(n.child[0].ident); ok { sym.typ = n.typ n.level = level } case assignXStmt: wireChild(n) l := len(n.child) - 1 switch lc := n.child[l]; lc.kind { case callExpr: if n.child[l-1].isType(sc) { l-- } if r := lc.child[0].typ.numOut(); r != l { err = n.cfgErrorf("assignment mismatch: %d variables but %s returns %d values", l, lc.child[0].name(), r) } if isBinCall(lc, sc) { n.gen = nop } else { // TODO (marc): skip if no conversion or wrapping is needed. n.gen = assignFromCall } case indexExpr: lc.gen = getIndexMap2 n.gen = nop case typeAssertExpr: if n.child[0].ident == "_" { lc.gen = typeAssertStatus } else { lc.gen = typeAssertLong } n.gen = nop case unaryExpr: if lc.action == aRecv { lc.gen = recv2 n.gen = nop } } case defineXStmt: wireChild(n) if sc.def == nil { // In global scope, type definition already handled by GTA. break } err = compDefineX(sc, n) case binaryExpr: wireChild(n) nilSym := interp.universe.sym[nilIdent] c0, c1 := n.child[0], n.child[1] err = check.binaryExpr(n) if err != nil { break } switch n.action { case aRem: n.typ = c0.typ case aShl, aShr: if c0.typ.untyped { break } n.typ = c0.typ case aEqual, aNotEqual: n.typ = sc.getType("bool") if c0.sym == nilSym || c1.sym == nilSym { if n.action == aEqual { if c1.sym == nilSym { n.gen = isNilChild(0) } else { n.gen = isNilChild(1) } } else { n.gen = isNotNil } } case aGreater, aGreaterEqual, aLower, aLowerEqual: n.typ = sc.getType("bool") } if err != nil { break } if n.typ == nil { if n.typ, err = nodeType(interp, sc, n); err != nil { break } } if c0.rval.IsValid() && c1.rval.IsValid() && (!isInterface(n.typ)) && constOp[n.action] != nil { n.typ.TypeOf() // Force compute of reflection type. constOp[n.action](n) // Compute a constant result now rather than during exec. } switch { case n.rval.IsValid(): // This operation involved constants, and the result is already computed // by constOp and available in n.rval. Nothing else to do at execution. n.gen = nop n.findex = notInFrame case n.anc.kind == assignStmt && n.anc.action == aAssign && n.anc.nleft == 1: // To avoid a copy in frame, if the result is to be assigned, store it directly // at the frame location of destination. dest := n.anc.child[childPos(n)-n.anc.nright] n.typ = dest.typ n.findex = dest.findex n.level = dest.level case n.anc.kind == returnStmt: // To avoid a copy in frame, if the result is to be returned, store it directly // at the frame location reserved for output arguments. n.findex = childPos(n) default: // Allocate a new location in frame, and store the result here. n.findex = sc.add(n.typ) } case indexExpr: if isBlank(n.child[0]) { err = n.cfgErrorf("cannot use _ as value") break } wireChild(n) t := n.child[0].typ for t.cat == linkedT { t = t.val } switch t.cat { case ptrT: n.typ = t.val if t.val.cat == valueT { n.typ = valueTOf(t.val.rtype.Elem()) } else { n.typ = t.val.val } case stringT: n.typ = sc.getType("byte") case valueT: if t.rtype.Kind() == reflect.String { n.typ = sc.getType("byte") } else { n.typ = valueTOf(t.rtype.Elem()) } case funcT: // A function indexed by a type means an instantiated generic function. c1 := n.child[1] if !c1.isType(sc) { n.typ = t return } g, found, err := genAST(sc, t.node.anc, []*itype{c1.typ}) if err != nil { return } if !found { if _, err = interp.cfg(g, t.node.anc.scope, importPath, pkgName); err != nil { return } // Generate closures for function body. if err = genRun(g.child[3]); err != nil { return } } // Replace generic func node by instantiated one. n.anc.child[childPos(n)] = g n.typ = g.typ return case genericT: name := t.id() + "[" + n.child[1].typ.id() + "]" sym, _, ok := sc.lookup(name) if !ok { err = n.cfgErrorf("type not found: %s", name) return } n.gen = nop n.typ = sym.typ return case structT: // A struct indexed by a Type means an instantiated generic struct. name := t.name + "[" + n.child[1].ident + "]" sym, _, ok := sc.lookup(name) if ok { n.typ = sym.typ n.findex = sc.add(n.typ) n.gen = nop return } default: n.typ = t.val } n.findex = sc.add(n.typ) typ := t.TypeOf() if typ.Kind() == reflect.Map { err = check.assignment(n.child[1], t.key, "map index") n.gen = getIndexMap break } l := -1 switch k := typ.Kind(); k { case reflect.Array: l = typ.Len() fallthrough case reflect.Slice, reflect.String: n.gen = getIndexArray case reflect.Ptr: if typ2 := typ.Elem(); typ2.Kind() == reflect.Array { l = typ2.Len() n.gen = getIndexArray } else { err = n.cfgErrorf("type %v does not support indexing", typ) } default: err = n.cfgErrorf("type is not an array, slice, string or map: %v", t.id()) } err = check.index(n.child[1], l) case blockStmt: wireChild(n) if len(n.child) > 0 { l := n.lastChild() n.findex = l.findex n.level = l.level n.val = l.val n.sym = l.sym n.typ = l.typ n.rval = l.rval } sc = sc.pop() case constDecl: wireChild(n) case varDecl: // Global varDecl do not need to be wired as this // will be handled after cfg. if n.anc.kind == fileStmt { break } wireChild(n) case sendStmt: if !isChan(n.child[0].typ) { err = n.cfgErrorf("invalid operation: cannot send to non-channel %s", n.child[0].typ.id()) break } fallthrough case declStmt, exprStmt: wireChild(n) l := n.lastChild() n.findex = l.findex n.level = l.level n.val = l.val n.sym = l.sym n.typ = l.typ n.rval = l.rval case breakStmt: if len(n.child) == 0 { n.tnext = sc.loop break } if !n.hasAnc(n.sym.node) { err = n.cfgErrorf("invalid break label %s", n.child[0].ident) break } n.tnext = n.sym.node case continueStmt: if len(n.child) == 0 { n.tnext = sc.loopRestart break } if !n.hasAnc(n.sym.node) { err = n.cfgErrorf("invalid continue label %s", n.child[0].ident) break } n.tnext = n.sym.node.child[1].lastChild().start case gotoStmt: if n.sym.node == nil { // It can be only due to a forward goto, to be resolved at labeledStmt. // Invalid goto labels are catched at AST parsing. break } n.tnext = n.sym.node.start case labeledStmt: wireChild(n) if len(n.child) > 1 { n.start = n.child[1].start } for _, c := range n.sym.from { c.tnext = n.start // Resolve forward goto. } case callExpr: for _, c := range n.child { if isBlank(c) { err = n.cfgErrorf("cannot use _ as value") return } } wireChild(n) switch c0 := n.child[0]; { case c0.kind == indexListExpr: // Instantiate a generic function then call it. fun := c0.child[0].sym.node lt := []*itype{} for _, c := range c0.child[1:] { lt = append(lt, c.typ) } g, found, err := genAST(sc, fun, lt) if err != nil { return } if !found { _, err = interp.cfg(g, fun.scope, importPath, pkgName) if err != nil { return } err = genRun(g.child[3]) // Generate closures for function body. if err != nil { return } } n.child[0] = g c0 = n.child[0] wireChild(n) if typ := c0.typ; len(typ.ret) > 0 { n.typ = typ.ret[0] if n.anc.kind == returnStmt && n.typ.id() == sc.def.typ.ret[0].id() { // Store the result directly to the return value area of frame. // It can be done only if no type conversion at return is involved. n.findex = childPos(n) } else { n.findex = sc.add(n.typ) for _, t := range typ.ret[1:] { sc.add(t) } } } else { n.findex = notInFrame } case isBuiltinCall(n, sc): bname := c0.ident err = check.builtin(bname, n, n.child[1:], n.action == aCallSlice) if err != nil { break } n.gen = c0.sym.builtin c0.typ = &itype{cat: builtinT, name: bname} if n.typ, err = nodeType(interp, sc, n); err != nil { return } switch { case n.typ.cat == builtinT: n.findex = notInFrame n.val = nil switch bname { case "unsafe.alignOf", "unsafe.Offsetof", "unsafe.Sizeof": n.gen = nop } case n.anc.kind == returnStmt: // Store result directly to frame output location, to avoid a frame copy. n.findex = 0 case bname == "cap" && isInConstOrTypeDecl(n): t := n.child[1].typ.TypeOf() for t.Kind() == reflect.Ptr { t = t.Elem() } switch t.Kind() { case reflect.Array, reflect.Chan: capConst(n) default: err = n.cfgErrorf("cap argument is not an array or channel") } n.findex = notInFrame n.gen = nop case bname == "len" && isInConstOrTypeDecl(n): t := n.child[1].typ.TypeOf() for t.Kind() == reflect.Ptr { t = t.Elem() } switch t.Kind() { case reflect.Array, reflect.Chan, reflect.String: lenConst(n) default: err = n.cfgErrorf("len argument is not an array, channel or string") } n.findex = notInFrame n.gen = nop default: n.findex = sc.add(n.typ) } if op, ok := constBltn[bname]; ok { op(n) } case c0.isType(sc): // Type conversion expression c1 := n.child[1] switch len(n.child) { case 1: err = n.cfgErrorf("missing argument in conversion to %s", c0.typ.id()) case 2: err = check.conversion(c1, c0.typ) default: err = n.cfgErrorf("too many arguments in conversion to %s", c0.typ.id()) } if err != nil { break } n.action = aConvert switch { case isInterface(c0.typ) && !c1.isNil(): // Convert to interface: just check that all required methods are defined by concrete type. if !c1.typ.implements(c0.typ) { err = n.cfgErrorf("type %v does not implement interface %v", c1.typ.id(), c0.typ.id()) } // Convert type to interface while keeping a reference to the original concrete type. // besides type, the node value remains preserved. n.gen = nop t := *c0.typ n.typ = &t n.typ.val = c1.typ n.findex = c1.findex n.level = c1.level n.val = c1.val n.rval = c1.rval case c1.rval.IsValid() && isConstType(c0.typ): n.gen = nop n.findex = notInFrame n.typ = c0.typ if c, ok := c1.rval.Interface().(constant.Value); ok { i, _ := constant.Int64Val(constant.ToInt(c)) n.rval = reflect.ValueOf(i).Convert(c0.typ.rtype) } else { n.rval = c1.rval.Convert(c0.typ.rtype) } default: n.gen = convert n.typ = c0.typ n.findex = sc.add(n.typ) } case isBinCall(n, sc): err = check.arguments(n, n.child[1:], c0, n.action == aCallSlice) if err != nil { break } n.gen = callBin typ := c0.typ.rtype if typ.NumOut() > 0 { if funcType := c0.typ.val; funcType != nil { // Use the original unwrapped function type, to allow future field and // methods resolutions, otherwise impossible on the opaque bin type. n.typ = funcType.ret[0] n.findex = sc.add(n.typ) for i := 1; i < len(funcType.ret); i++ { sc.add(funcType.ret[i]) } } else { n.typ = valueTOf(typ.Out(0)) if n.anc.kind == returnStmt { n.findex = childPos(n) } else { n.findex = sc.add(n.typ) for i := 1; i < typ.NumOut(); i++ { sc.add(valueTOf(typ.Out(i))) } } } } default: // The call may be on a generic function. In that case, replace the // generic function AST by an instantiated one before going further. if isGeneric(c0.typ) { fun := c0.typ.node.anc var g *node var types []*itype var found bool // Infer type parameter from function call arguments. if types, err = inferTypesFromCall(sc, fun, n.child[1:]); err != nil { break } // Generate an instantiated AST from the generic function one. if g, found, err = genAST(sc, fun, types); err != nil { break } if !found { // Compile the generated function AST, so it becomes part of the scope. if _, err = interp.cfg(g, fun.scope, importPath, pkgName); err != nil { break } // AST compilation part 2: Generate closures for function body. if err = genRun(g.child[3]); err != nil { break } } n.child[0] = g c0 = n.child[0] } err = check.arguments(n, n.child[1:], c0, n.action == aCallSlice) if err != nil { break } if c0.action == aGetFunc { // Allocate a frame entry to store the anonymous function definition. sc.add(c0.typ) } if typ := c0.typ; len(typ.ret) > 0 { n.typ = typ.ret[0] if n.anc.kind == returnStmt && n.typ.id() == sc.def.typ.ret[0].id() { // Store the result directly to the return value area of frame. // It can be done only if no type conversion at return is involved. n.findex = childPos(n) } else { n.findex = sc.add(n.typ) for _, t := range typ.ret[1:] { sc.add(t) } } } else { n.findex = notInFrame } } case caseBody: wireChild(n) switch { case typeSwichAssign(n) && len(n.child) > 1: n.start = n.child[1].start case len(n.child) == 0: // Empty case body: jump to switch node (exit node). n.start = n.anc.anc.anc default: n.start = n.child[0].start } case caseClause: sc = sc.pop() case commClauseDefault: wireChild(n) sc = sc.pop() if len(n.child) == 0 { return } n.start = n.child[0].start n.lastChild().tnext = n.anc.anc // exit node is selectStmt case commClause: wireChild(n) sc = sc.pop() if len(n.child) == 0 { return } if len(n.child) > 1 { n.start = n.child[1].start // Skip chan operation, performed by select } n.lastChild().tnext = n.anc.anc // exit node is selectStmt case compositeLitExpr: wireChild(n) child := n.child if n.nleft > 0 { child = child[1:] } switch n.typ.cat { case arrayT, sliceT: err = check.arrayLitExpr(child, n.typ) case mapT: err = check.mapLitExpr(child, n.typ.key, n.typ.val) case structT: err = check.structLitExpr(child, n.typ) case valueT: rtype := n.typ.rtype switch rtype.Kind() { case reflect.Struct: err = check.structBinLitExpr(child, rtype) case reflect.Map: ktyp := valueTOf(rtype.Key()) vtyp := valueTOf(rtype.Elem()) err = check.mapLitExpr(child, ktyp, vtyp) } } if err != nil { break } n.findex = sc.add(n.typ) // TODO: Check that composite literal expr matches corresponding type n.gen = compositeGenerator(n, n.typ, nil) case fallthroughtStmt: if n.anc.kind != caseBody { err = n.cfgErrorf("fallthrough statement out of place") } case fileStmt: wireChild(n, varDecl) sc = sc.pop() n.findex = notInFrame case forStmt0: // for {} body := n.child[0] n.start = body.start body.tnext = n.start sc = sc.pop() case forStmt1: // for init; ; {} init, body := n.child[0], n.child[1] n.start = init.start init.tnext = body.start body.tnext = n.start sc = sc.pop() case forStmt2: // for cond {} cond, body := n.child[0], n.child[1] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as for condition") } if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { n.start = body.start body.tnext = body.start } } else { n.start = cond.start cond.tnext = body.start body.tnext = cond.start } setFNext(cond, n) sc = sc.pop() case forStmt3: // for init; cond; {} init, cond, body := n.child[0], n.child[1], n.child[2] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as for condition") } n.start = init.start if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { init.tnext = body.start body.tnext = body.start } else { init.tnext = n } } else { init.tnext = cond.start body.tnext = cond.start } cond.tnext = body.start setFNext(cond, n) sc = sc.pop() case forStmt4: // for ; ; post {} post, body := n.child[0], n.child[1] n.start = body.start post.tnext = body.start body.tnext = post.start sc = sc.pop() case forStmt5: // for ; cond; post {} cond, post, body := n.child[0], n.child[1], n.child[2] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as for condition") } if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { n.start = body.start post.tnext = body.start } } else { n.start = cond.start post.tnext = cond.start } cond.tnext = body.start setFNext(cond, n) body.tnext = post.start sc = sc.pop() case forStmt6: // for init; ; post {} init, post, body := n.child[0], n.child[1], n.child[2] n.start = init.start init.tnext = body.start body.tnext = post.start post.tnext = body.start sc = sc.pop() case forStmt7: // for init; cond; post {} init, cond, post, body := n.child[0], n.child[1], n.child[2], n.child[3] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as for condition") } n.start = init.start if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { init.tnext = body.start post.tnext = body.start } else { init.tnext = n } } else { init.tnext = cond.start post.tnext = cond.start } cond.tnext = body.start setFNext(cond, n) body.tnext = post.start sc = sc.pop() case forRangeStmt: n.start = n.child[0].start setFNext(n.child[0], n) sc = sc.pop() case funcDecl: n.start = n.child[3].start n.types, n.scope = sc.types, sc sc = sc.pop() funcName := n.child[1].ident if sym := sc.sym[funcName]; !isMethod(n) && sym != nil && !isGeneric(sym.typ) { sym.index = -1 // to force value to n.val sym.typ = n.typ sym.kind = funcSym sym.node = n } case funcLit: n.types, n.scope = sc.types, sc sc = sc.pop() err = genRun(n) case deferStmt, goStmt: wireChild(n) case identExpr: if isKey(n) || isNewDefine(n, sc) { break } if n.anc.kind == funcDecl && n.anc.child[1] == n { // Dont process a function name identExpr. break } sym, level, found := sc.lookup(n.ident) if !found { if n.typ != nil { // Node is a generic instance with an already populated type. break } // retry with the filename, in case ident is a package name. sym, level, found = sc.lookup(filepath.Join(n.ident, baseName)) if !found { err = n.cfgErrorf("undefined: %s", n.ident) break } } // Found symbol, populate node info n.sym, n.typ, n.findex, n.level = sym, sym.typ, sym.index, level if n.findex < 0 { n.val = sym.node } else { switch { case sym.kind == constSym && sym.rval.IsValid(): n.rval = sym.rval n.kind = basicLit case n.ident == "iota": n.rval = reflect.ValueOf(constant.MakeInt64(int64(sc.iota))) n.kind = basicLit case n.ident == nilIdent: n.kind = basicLit case sym.kind == binSym: n.typ = sym.typ n.rval = sym.rval case sym.kind == bltnSym: if n.anc.kind != callExpr { err = n.cfgErrorf("use of builtin %s not in function call", n.ident) } } } if n.sym != nil { n.recv = n.sym.recv } case ifStmt0: // if cond {} cond, tbody := n.child[0], n.child[1] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as if condition") } if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { n.start = tbody.start } } else { n.start = cond.start cond.tnext = tbody.start } setFNext(cond, n) tbody.tnext = n sc = sc.pop() case ifStmt1: // if cond {} else {} cond, tbody, fbody := n.child[0], n.child[1], n.child[2] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as if condition") } if cond.rval.IsValid() { // Condition is known at compile time, bypass test and the useless branch. if cond.rval.Bool() { n.start = tbody.start } else { n.start = fbody.start } } else { n.start = cond.start cond.tnext = tbody.start setFNext(cond, fbody.start) } tbody.tnext = n fbody.tnext = n sc = sc.pop() case ifStmt2: // if init; cond {} init, cond, tbody := n.child[0], n.child[1], n.child[2] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as if condition") } n.start = init.start if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { init.tnext = tbody.start } else { init.tnext = n } } else { init.tnext = cond.start cond.tnext = tbody.start } tbody.tnext = n setFNext(cond, n) sc = sc.pop() case ifStmt3: // if init; cond {} else {} init, cond, tbody, fbody := n.child[0], n.child[1], n.child[2], n.child[3] if !isBool(cond.typ) { err = cond.cfgErrorf("non-bool used as if condition") } n.start = init.start if cond.rval.IsValid() { // Condition is known at compile time, bypass test. if cond.rval.Bool() { init.tnext = tbody.start } else { init.tnext = fbody.start } } else { init.tnext = cond.start cond.tnext = tbody.start setFNext(cond, fbody.start) } tbody.tnext = n fbody.tnext = n sc = sc.pop() case keyValueExpr: if isBlank(n.child[1]) { err = n.cfgErrorf("cannot use _ as value") break } wireChild(n) case landExpr: if isBlank(n.child[0]) || isBlank(n.child[1]) { err = n.cfgErrorf("cannot use _ as value") break } n.start = n.child[0].start n.child[0].tnext = n.child[1].start setFNext(n.child[0], n) n.child[1].tnext = n n.typ = n.child[0].typ n.findex = sc.add(n.typ) if n.start.action == aNop { n.start.gen = branch } case lorExpr: if isBlank(n.child[0]) || isBlank(n.child[1]) { err = n.cfgErrorf("cannot use _ as value") break } n.start = n.child[0].start n.child[0].tnext = n setFNext(n.child[0], n.child[1].start) n.child[1].tnext = n n.typ = n.child[0].typ n.findex = sc.add(n.typ) if n.start.action == aNop { n.start.gen = branch } case parenExpr: wireChild(n) c := n.lastChild() n.findex = c.findex n.level = c.level n.typ = c.typ n.rval = c.rval case rangeStmt: if sc.rangeChanType(n) != nil { n.start = n.child[1].start // Get chan n.child[1].tnext = n // then go to range function n.tnext = n.child[2].start // then go to range body n.child[2].tnext = n // then body go to range function (loop) n.child[0].gen = empty } else { var k, o, body *node if len(n.child) == 4 { k, o, body = n.child[0], n.child[2], n.child[3] } else { k, o, body = n.child[0], n.child[1], n.child[2] } n.start = o.start // Get array or map object o.tnext = k.start // then go to iterator init k.tnext = n // then go to range function n.tnext = body.start // then go to range body body.tnext = n // then body go to range function (loop) k.gen = empty // init filled later by generator } case returnStmt: if len(n.child) > sc.def.typ.numOut() { err = n.cfgErrorf("too many arguments to return") break } for _, c := range n.child { if isBlank(c) { err = n.cfgErrorf("cannot use _ as value") return } } returnSig := sc.def.child[2] if mustReturnValue(returnSig) { nret := len(n.child) if nret == 1 && isCall(n.child[0]) { nret = n.child[0].child[0].typ.numOut() } if nret < sc.def.typ.numOut() { err = n.cfgErrorf("not enough arguments to return") break } } wireChild(n) n.tnext = nil n.val = sc.def for i, c := range n.child { var typ *itype typ, err = nodeType(interp, sc.upperLevel(), returnSig.child[2].fieldType(i)) if err != nil { return } // TODO(mpl): move any of that code to typecheck? c.typ.node = c if !c.typ.assignableTo(typ) { err = c.cfgErrorf("cannot use %v (type %v) as type %v in return argument", c.ident, c.typ.cat, typ.cat) return } if c.typ.cat == nilT { // nil: Set node value to zero of return type c.rval = reflect.New(typ.TypeOf()).Elem() } } case selectorExpr: wireChild(n) n.typ = n.child[0].typ n.recv = n.child[0].recv if n.typ == nil { err = n.cfgErrorf("undefined type") break } switch { case n.typ.cat == binPkgT: // Resolve binary package symbol: a type or a value name := n.child[1].ident pkg := n.child[0].sym.typ.path if s, ok := interp.binPkg[pkg][name]; ok { if isBinType(s) { n.typ = valueTOf(s.Type().Elem()) } else { n.typ = valueTOf(fixPossibleConstType(s.Type()), withUntyped(isValueUntyped(s))) n.rval = s if pkg == "unsafe" && (name == "AlignOf" || name == "Offsetof" || name == "Sizeof") { n.sym = &symbol{kind: bltnSym, node: n, rval: s} n.ident = pkg + "." + name } } n.action = aGetSym n.gen = nop } else { err = n.cfgErrorf("package %s \"%s\" has no symbol %s", n.child[0].ident, pkg, name) } case n.typ.cat == srcPkgT: pkg, name := n.child[0].sym.typ.path, n.child[1].ident // Resolve source package symbol if sym, ok := interp.srcPkg[pkg][name]; ok { n.findex = sym.index if sym.global { n.level = globalFrame } n.val = sym.node n.gen = nop n.action = aGetSym n.typ = sym.typ n.sym = sym n.recv = sym.recv n.rval = sym.rval } else { err = n.cfgErrorf("undefined selector: %s.%s", pkg, name) } case isStruct(n.typ) || isInterfaceSrc(n.typ): // Find a matching field. if ti := n.typ.lookupField(n.child[1].ident); len(ti) > 0 { if isStruct(n.typ) { // If a method of the same name exists, use it if it is shallower than the struct field. // if method's depth is the same as field's, this is an error. d := n.typ.methodDepth(n.child[1].ident) if d >= 0 && d < len(ti) { goto tryMethods } if d == len(ti) { err = n.cfgErrorf("ambiguous selector: %s", n.child[1].ident) break } } n.val = ti switch { case isInterfaceSrc(n.typ): n.typ = n.typ.fieldSeq(ti) n.gen = getMethodByName n.action = aMethod case n.typ.cat == ptrT: n.typ = n.typ.fieldSeq(ti) n.gen = getPtrIndexSeq if n.typ.cat == funcT { // Function in a struct field is always wrapped in reflect.Value. n.typ = wrapperValueTOf(n.typ.TypeOf(), n.typ) } default: n.gen = getIndexSeq n.typ = n.typ.fieldSeq(ti) if n.typ.cat == funcT { // Function in a struct field is always wrapped in reflect.Value. n.typ = wrapperValueTOf(n.typ.TypeOf(), n.typ) } } break } if s, lind, ok := n.typ.lookupBinField(n.child[1].ident); ok { // Handle an embedded binary field into a struct field. n.gen = getIndexSeqField lind = append(lind, s.Index...) if isStruct(n.typ) { // If a method of the same name exists, use it if it is shallower than the struct field. // if method's depth is the same as field's, this is an error. d := n.typ.methodDepth(n.child[1].ident) if d >= 0 && d < len(lind) { goto tryMethods } if d == len(lind) { err = n.cfgErrorf("ambiguous selector: %s", n.child[1].ident) break } } n.val = lind n.typ = valueTOf(s.Type) break } // No field (embedded or not) matched. Try to match a method. tryMethods: fallthrough default: err = matchSelectorMethod(sc, n) } if err == nil && n.findex != -1 && n.typ.cat != genericT { n.findex = sc.add(n.typ) } case selectStmt: wireChild(n) // Move action to block statement, so select node can be an exit point. n.child[0].gen = _select // Chain channel init actions in commClauses prior to invoking select. var cur *node for _, c := range n.child[0].child { if c.kind == commClauseDefault { // No channel init in this case. continue } var an, pn *node // channel init action nodes if len(c.child) > 0 { switch c0 := c.child[0]; { case c0.kind == exprStmt && len(c0.child) == 1 && c0.child[0].action == aRecv: an = c0.child[0].child[0] pn = an case c0.action == aAssign: an = c0.lastChild().child[0] pn = an case c0.kind == sendStmt: an = c0.child[0] pn = c0.child[1] } } if an == nil { continue } if cur == nil { // First channel init action, the entry point for the select block. n.start = an.start } else { // Chain channel init action to the previous one. cur.tnext = an.start } if pn != nil { // Chain channect init action to send data init action. // (already done by wireChild, but let's be explicit). an.tnext = pn cur = pn } } if cur == nil { // There is no channel init action, call select directly. n.start = n.child[0] } else { // Select is called after the last channel init action. cur.tnext = n.child[0] } case starExpr: if isBlank(n.child[0]) { err = n.cfgErrorf("cannot use _ as value") break } switch { case n.anc.kind == defineStmt && len(n.anc.child) == 3 && n.anc.child[1] == n: // pointer type expression in a var definition n.gen = nop case n.anc.kind == valueSpec && n.anc.lastChild() == n: // pointer type expression in a value spec n.gen = nop case n.anc.kind == fieldExpr: // pointer type expression in a field expression (arg or struct field) n.gen = nop case n.child[0].isType(sc): // pointer type expression n.gen = nop n.typ = ptrOf(n.child[0].typ) default: // dereference expression wireChild(n) err = check.starExpr(n.child[0]) if err != nil { break } if c0 := n.child[0]; c0.typ.cat == valueT { n.typ = valueTOf(c0.typ.rtype.Elem()) } else { n.typ = c0.typ.val } n.findex = sc.add(n.typ) } case typeSwitch: // Check that cases expressions are all different usedCase := map[string]bool{} for _, c := range n.lastChild().child { for _, t := range c.child[:len(c.child)-1] { tid := t.typ.id() if usedCase[tid] { err = c.cfgErrorf("duplicate case %s in type switch", t.ident) return } usedCase[tid] = true } } fallthrough case switchStmt: sc = sc.pop() sbn := n.lastChild() // switch block node clauses := sbn.child l := len(clauses) if l == 0 { // Switch is empty break } // Chain case clauses. for i := l - 1; i >= 0; i-- { c := clauses[i] if len(c.child) == 0 { c.tnext = n // Clause body is empty, exit. } else { body := c.lastChild() c.tnext = body.start c.child[0].tnext = c c.start = c.child[0].start if i < l-1 && len(body.child) > 0 && body.lastChild().kind == fallthroughtStmt { if n.kind == typeSwitch { err = body.lastChild().cfgErrorf("cannot fallthrough in type switch") } if len(clauses[i+1].child) == 0 { body.tnext = n // Fallthrough to next with empty body, just exit. } else { body.tnext = clauses[i+1].lastChild().start } } else { body.tnext = n // Exit switch at end of clause body. } } if i == l-1 { setFNext(clauses[i], n) continue } if len(clauses[i+1].child) > 1 { setFNext(c, clauses[i+1].start) } else { setFNext(c, clauses[i+1]) } } sbn.start = clauses[0].start n.start = n.child[0].start if n.kind == typeSwitch { // Handle the typeSwitch init (the type assert expression). init := n.child[1].lastChild().child[0] init.tnext = sbn.start n.child[0].tnext = init.start } else { n.child[0].tnext = sbn.start } case switchIfStmt: // like an if-else chain sc = sc.pop() sbn := n.lastChild() // switch block node clauses := sbn.child l := len(clauses) if l == 0 { // Switch is empty break } // Wire case clauses in reverse order so the next start node is already resolved when used. for i := l - 1; i >= 0; i-- { c := clauses[i] c.gen = nop if len(c.child) == 0 { c.tnext = n c.fnext = n } else { body := c.lastChild() if len(c.child) > 1 { cond := c.child[0] cond.tnext = body.start if i == l-1 { setFNext(cond, n) } else { setFNext(cond, clauses[i+1].start) } c.start = cond.start } else { c.start = body.start } // If last case body statement is a fallthrough, then jump to next case body if i < l-1 && len(body.child) > 0 && body.lastChild().kind == fallthroughtStmt { body.tnext = clauses[i+1].lastChild().start } else { body.tnext = n } } } sbn.start = clauses[0].start n.start = n.child[0].start n.child[0].tnext = sbn.start case typeAssertExpr: if len(n.child) == 1 { // The "o.(type)" is handled by typeSwitch. n.gen = nop break } wireChild(n) c0, c1 := n.child[0], n.child[1] if isBlank(c0) || isBlank(c1) { err = n.cfgErrorf("cannot use _ as value") break } if c1.typ == nil { if c1.typ, err = nodeType(interp, sc, c1); err != nil { return } } err = check.typeAssertionExpr(c0, c1.typ) if err != nil { break } if n.anc.action != aAssignX { if c0.typ.cat == valueT && isFunc(c1.typ) { // Avoid special wrapping of interfaces and func types. n.typ = valueTOf(c1.typ.TypeOf()) } else { n.typ = c1.typ } n.findex = sc.add(n.typ) } case sliceExpr: wireChild(n) err = check.sliceExpr(n) if err != nil { break } if n.typ, err = nodeType(interp, sc, n); err != nil { return } n.findex = sc.add(n.typ) case unaryExpr: wireChild(n) err = check.unaryExpr(n) if err != nil { break } n.typ = n.child[0].typ if n.action == aRecv { // Channel receive operation: set type to the channel data type if n.typ.cat == valueT { n.typ = valueTOf(n.typ.rtype.Elem()) } else { n.typ = n.typ.val } } if n.typ == nil { if n.typ, err = nodeType(interp, sc, n); err != nil { return } } // TODO: Optimisation: avoid allocation if boolean branch op (i.e. '!' in an 'if' expr) if n.child[0].rval.IsValid() && !isInterface(n.typ) && constOp[n.action] != nil { n.typ.TypeOf() // init reflect type constOp[n.action](n) } switch { case n.rval.IsValid(): n.gen = nop n.findex = notInFrame case n.anc.kind == assignStmt && n.anc.action == aAssign && n.anc.nright == 1: dest := n.anc.child[childPos(n)-n.anc.nright] n.typ = dest.typ n.findex = dest.findex n.level = dest.level case n.anc.kind == returnStmt: pos := childPos(n) n.typ = sc.def.typ.ret[pos] n.findex = pos default: n.findex = sc.add(n.typ) } case valueSpec: n.gen = reset l := len(n.child) - 1 if n.typ = n.child[l].typ; n.typ == nil { if n.typ, err = nodeType(interp, sc, n.child[l]); err != nil { return } } for _, c := range n.child[:l] { var index int if sc.global { // Global object allocation is already performed in GTA. index = sc.sym[c.ident].index c.level = globalFrame } else { index = sc.add(n.typ) sc.sym[c.ident] = &symbol{index: index, kind: varSym, typ: n.typ} } c.typ = n.typ c.findex = index } } }) if sc != interp.universe { sc.pop() } return initNodes, err } func compDefineX(sc *scope, n *node) error { l := len(n.child) - 1 types := []*itype{} switch src := n.child[l]; src.kind { case callExpr: funtype, err := nodeType(n.interp, sc, src.child[0]) if err != nil { return err } for funtype.cat == valueT && funtype.val != nil { // Retrieve original interpreter type from a wrapped function. // Struct fields of function types are always wrapped in valueT to ensure // their possible use in runtime. In that case, the val field retains the // original interpreter type, which is used now. funtype = funtype.val } if funtype.cat == valueT { // Handle functions imported from runtime. for i := 0; i < funtype.rtype.NumOut(); i++ { types = append(types, valueTOf(funtype.rtype.Out(i))) } } else { types = funtype.ret } if n.anc.kind == varDecl && n.child[l-1].isType(sc) { l-- } if len(types) != l { return n.cfgErrorf("assignment mismatch: %d variables but %s returns %d values", l, src.child[0].name(), len(types)) } if isBinCall(src, sc) { n.gen = nop } else { // TODO (marc): skip if no conversion or wrapping is needed. n.gen = assignFromCall } case indexExpr: types = append(types, src.typ, sc.getType("bool")) n.child[l].gen = getIndexMap2 n.gen = nop case typeAssertExpr: if n.child[0].ident == "_" { n.child[l].gen = typeAssertStatus } else { n.child[l].gen = typeAssertLong } types = append(types, n.child[l].child[1].typ, sc.getType("bool")) n.gen = nop case unaryExpr: if n.child[l].action == aRecv { types = append(types, src.typ, sc.getType("bool")) n.child[l].gen = recv2 n.gen = nop } default: return n.cfgErrorf("unsupported assign expression") } // Handle redeclarations: find out new symbols vs existing ones. symIsNew := map[string]bool{} hasNewSymbol := false for i := range types { id := n.child[i].ident if id == "_" || id == "" { continue } if _, found := symIsNew[id]; found { return n.cfgErrorf("%s repeated on left side of :=", id) } // A new symbol doesn't exist in current scope. Upper scopes are not // taken into accout here, as a new symbol can shadow an existing one. if _, found := sc.sym[id]; found { symIsNew[id] = false } else { symIsNew[id] = true hasNewSymbol = true } } for i, t := range types { var index int id := n.child[i].ident // A variable can be redeclared if at least one other not blank variable is created. // The redeclared variable must be of same type (it is reassigned, not created). // Careful to not reuse a variable which has been shadowed (it must not be a newSym). sym, level, ok := sc.lookup(id) canRedeclare := hasNewSymbol && len(symIsNew) > 1 && !symIsNew[id] && ok if canRedeclare && level == n.child[i].level && sym.kind == varSym && sym.typ.id() == t.id() { index = sym.index n.child[i].redeclared = true } else { index = sc.add(t) sc.sym[id] = &symbol{index: index, kind: varSym, typ: t} } n.child[i].typ = t n.child[i].findex = index } return nil } // TODO used for allocation optimization, temporarily disabled // func isAncBranch(n *node) bool { // switch n.anc.kind { // case If0, If1, If2, If3: // return true // } // return false // } func childPos(n *node) int { for i, c := range n.anc.child { if n == c { return i } } return -1 } func (n *node) cfgErrorf(format string, a ...interface{}) *cfgError { pos := n.interp.fset.Position(n.pos) posString := n.interp.fset.Position(n.pos).String() if pos.Filename == DefaultSourceName { posString = strings.TrimPrefix(posString, DefaultSourceName+":") } a = append([]interface{}{posString}, a...) return &cfgError{n, fmt.Errorf("%s: "+format, a...)} } func genRun(nod *node) error { var err error seen := map[*node]bool{} nod.Walk(func(n *node) bool { if err != nil || seen[n] { return false } seen[n] = true switch n.kind { case funcType: if len(n.anc.child) == 4 { // function body entry point setExec(n.anc.child[3].start) } // continue in function body as there may be inner function definitions case constDecl, varDecl: setExec(n.start) return false } return true }, nil) return err } func genGlobalVars(roots []*node, sc *scope) (*node, error) { var vars []*node for _, n := range roots { vars = append(vars, getVars(n)...) } if len(vars) == 0 { return nil, nil } varNode, err := genGlobalVarDecl(vars, sc) if err != nil { return nil, err } setExec(varNode.start) return varNode, nil } func getVars(n *node) (vars []*node) { for _, child := range n.child { if child.kind == varDecl { vars = append(vars, child.child...) } } return vars } func genGlobalVarDecl(nodes []*node, sc *scope) (*node, error) { varNode := &node{kind: varDecl, action: aNop, gen: nop} deps := map[*node][]*node{} for _, n := range nodes { deps[n] = getVarDependencies(n, sc) } inited := map[*node]bool{} revisit := []*node{} for { for _, n := range nodes { canInit := true for _, d := range deps[n] { if !inited[d] { canInit = false } } if !canInit { revisit = append(revisit, n) continue } varNode.child = append(varNode.child, n) inited[n] = true } if len(revisit) == 0 || equalNodes(nodes, revisit) { break } nodes = revisit revisit = []*node{} } if len(revisit) > 0 { return nil, revisit[0].cfgErrorf("variable definition loop") } wireChild(varNode) return varNode, nil } func getVarDependencies(nod *node, sc *scope) (deps []*node) { nod.Walk(func(n *node) bool { if n.kind != identExpr { return true } // Process ident nodes, and avoid false dependencies. if n.anc.kind == selectorExpr && childPos(n) == 1 { return false } sym, _, ok := sc.lookup(n.ident) if !ok { return false } if sym.kind != varSym || !sym.global || sym.node == nod { return false } deps = append(deps, sym.node) return false }, nil) return deps } // setFnext sets the cond fnext field to next, propagates it for parenthesis blocks // and sets the action to branch. func setFNext(cond, next *node) { if cond.action == aNop { cond.action = aBranch cond.gen = branch cond.fnext = next } if cond.kind == parenExpr { setFNext(cond.lastChild(), next) return } cond.fnext = next } // GetDefault return the index of default case clause in a switch statement, or -1. func getDefault(n *node) int { for i, c := range n.lastChild().child { switch len(c.child) { case 0: return i case 1: if c.child[0].kind == caseBody { return i } } } return -1 } func isBinType(v reflect.Value) bool { return v.IsValid() && v.Kind() == reflect.Ptr && v.IsNil() } // isType returns true if node refers to a type definition, false otherwise. func (n *node) isType(sc *scope) bool { switch n.kind { case arrayType, chanType, chanTypeRecv, chanTypeSend, funcType, interfaceType, mapType, structType: return true case parenExpr, starExpr: if len(n.child) == 1 { return n.child[0].isType(sc) } case selectorExpr: pkg, name := n.child[0].ident, n.child[1].ident baseName := filepath.Base(n.interp.fset.Position(n.pos).Filename) suffixedPkg := filepath.Join(pkg, baseName) sym, _, ok := sc.lookup(suffixedPkg) if !ok { sym, _, ok = sc.lookup(pkg) if !ok { return false } } if sym.kind != pkgSym { return false } path := sym.typ.path if p, ok := n.interp.binPkg[path]; ok && isBinType(p[name]) { return true // Imported binary type } if p, ok := n.interp.srcPkg[path]; ok && p[name] != nil && p[name].kind == typeSym { return true // Imported source type } case identExpr: return sc.getType(n.ident) != nil case indexExpr: // Maybe a generic type. sym, _, ok := sc.lookup(n.child[0].ident) return ok && sym.kind == typeSym } return false } // wireChild wires AST nodes for CFG in subtree. func wireChild(n *node, exclude ...nkind) { child := excludeNodeKind(n.child, exclude) // Set start node, in subtree (propagated to ancestors by post-order processing) for _, c := range child { switch c.kind { case arrayType, chanType, chanTypeRecv, chanTypeSend, funcDecl, importDecl, mapType, basicLit, identExpr, typeDecl: continue default: n.start = c.start } break } // Chain sequential operations inside a block (next is right sibling) for i := 1; i < len(child); i++ { switch child[i].kind { case funcDecl: child[i-1].tnext = child[i] default: switch child[i-1].kind { case breakStmt, continueStmt, gotoStmt, returnStmt: // tnext is already computed, no change default: child[i-1].tnext = child[i].start } } } // Chain subtree next to self for i := len(child) - 1; i >= 0; i-- { switch child[i].kind { case arrayType, chanType, chanTypeRecv, chanTypeSend, importDecl, mapType, funcDecl, basicLit, identExpr, typeDecl: continue case breakStmt, continueStmt, gotoStmt, returnStmt: // tnext is already computed, no change default: child[i].tnext = n } break } } func excludeNodeKind(child []*node, kinds []nkind) []*node { if len(kinds) == 0 { return child } var res []*node for _, c := range child { exclude := false for _, k := range kinds { if c.kind == k { exclude = true } } if !exclude { res = append(res, c) } } return res } func (n *node) name() (s string) { switch { case n.ident != "": s = n.ident case n.action == aGetSym: s = n.child[0].ident + "." + n.child[1].ident } return s } // isNatural returns true if node type is natural, false otherwise. func (n *node) isNatural() bool { if isUint(n.typ.TypeOf()) { return true } if n.rval.IsValid() { t := n.rval.Type() if isUint(t) { return true } if isInt(t) && n.rval.Int() >= 0 { // positive untyped integer constant is ok return true } if isFloat(t) { // positive untyped float constant with null decimal part is ok f := n.rval.Float() if f == math.Trunc(f) && f >= 0 { n.rval = reflect.ValueOf(uint(f)) n.typ.rtype = n.rval.Type() return true } } if isConstantValue(t) { c := n.rval.Interface().(constant.Value) switch c.Kind() { case constant.Int: i, _ := constant.Int64Val(c) if i >= 0 { return true } case constant.Float: f, _ := constant.Float64Val(c) if f == math.Trunc(f) { n.rval = reflect.ValueOf(constant.ToInt(c)) n.typ.rtype = n.rval.Type() return true } } } } return false } // isNil returns true if node is a literal nil value, false otherwise. func (n *node) isNil() bool { return n.kind == basicLit && !n.rval.IsValid() } // fieldType returns the nth parameter field node (type) of a fieldList node. func (n *node) fieldType(m int) *node { k := 0 l := len(n.child) for i := 0; i < l; i++ { cl := len(n.child[i].child) if cl < 2 { if k == m { return n.child[i].lastChild() } k++ continue } for j := 0; j < cl-1; j++ { if k == m { return n.child[i].lastChild() } k++ } } return nil } // lastChild returns the last child of a node. func (n *node) lastChild() *node { return n.child[len(n.child)-1] } func (n *node) hasAnc(nod *node) bool { for a := n.anc; a != nil; a = a.anc { if a == nod { return true } } return false } func isKey(n *node) bool { return n.anc.kind == fileStmt || (n.anc.kind == selectorExpr && n.anc.child[0] != n) || (n.anc.kind == funcDecl && isMethod(n.anc)) || (n.anc.kind == keyValueExpr && isStruct(n.anc.typ) && n.anc.child[0] == n) || (n.anc.kind == fieldExpr && len(n.anc.child) > 1 && n.anc.child[0] == n) } func isField(n *node) bool { return n.kind == selectorExpr && len(n.child) > 0 && n.child[0].typ != nil && isStruct(n.child[0].typ) } func isInInterfaceType(n *node) bool { anc := n.anc for anc != nil { if anc.kind == interfaceType { return true } anc = anc.anc } return false } func isInConstOrTypeDecl(n *node) bool { anc := n.anc for anc != nil { switch anc.kind { case constDecl, typeDecl, arrayType, chanType: return true case varDecl, funcDecl: return false } anc = anc.anc } return false } // isNewDefine returns true if node refers to a new definition. func isNewDefine(n *node, sc *scope) bool { if n.ident == "_" { return true } if (n.anc.kind == defineXStmt || n.anc.kind == defineStmt || n.anc.kind == valueSpec) && childPos(n) < n.anc.nleft { return true } if n.anc.kind == rangeStmt { if n.anc.child[0] == n { return true // array or map key, or chan element } if sc.rangeChanType(n.anc) == nil && n.anc.child[1] == n && len(n.anc.child) == 4 { return true // array or map value } return false // array, map or channel are always pre-defined in range expression } return false } func isMethod(n *node) bool { return len(n.child[0].child) > 0 // receiver defined } func isFuncField(n *node) bool { return isField(n) && isFunc(n.typ) } func isMapEntry(n *node) bool { return n.action == aGetIndex && isMap(n.child[0].typ) } func isCall(n *node) bool { return n.action == aCall || n.action == aCallSlice } func isBinCall(n *node, sc *scope) bool { if !isCall(n) || len(n.child) == 0 { return false } c0 := n.child[0] if c0.typ == nil { // If called early in parsing, child type may not be known yet. c0.typ, _ = nodeType(n.interp, sc, c0) if c0.typ == nil { return false } } return c0.typ.cat == valueT && c0.typ.rtype.Kind() == reflect.Func } func mustReturnValue(n *node) bool { if len(n.child) < 3 { return false } for _, f := range n.child[2].child { if len(f.child) > 1 { return false } } return true } func isRegularCall(n *node) bool { return isCall(n) && n.child[0].typ.cat == funcT } func variadicPos(n *node) int { if len(n.child[0].typ.arg) == 0 { return -1 } last := len(n.child[0].typ.arg) - 1 if n.child[0].typ.arg[last].cat == variadicT { return last } return -1 } func canExport(name string) bool { if r := []rune(name); len(r) > 0 && unicode.IsUpper(r[0]) { return true } return false } func getExec(n *node) bltn { if n == nil { return nil } if n.exec == nil { setExec(n) } return n.exec } // setExec recursively sets the node exec builtin function by walking the CFG // from the entry point (first node to exec). func setExec(n *node) { if n.exec != nil { return } seen := map[*node]bool{} var set func(n *node) set = func(n *node) { if n == nil || n.exec != nil { return } seen[n] = true if n.tnext != nil && n.tnext.exec == nil { if seen[n.tnext] { m := n.tnext n.tnext.exec = func(f *frame) bltn { return m.exec(f) } } else { set(n.tnext) } } if n.fnext != nil && n.fnext.exec == nil { if seen[n.fnext] { m := n.fnext n.fnext.exec = func(f *frame) bltn { return m.exec(f) } } else { set(n.fnext) } } n.gen(n) } set(n) } func typeSwichAssign(n *node) bool { ts := n.anc.anc.anc return ts.kind == typeSwitch && ts.child[1].action == aAssign } func compositeGenerator(n *node, typ *itype, rtyp reflect.Type) (gen bltnGenerator) { switch typ.cat { case linkedT, ptrT: gen = compositeGenerator(n, typ.val, rtyp) case arrayT, sliceT: gen = arrayLit case mapT: gen = mapLit case structT: switch { case len(n.child) == 0: gen = compositeLitNotype case n.lastChild().kind == keyValueExpr: if n.nleft == 1 { gen = compositeLitKeyed } else { gen = compositeLitKeyedNotype } default: if n.nleft == 1 { gen = compositeLit } else { gen = compositeLitNotype } } case valueT: if rtyp == nil { rtyp = n.typ.TypeOf() } switch k := rtyp.Kind(); k { case reflect.Struct: if n.nleft == 1 { gen = compositeBinStruct } else { gen = compositeBinStructNotype } case reflect.Map: // TODO(mpl): maybe needs a NoType version too gen = compositeBinMap case reflect.Ptr: gen = compositeGenerator(n, typ, n.typ.val.rtype) case reflect.Slice, reflect.Array: gen = compositeBinSlice default: log.Panic(n.cfgErrorf("compositeGenerator not implemented for type kind: %s", k)) } } return gen } // matchSelectorMethod, given that n represents a selector for a method, tries // to find the corresponding method, and populates n accordingly. func matchSelectorMethod(sc *scope, n *node) (err error) { name := n.child[1].ident if n.typ.cat == valueT || n.typ.cat == errorT { switch method, ok := n.typ.rtype.MethodByName(name); { case ok: hasRecvType := n.typ.TypeOf().Kind() != reflect.Interface n.val = method.Index n.gen = getIndexBinMethod n.action = aGetMethod n.recv = &receiver{node: n.child[0]} n.typ = valueTOf(method.Type, isBinMethod()) if hasRecvType { n.typ.recv = n.typ } case n.typ.TypeOf().Kind() == reflect.Ptr: if field, ok := n.typ.rtype.Elem().FieldByName(name); ok { n.typ = valueTOf(field.Type) n.val = field.Index n.gen = getPtrIndexSeq break } err = n.cfgErrorf("undefined method: %s", name) case n.typ.TypeOf().Kind() == reflect.Struct: if field, ok := n.typ.rtype.FieldByName(name); ok { n.typ = valueTOf(field.Type) n.val = field.Index n.gen = getIndexSeq break } fallthrough default: // method lookup failed on type, now lookup on pointer to type pt := reflect.PtrTo(n.typ.rtype) if m2, ok2 := pt.MethodByName(name); ok2 { n.val = m2.Index n.gen = getIndexBinPtrMethod n.typ = valueTOf(m2.Type, isBinMethod(), withRecv(valueTOf(pt))) n.recv = &receiver{node: n.child[0]} n.action = aGetMethod break } err = n.cfgErrorf("undefined method: %s", name) } return err } if n.typ.cat == ptrT && (n.typ.val.cat == valueT || n.typ.val.cat == errorT) { // Handle pointer on object defined in runtime if method, ok := n.typ.val.rtype.MethodByName(name); ok { n.val = method.Index n.typ = valueTOf(method.Type, isBinMethod(), withRecv(n.typ)) n.recv = &receiver{node: n.child[0]} n.gen = getIndexBinElemMethod n.action = aGetMethod } else if method, ok := reflect.PtrTo(n.typ.val.rtype).MethodByName(name); ok { n.val = method.Index n.gen = getIndexBinMethod n.typ = valueTOf(method.Type, withRecv(valueTOf(reflect.PtrTo(n.typ.val.rtype), isBinMethod()))) n.recv = &receiver{node: n.child[0]} n.action = aGetMethod } else if field, ok := n.typ.val.rtype.FieldByName(name); ok { n.typ = valueTOf(field.Type) n.val = field.Index n.gen = getPtrIndexSeq } else { err = n.cfgErrorf("undefined selector: %s", name) } return err } if m, lind := n.typ.lookupMethod(name); m != nil { n.action = aGetMethod if n.child[0].isType(sc) { // Handle method as a function with receiver in 1st argument. n.val = m n.findex = notInFrame n.gen = nop n.typ = &itype{} *n.typ = *m.typ n.typ.arg = append([]*itype{n.child[0].typ}, m.typ.arg...) } else { // Handle method with receiver. n.gen = getMethod n.val = m n.typ = m.typ n.recv = &receiver{node: n.child[0], index: lind} } return nil } if m, lind, isPtr, ok := n.typ.lookupBinMethod(name); ok { n.action = aGetMethod switch { case isPtr && n.typ.fieldSeq(lind).cat != ptrT: n.gen = getIndexSeqPtrMethod case isInterfaceSrc(n.typ): n.gen = getMethodByName default: n.gen = getIndexSeqMethod } n.recv = &receiver{node: n.child[0], index: lind} n.val = append([]int{m.Index}, lind...) n.typ = valueTOf(m.Type, isBinMethod(), withRecv(n.child[0].typ)) return nil } if typ := n.typ.interfaceMethod(name); typ != nil { n.typ = typ n.action = aGetMethod n.gen = getMethodByName return nil } return n.cfgErrorf("undefined selector: %s", name) } // arrayTypeLen returns the node's array length. If the expression is an // array variable it is determined from the value's type, otherwise it is // computed from the source definition. func arrayTypeLen(n *node, sc *scope) (int, error) { if n.typ != nil && n.typ.cat == arrayT { return n.typ.length, nil } max := -1 for _, c := range n.child[1:] { var r int if c.kind != keyValueExpr { r = max + 1 max = r continue } c0 := c.child[0] v := c0.rval if v.IsValid() { r = int(v.Int()) } else { // Resolve array key value as a constant. if c0.kind == identExpr { // Key is defined by a symbol which must be a constant integer. sym, _, ok := sc.lookup(c0.ident) if !ok { return 0, c0.cfgErrorf("undefined: %s", c0.ident) } if sym.kind != constSym { return 0, c0.cfgErrorf("non-constant array bound %q", c0.ident) } r = int(vInt(sym.rval)) } else { // Key is defined by a numeric constant expression. if _, err := c0.interp.cfg(c0, sc, sc.pkgID, sc.pkgName); err != nil { return 0, err } cv, ok := c0.rval.Interface().(constant.Value) if !ok { return 0, c0.cfgErrorf("non-constant expression") } r = constToInt(cv) } } if r > max { max = r } } return max + 1, nil } // isValueUntyped returns true if value is untyped. func isValueUntyped(v reflect.Value) bool { // Consider only constant values. if v.CanSet() { return false } return v.Type().Implements(constVal) } // isArithmeticAction returns true if the node action is an arithmetic operator. func isArithmeticAction(n *node) bool { switch n.action { case aAdd, aAnd, aAndNot, aBitNot, aMul, aNeg, aOr, aPos, aQuo, aRem, aShl, aShr, aSub, aXor: return true } return false } func isBoolAction(n *node) bool { switch n.action { case aEqual, aGreater, aGreaterEqual, aLand, aLor, aLower, aLowerEqual, aNot, aNotEqual: return true } return false } func isBlank(n *node) bool { if n.kind == parenExpr && len(n.child) > 0 { return isBlank(n.child[0]) } return n.ident == "_" } func alignof(n *node) { n.gen = nop n.typ = n.scope.getType("uintptr") n.rval = reflect.ValueOf(uintptr(n.child[1].typ.TypeOf().Align())) } func offsetof(n *node) { n.gen = nop n.typ = n.scope.getType("uintptr") c1 := n.child[1] if field, ok := c1.child[0].typ.rtype.FieldByName(c1.child[1].ident); ok { n.rval = reflect.ValueOf(field.Offset) } } func sizeof(n *node) { n.gen = nop n.typ = n.scope.getType("uintptr") n.rval = reflect.ValueOf(n.child[1].typ.TypeOf().Size()) } yaegi-0.16.1/interp/compile_test.go000066400000000000000000000031161460330105400172110ustar00rootroot00000000000000package interp import ( "go/ast" "go/parser" "go/token" "testing" "github.com/traefik/yaegi/stdlib" ) func TestCompileAST(t *testing.T) { i := New(Options{}) file, err := parser.ParseFile(i.FileSet(), "_.go", ` package main import "fmt" type Foo struct{} var foo Foo const bar = "asdf" func main() { fmt.Println(1) } `, 0) if err != nil { panic(err) } if len(file.Imports) != 1 || len(file.Decls) != 5 { panic("wrong number of imports or decls") } dType := file.Decls[1].(*ast.GenDecl) dVar := file.Decls[2].(*ast.GenDecl) dConst := file.Decls[3].(*ast.GenDecl) dFunc := file.Decls[4].(*ast.FuncDecl) if dType.Tok != token.TYPE { panic("decl[1] is not a type") } if dVar.Tok != token.VAR { panic("decl[2] is not a var") } if dConst.Tok != token.CONST { panic("decl[3] is not a const") } cases := []struct { desc string node ast.Node skip string }{ {desc: "file", node: file, skip: "temporary ignore"}, {desc: "import", node: file.Imports[0]}, {desc: "type", node: dType}, {desc: "var", node: dVar, skip: "not supported"}, {desc: "const", node: dConst}, {desc: "func", node: dFunc}, {desc: "block", node: dFunc.Body}, {desc: "expr", node: dFunc.Body.List[0]}, } _ = i.Use(stdlib.Symbols) for _, c := range cases { t.Run(c.desc, func(t *testing.T) { if c.skip != "" { t.Skip(c.skip) } i := i if _, ok := c.node.(*ast.File); ok { i = New(Options{}) _ = i.Use(stdlib.Symbols) } _, err := i.CompileAST(c.node) if err != nil { t.Fatalf("Failed to compile %s: %v", c.desc, err) } }) } } yaegi-0.16.1/interp/debugger.go000066400000000000000000000415011460330105400163060ustar00rootroot00000000000000package interp import ( "context" "errors" "fmt" "go/token" "reflect" "sort" "sync" ) var ( // ErrNotLive indicates that the specified ID does not refer to a (live) Go // routine. ErrNotLive = errors.New("not live") // ErrRunning indicates that the specified Go routine is running. ErrRunning = errors.New("running") // ErrNotRunning indicates that the specified Go routine is running. ErrNotRunning = errors.New("not running") ) var rNodeType = reflect.TypeOf((*node)(nil)).Elem() // A Debugger can be used to debug a Yaegi program. type Debugger struct { interp *Interpreter events func(*DebugEvent) context context.Context cancel context.CancelFunc gWait *sync.WaitGroup gLock *sync.Mutex gID int gLive map[int]*debugRoutine result reflect.Value err error } // go routine debug state. type debugRoutine struct { id int mode DebugEventReason running bool resume chan struct{} fDepth int fStep int } // node debug state. type nodeDebugData struct { program *Program breakOnLine bool breakOnCall bool } // frame debug state. type frameDebugData struct { g *debugRoutine node *node name string kind frameKind scope *scope } // frame kind. type frameKind int const ( // interpreter root frame. frameRoot frameKind = iota + 1 // function call frame. frameCall // closure capture frame. frameClosure ) // DebugOptions are the debugger options. type DebugOptions struct { // If true, Go routine IDs start at 1 instead of 0. GoRoutineStartAt1 bool } // A DebugEvent is an event generated by a debugger. type DebugEvent struct { debugger *Debugger reason DebugEventReason frame *frame } // DebugFrame provides access to stack frame information while debugging a // program. type DebugFrame struct { event *DebugEvent frames []*frame } // DebugFrameScope provides access to scoped variables while debugging a // program. type DebugFrameScope struct { frame *frame } // DebugVariable is the name and value of a variable from a debug session. type DebugVariable struct { Name string Value reflect.Value } // DebugGoRoutine provides access to information about a Go routine while // debugging a program. type DebugGoRoutine struct { id int } // Breakpoint is the result of attempting to set a breakpoint. type Breakpoint struct { // Valid indicates whether the breakpoint was successfully set. Valid bool // Position indicates the source position of the breakpoint. Position token.Position } // DebugEventReason is the reason a debug event occurred. type DebugEventReason int const ( // continue execution normally. debugRun DebugEventReason = iota // DebugPause is emitted when a pause request is completed. Can be used with // Interrupt to request a pause. DebugPause // DebugBreak is emitted when a debug target hits a breakpoint. DebugBreak // DebugEntry is emitted when a debug target starts executing. Can be used // with Step to produce a corresponding event when execution starts. DebugEntry // DebugStepInto is emitted when a stepInto request is completed. Can be // used with Step or Interrupt to request a stepInto. DebugStepInto // DebugStepOver is emitted when a stepOver request is completed. Can be // used with Step or Interrupt to request a stepOver. DebugStepOver // DebugStepOut is emitted when a stepOut request is completed. Can be used // with Step or Interrupt to request a stepOut. DebugStepOut // DebugTerminate is emitted when a debug target terminates. Can be used // with Interrupt to attempt to terminate the program. DebugTerminate // DebugEnterGoRoutine is emitted when a Go routine is entered. DebugEnterGoRoutine // DebugExitGoRoutine is emitted when a Go routine is exited. DebugExitGoRoutine ) // Debug initializes a debugger for the given program. // // The program will not start running until Step or Continue has been called. If // Step is called with DebugEntry, an entry event will be generated before the // first statement is executed. Otherwise, the debugger will behave as usual. func (interp *Interpreter) Debug(ctx context.Context, prog *Program, events func(*DebugEvent), opts *DebugOptions) *Debugger { dbg := new(Debugger) dbg.interp = interp dbg.events = events dbg.context, dbg.cancel = context.WithCancel(ctx) dbg.gWait = new(sync.WaitGroup) dbg.gLock = new(sync.Mutex) dbg.gLive = make(map[int]*debugRoutine, 1) if opts == nil { opts = new(DebugOptions) } if opts.GoRoutineStartAt1 { dbg.gID = 1 } mainG := dbg.enterGoRoutine() mainG.mode = DebugEntry interp.debugger = dbg interp.frame.debug = &frameDebugData{kind: frameRoot, g: mainG} prog.root.Walk(func(n *node) bool { n.setProgram(prog) return true }, nil) go func() { defer func() { interp.debugger = nil }() defer events(&DebugEvent{reason: DebugTerminate}) defer dbg.cancel() <-mainG.resume dbg.events(&DebugEvent{dbg, DebugEnterGoRoutine, interp.frame}) dbg.result, dbg.err = interp.ExecuteWithContext(ctx, prog) dbg.exitGoRoutine(mainG) dbg.events(&DebugEvent{dbg, DebugExitGoRoutine, interp.frame}) dbg.gWait.Wait() }() return dbg } // Wait blocks until all Go routines launched by the program have terminated. // Wait returns the results of `(*Interpreter).Execute`. func (dbg *Debugger) Wait() (reflect.Value, error) { <-dbg.context.Done() return dbg.result, dbg.err } // mark entry into a go routine. func (dbg *Debugger) enterGoRoutine() *debugRoutine { g := new(debugRoutine) g.resume = make(chan struct{}) dbg.gWait.Add(1) dbg.gLock.Lock() g.id = dbg.gID dbg.gID++ dbg.gLive[g.id] = g dbg.gLock.Unlock() return g } // mark exit from a go routine. func (dbg *Debugger) exitGoRoutine(g *debugRoutine) { dbg.gLock.Lock() delete(dbg.gLive, g.id) dbg.gLock.Unlock() dbg.gWait.Done() } // get the state for a given go routine, if it's live. func (dbg *Debugger) getGoRoutine(id int) (*debugRoutine, bool) { dbg.gLock.Lock() g, ok := dbg.gLive[id] dbg.gLock.Unlock() return g, ok } // mark entry into a function call. func (dbg *Debugger) enterCall(nFunc, nCall *node, f *frame) { if f.debug != nil { f.debug.g.fDepth++ return } f.debug = new(frameDebugData) f.debug.g = f.anc.debug.g f.debug.scope = nFunc.scope switch nFunc.kind { case funcLit: f.debug.kind = frameCall case funcDecl: f.debug.kind = frameCall f.debug.name = nFunc.child[1].ident } if nCall != nil && nCall.anc.kind == goStmt { f.debug.g = dbg.enterGoRoutine() dbg.events(&DebugEvent{dbg, DebugEnterGoRoutine, f}) } f.debug.g.fDepth++ } // mark exit from a function call. func (dbg *Debugger) exitCall(nFunc, nCall *node, f *frame) { _ = nFunc // ignore unused, so exitCall can have the same signature as enterCall f.debug.g.fDepth-- if nCall != nil && nCall.anc.kind == goStmt { dbg.exitGoRoutine(f.debug.g) dbg.events(&DebugEvent{dbg, DebugExitGoRoutine, f}) } } // called by the interpreter prior to executing the node. func (dbg *Debugger) exec(n *node, f *frame) (stop bool) { f.debug.node = n if n != nil && n.pos == token.NoPos { return false } g := f.debug.g defer func() { g.running = true }() e := &DebugEvent{dbg, g.mode, f} switch { case g.mode == DebugTerminate: dbg.cancel() return true case n.shouldBreak(): e.reason = DebugBreak case g.mode == debugRun: return false case g.mode == DebugStepOut: if g.fDepth >= g.fStep { return false } case g.mode == DebugStepOver: if g.fDepth > g.fStep { return false } } dbg.events(e) g.running = false select { case <-g.resume: return false case <-dbg.context.Done(): return true } } // Continue continues execution of the specified Go routine. Continue returns // ErrNotLive if there is no Go routine with the corresponding ID, or if it is not // live. func (dbg *Debugger) Continue(id int) error { g, ok := dbg.getGoRoutine(id) if !ok { return ErrNotLive } g.mode = debugRun g.resume <- struct{}{} return nil } // update the exec mode of this routine. func (g *debugRoutine) setMode(reason DebugEventReason) { if g.mode == DebugTerminate { return } if g.mode == DebugEntry && reason == DebugEntry { return } switch reason { case DebugStepInto, DebugStepOver, DebugStepOut: g.mode, g.fStep = reason, g.fDepth default: g.mode = DebugPause } } // Step issues a stepInto, stepOver, or stepOut request to a stopped Go routine. // Step returns ErrRunning if the Go routine is running. Step returns ErrNotLive // if there is no Go routine with the corresponding ID, or if it is not live. func (dbg *Debugger) Step(id int, reason DebugEventReason) error { g, ok := dbg.getGoRoutine(id) if !ok { return ErrNotLive } if g.running { return ErrRunning } g.setMode(reason) g.resume <- struct{}{} return nil } // Interrupt issues a stepInto, stepOver, or stepOut request to a running Go // routine. Interrupt returns ErrRunning if the Go routine is running. Interrupt // returns ErrNotLive if there is no Go routine with the corresponding ID, or if // it is not live. func (dbg *Debugger) Interrupt(id int, reason DebugEventReason) bool { g, ok := dbg.getGoRoutine(id) if !ok { return false } g.setMode(reason) return true } // Terminate attempts to terminate the program. func (dbg *Debugger) Terminate() { dbg.gLock.Lock() g := dbg.gLive dbg.gLive = nil dbg.gLock.Unlock() for _, g := range g { g.mode = DebugTerminate close(g.resume) } } // BreakpointTarget is the target of a request to set breakpoints. type BreakpointTarget func(*Debugger, func(*node)) // PathBreakpointTarget is used to set breapoints on compiled code by path. This // can be used to set breakpoints on code compiled with EvalPath, or source // packages loaded by Yaegi. func PathBreakpointTarget(path string) BreakpointTarget { return func(dbg *Debugger, cb func(*node)) { for _, r := range dbg.interp.roots { f := dbg.interp.fset.File(r.pos) if f != nil && f.Name() == path { cb(r) return } } } } // ProgramBreakpointTarget is used to set breakpoints on a Program. func ProgramBreakpointTarget(prog *Program) BreakpointTarget { return func(_ *Debugger, cb func(*node)) { cb(prog.root) } } // AllBreakpointTarget is used to set breakpoints on all compiled code. Do not // use with LineBreakpoint. func AllBreakpointTarget() BreakpointTarget { return func(dbg *Debugger, cb func(*node)) { for _, r := range dbg.interp.roots { cb(r) } } } type breakpointSetup struct { roots []*node lines map[int]int funcs map[string]int } // BreakpointRequest is a request to set a breakpoint. type BreakpointRequest func(*breakpointSetup, int) // LineBreakpoint requests a breakpoint on the given line. func LineBreakpoint(line int) BreakpointRequest { return func(b *breakpointSetup, i int) { b.lines[line] = i } } // FunctionBreakpoint requests a breakpoint on the named function. func FunctionBreakpoint(name string) BreakpointRequest { return func(b *breakpointSetup, i int) { b.funcs[name] = i } } // SetBreakpoints sets breakpoints for the given target. The returned array has // an entry for every request, in order. If a given breakpoint request cannot be // satisfied, the corresponding entry will be marked invalid. If the target // cannot be found, all entries will be marked invalid. func (dbg *Debugger) SetBreakpoints(target BreakpointTarget, requests ...BreakpointRequest) []Breakpoint { // start with all breakpoints unverified results := make([]Breakpoint, len(requests)) // prepare all the requests setup := new(breakpointSetup) target(dbg, func(root *node) { setup.roots = append(setup.roots, root) setup.lines = make(map[int]int, len(requests)) setup.funcs = make(map[string]int, len(requests)) for i, rq := range requests { rq(setup, i) } }) // find breakpoints for _, root := range setup.roots { root.Walk(func(n *node) bool { // function breakpoints if len(setup.funcs) > 0 && n.kind == funcDecl { // reset stale breakpoints n.start.setBreakOnCall(false) if i, ok := setup.funcs[n.child[1].ident]; ok && !results[i].Valid { results[i].Valid = true results[i].Position = dbg.interp.fset.Position(n.start.pos) n.start.setBreakOnCall(true) return true } } // line breakpoints if len(setup.lines) > 0 && n.pos.IsValid() && n.action != aNop && getExec(n) != nil { // reset stale breakpoints n.setBreakOnLine(false) pos := dbg.interp.fset.Position(n.pos) if i, ok := setup.lines[pos.Line]; ok && !results[i].Valid { results[i].Valid = true results[i].Position = pos n.setBreakOnLine(true) return true } } return true }, nil) } return results } // GoRoutines returns an array of live Go routines. func (dbg *Debugger) GoRoutines() []*DebugGoRoutine { dbg.gLock.Lock() r := make([]*DebugGoRoutine, 0, len(dbg.gLive)) for id := range dbg.gLive { r = append(r, &DebugGoRoutine{id}) } dbg.gLock.Unlock() sort.Slice(r, func(i, j int) bool { return r[i].id < r[j].id }) return r } // ID returns the ID of the Go routine. func (r *DebugGoRoutine) ID() int { return r.id } // Name returns "Goroutine {ID}". func (r *DebugGoRoutine) Name() string { return fmt.Sprintf("Goroutine %d", r.id) } // GoRoutine returns the ID of the Go routine that generated the event. func (evt *DebugEvent) GoRoutine() int { if evt.frame.debug == nil { return 0 } return evt.frame.debug.g.id } // Reason returns the reason for the event. func (evt *DebugEvent) Reason() DebugEventReason { return evt.reason } // Walk the stack trace frames. The root frame is included if and only if it is // the only frame. Closure frames are rolled up into the following call frame. func (evt *DebugEvent) walkFrames(fn func([]*frame) bool) { if evt.frame == evt.frame.root { fn([]*frame{evt.frame}) return } var g *debugRoutine if evt.frame.debug != nil { g = evt.frame.debug.g } var frames []*frame for f := evt.frame; f != nil && f != f.root && (f.debug == nil || f.debug.g == g); f = f.anc { if f.debug == nil || f.debug.kind != frameCall { frames = append(frames, f) continue } if len(frames) > 0 { if !fn(frames) { return } } frames = frames[:0] frames = append(frames, f) } if len(frames) > 0 { fn(frames) } } // FrameDepth returns the number of call frames in the stack trace. func (evt *DebugEvent) FrameDepth() int { if evt.frame == evt.frame.root { return 1 } var n int evt.walkFrames(func([]*frame) bool { n++; return true }) return n } // Frames returns the call frames in the range [start, end). func (evt *DebugEvent) Frames(start, end int) []*DebugFrame { count := end - start if count < 0 { return nil } frames := []*DebugFrame{} evt.walkFrames(func(f []*frame) bool { df := &DebugFrame{evt, make([]*frame, len(f))} copy(df.frames, f) frames = append(frames, df) return len(frames) < count }) return frames } // Name returns the name of the stack frame. For function calls to named // functions, this is the function name. func (f *DebugFrame) Name() string { d := f.frames[0].debug if d == nil { return "" } switch d.kind { case frameRoot: return "" case frameClosure: return "" case frameCall: if d.name == "" { return "" } return d.name default: return "" } } // Position returns the current position of the frame. This is effectively the // program counter/link register. May return `Position{}`. func (f *DebugFrame) Position() token.Position { d := f.frames[0].debug if d == nil || d.node == nil { return token.Position{} } return f.event.debugger.interp.fset.Position(d.node.pos) } // Program returns the program associated with the current position of the // frame. May return nil. func (f *DebugFrame) Program() *Program { d := f.frames[0].debug if d == nil || d.node == nil { return nil } return d.node.debug.program } // Scopes returns the variable scopes of the frame. func (f *DebugFrame) Scopes() []*DebugFrameScope { s := make([]*DebugFrameScope, len(f.frames)) for i, f := range f.frames { s[i] = &DebugFrameScope{f} } return s } // IsClosure returns true if this is the capture scope of a closure. func (f *DebugFrameScope) IsClosure() bool { return f.frame.debug != nil && f.frame.debug.kind == frameClosure } // Variables returns the names and values of the variables of the scope. func (f *DebugFrameScope) Variables() []*DebugVariable { d := f.frame.debug if d == nil || d.scope == nil { return nil } index := map[int]string{} scanScope(d.scope, index) m := make([]*DebugVariable, 0, len(f.frame.data)) for i, v := range f.frame.data { if typ := v.Type(); typ.AssignableTo(rNodeType) || typ.Kind() == reflect.Ptr && typ.Elem().AssignableTo(rNodeType) { continue } name, ok := index[i] if !ok { continue } m = append(m, &DebugVariable{name, v}) } return m } func scanScope(sc *scope, index map[int]string) { for name, sym := range sc.sym { if _, ok := index[sym.index]; ok { continue } index[sym.index] = name } for _, ch := range sc.child { if ch.def != sc.def { continue } scanScope(ch, index) } } yaegi-0.16.1/interp/doc.go000066400000000000000000000026651460330105400152770ustar00rootroot00000000000000/* Package interp provides a complete Go interpreter. For the Go language itself, refer to the official Go specification https://golang.org/ref/spec. # Importing packages Packages can be imported in source or binary form, using the standard Go import statement. In source form, packages are searched first in the vendor directory, the preferred way to store source dependencies. If not found in vendor, sources modules will be searched in GOPATH. Go modules are not supported yet by yaegi. Binary form packages are compiled and linked with the interpreter executable, and exposed to scripts with the Use method. The extract subcommand of yaegi can be used to generate package wrappers. # Custom build tags Custom build tags allow to control which files in imported source packages are interpreted, in the same way as the "-tags" option of the "go build" command. Setting a custom build tag spans globally for all future imports of the session. A build tag is a line comment that begins // yaegi:tags that lists the build constraints to be satisfied by the further imports of source packages. For example the following custom build tag // yaegi:tags noasm Will ensure that an import of a package will exclude files containing // +build !noasm And include files containing // +build noasm */ package interp // BUG(marc): Support for recursive types is incomplete. // BUG(marc): Support of types implementing multiple interfaces is incomplete. yaegi-0.16.1/interp/dot.go000066400000000000000000000044261460330105400153150ustar00rootroot00000000000000package interp import ( "fmt" "io" "log" "os/exec" "path/filepath" "strings" ) // astDot displays an AST in graphviz dot(1) format using dotty(1) co-process. func (n *node) astDot(out io.Writer, name string) { fmt.Fprintf(out, "digraph ast {\n") fmt.Fprintf(out, "labelloc=\"t\"\n") fmt.Fprintf(out, "label=\"%s\"\n", name) n.Walk(func(n *node) bool { var label string switch n.kind { case basicLit, identExpr: label = strings.ReplaceAll(n.ident, "\"", "\\\"") default: if n.action != aNop { label = n.action.String() } else { label = n.kind.String() } } fmt.Fprintf(out, "%d [label=\"%d: %s\"]\n", n.index, n.index, label) if n.anc != nil { fmt.Fprintf(out, "%d -> %d\n", n.anc.index, n.index) } return true }, nil) fmt.Fprintf(out, "}\n") } // cfgDot displays a CFG in graphviz dot(1) format using dotty(1) co-process. func (n *node) cfgDot(out io.Writer) { fmt.Fprintf(out, "digraph cfg {\n") n.Walk(nil, func(n *node) { if n.kind == basicLit || n.tnext == nil { return } var label string if n.action == aNop { label = "nop: end_" + n.kind.String() } else { label = n.action.String() } fmt.Fprintf(out, "%d [label=\"%d: %v %d\"]\n", n.index, n.index, label, n.findex) if n.fnext != nil { fmt.Fprintf(out, "%d -> %d [color=green]\n", n.index, n.tnext.index) fmt.Fprintf(out, "%d -> %d [color=red]\n", n.index, n.fnext.index) } else if n.tnext != nil { fmt.Fprintf(out, "%d -> %d\n", n.index, n.tnext.index) } }) fmt.Fprintf(out, "}\n") } type nopCloser struct { io.Writer } func (nopCloser) Close() error { return nil } // dotWriter returns an output stream to a dot(1) co-process where to write data in .dot format. func dotWriter(dotCmd string) io.WriteCloser { if dotCmd == "" { return nopCloser{io.Discard} } fields := strings.Fields(dotCmd) cmd := exec.Command(fields[0], fields[1:]...) dotin, err := cmd.StdinPipe() if err != nil { log.Fatal(err) } if err = cmd.Start(); err != nil { log.Fatal(err) } return dotin } func defaultDotCmd(filePath, prefix string) string { dir, fileName := filepath.Split(filePath) ext := filepath.Ext(fileName) if ext == "" { fileName += ".dot" } else { fileName = strings.Replace(fileName, ext, ".dot", 1) } return "dot -Tdot -o" + dir + prefix + fileName } yaegi-0.16.1/interp/example_eval_test.go000066400000000000000000000012511460330105400202210ustar00rootroot00000000000000package interp_test import ( "fmt" "log" "github.com/traefik/yaegi/interp" ) // Generic example. func Example_eval() { // Create a new interpreter context i := interp.New(interp.Options{}) // Run some code: define a new function _, err := i.Eval("func f(i int) int { return 2 * i }") if err != nil { log.Fatal(err) } // Access the interpreted f function with Eval v, err := i.Eval("f") if err != nil { log.Fatal(err) } // Returned v is a reflect.Value, so we can use its interface f, ok := v.Interface().(func(int) int) if !ok { log.Fatal("type assertion failed") } // Use interpreted f as it was pre-compiled fmt.Println(f(2)) // Output: // 4 } yaegi-0.16.1/interp/export_test.go000066400000000000000000000005771460330105400171120ustar00rootroot00000000000000package interp func (interp *Interpreter) Scopes() map[string]map[string]struct{} { scopes := make(map[string]map[string]struct{}) for k, v := range interp.scopes { syms := make(map[string]struct{}) for kk := range v.sym { syms[kk] = struct{}{} } scopes[k] = syms } return scopes } func (interp *Interpreter) Packages() map[string]string { return interp.pkgNames } yaegi-0.16.1/interp/generic.go000066400000000000000000000175721460330105400161510ustar00rootroot00000000000000package interp import ( "strings" "sync/atomic" ) // adot produces an AST dot(1) directed acyclic graph for the given node. For debugging only. // func (n *node) adot() { n.astDot(dotWriter(n.interp.dotCmd), n.ident) } // genAST returns a new AST where generic types are replaced by instantiated types. func genAST(sc *scope, root *node, types []*itype) (*node, bool, error) { typeParam := map[string]*node{} pindex := 0 tname := "" rtname := "" recvrPtr := false fixNodes := []*node{} var gtree func(*node, *node) (*node, error) sname := root.child[0].ident + "[" if root.kind == funcDecl { sname = root.child[1].ident + "[" } // Input type parameters must be resolved prior AST generation, as compilation // of generated AST may occur in a different scope. for _, t := range types { sname += t.id() + "," } sname = strings.TrimSuffix(sname, ",") + "]" gtree = func(n, anc *node) (*node, error) { nod := copyNode(n, anc, false) switch n.kind { case funcDecl, funcType: nod.val = nod case identExpr: // Replace generic type by instantiated one. nt, ok := typeParam[n.ident] if !ok { break } nod = copyNode(nt, anc, true) nod.typ = nt.typ case indexExpr: // Catch a possible recursive generic type definition if root.kind != typeSpec { break } if root.child[0].ident != n.child[0].ident { break } nod := copyNode(n.child[0], anc, false) fixNodes = append(fixNodes, nod) return nod, nil case fieldList: // Node is the type parameters list of a generic function. if root.kind == funcDecl && n.anc == root.child[2] && childPos(n) == 0 { // Fill the types lookup table used for type substitution. for _, c := range n.child { l := len(c.child) - 1 for _, cc := range c.child[:l] { if pindex >= len(types) { return nil, cc.cfgErrorf("undefined type for %s", cc.ident) } t, err := nodeType(c.interp, sc, c.child[l]) if err != nil { return nil, err } if err := checkConstraint(types[pindex], t); err != nil { return nil, err } typeParam[cc.ident] = copyNode(cc, cc.anc, false) typeParam[cc.ident].ident = types[pindex].id() typeParam[cc.ident].typ = types[pindex] pindex++ } } // Skip type parameters specification, so generated func doesn't look generic. return nod, nil } // Node is the receiver of a generic method. if root.kind == funcDecl && n.anc == root && childPos(n) == 0 && len(n.child) > 0 { rtn := n.child[0].child[1] // Method receiver is a generic type if it takes some type parameters. if rtn.kind == indexExpr || rtn.kind == indexListExpr || (rtn.kind == starExpr && (rtn.child[0].kind == indexExpr || rtn.child[0].kind == indexListExpr)) { if rtn.kind == starExpr { // Method receiver is a pointer on a generic type. rtn = rtn.child[0] recvrPtr = true } rtname = rtn.child[0].ident + "[" for _, cc := range rtn.child[1:] { if pindex >= len(types) { return nil, cc.cfgErrorf("undefined type for %s", cc.ident) } it := types[pindex] typeParam[cc.ident] = copyNode(cc, cc.anc, false) typeParam[cc.ident].ident = it.id() typeParam[cc.ident].typ = it rtname += it.id() + "," pindex++ } rtname = strings.TrimSuffix(rtname, ",") + "]" } } // Node is the type parameters list of a generic type. if root.kind == typeSpec && n.anc == root && childPos(n) == 1 { // Fill the types lookup table used for type substitution. tname = n.anc.child[0].ident + "[" for _, c := range n.child { l := len(c.child) - 1 for _, cc := range c.child[:l] { if pindex >= len(types) { return nil, cc.cfgErrorf("undefined type for %s", cc.ident) } it := types[pindex] t, err := nodeType(c.interp, sc, c.child[l]) if err != nil { return nil, err } if err := checkConstraint(types[pindex], t); err != nil { return nil, err } typeParam[cc.ident] = copyNode(cc, cc.anc, false) typeParam[cc.ident].ident = it.id() typeParam[cc.ident].typ = it tname += it.id() + "," pindex++ } } tname = strings.TrimSuffix(tname, ",") + "]" return nod, nil } } for _, c := range n.child { gn, err := gtree(c, nod) if err != nil { return nil, err } nod.child = append(nod.child, gn) } return nod, nil } if nod, found := root.interp.generic[sname]; found { return nod, true, nil } r, err := gtree(root, root.anc) if err != nil { return nil, false, err } root.interp.generic[sname] = r r.param = append(r.param, types...) if tname != "" { for _, nod := range fixNodes { nod.ident = tname } r.child[0].ident = tname } if rtname != "" { // Replace method receiver type by synthetized ident. nod := r.child[0].child[0].child[1] if recvrPtr { nod = nod.child[0] } nod.kind = identExpr nod.ident = rtname nod.child = nil } // r.adot() // Used for debugging only. return r, false, nil } func copyNode(n, anc *node, recursive bool) *node { var i interface{} nindex := atomic.AddInt64(&n.interp.nindex, 1) nod := &node{ debug: n.debug, anc: anc, interp: n.interp, index: nindex, level: n.level, nleft: n.nleft, nright: n.nright, kind: n.kind, pos: n.pos, action: n.action, gen: n.gen, val: &i, rval: n.rval, ident: n.ident, meta: n.meta, } nod.start = nod if recursive { for _, c := range n.child { nod.child = append(nod.child, copyNode(c, nod, true)) } } return nod } func inferTypesFromCall(sc *scope, fun *node, args []*node) ([]*itype, error) { ftn := fun.typ.node // Fill the map of parameter types, indexed by type param ident. paramTypes := map[string]*itype{} for _, c := range ftn.child[0].child { typ, err := nodeType(fun.interp, sc, c.lastChild()) if err != nil { return nil, err } for _, cc := range c.child[:len(c.child)-1] { paramTypes[cc.ident] = typ } } var inferTypes func(*itype, *itype) ([]*itype, error) inferTypes = func(param, input *itype) ([]*itype, error) { switch param.cat { case chanT, ptrT, sliceT: return inferTypes(param.val, input.val) case mapT: k, err := inferTypes(param.key, input.key) if err != nil { return nil, err } v, err := inferTypes(param.val, input.val) if err != nil { return nil, err } return append(k, v...), nil case structT: lt := []*itype{} for i, f := range param.field { nl, err := inferTypes(f.typ, input.field[i].typ) if err != nil { return nil, err } lt = append(lt, nl...) } return lt, nil case funcT: lt := []*itype{} for i, t := range param.arg { if i >= len(input.arg) { break } nl, err := inferTypes(t, input.arg[i]) if err != nil { return nil, err } lt = append(lt, nl...) } for i, t := range param.ret { if i >= len(input.ret) { break } nl, err := inferTypes(t, input.ret[i]) if err != nil { return nil, err } lt = append(lt, nl...) } return lt, nil case nilT: if paramTypes[param.name] != nil { return []*itype{input}, nil } case genericT: return []*itype{input}, nil } return nil, nil } types := []*itype{} for i, c := range ftn.child[1].child { typ, err := nodeType(fun.interp, sc, c.lastChild()) if err != nil { return nil, err } lt, err := inferTypes(typ, args[i].typ) if err != nil { return nil, err } types = append(types, lt...) } return types, nil } func checkConstraint(it, ct *itype) error { if len(ct.constraint) == 0 && len(ct.ulconstraint) == 0 { return nil } for _, c := range ct.constraint { if it.equals(c) || it.matchDefault(c) { return nil } } for _, c := range ct.ulconstraint { if it.underlying().equals(c) || it.matchDefault(c) { return nil } } return it.node.cfgErrorf("%s does not implement %s", it.id(), ct.id()) } yaegi-0.16.1/interp/gta.go000066400000000000000000000316231460330105400153010ustar00rootroot00000000000000package interp import ( "path" "path/filepath" ) // gta performs a global types analysis on the AST, registering types, // variables and functions symbols at package level, prior to CFG. // All function bodies are skipped. GTA is necessary to handle out of // order declarations and multiple source files packages. // rpath is the relative path to the directory containing the source for the package. func (interp *Interpreter) gta(root *node, rpath, importPath, pkgName string) ([]*node, error) { sc := interp.initScopePkg(importPath, pkgName) var err error var revisit []*node baseName := filepath.Base(interp.fset.Position(root.pos).Filename) root.Walk(func(n *node) bool { if err != nil { return false } if n.scope == nil { n.scope = sc } switch n.kind { case constDecl: // Early parse of constDecl subtree, to compute all constant // values which may be used in further declarations. if _, err = interp.cfg(n, sc, importPath, pkgName); err != nil { // No error processing here, to allow recovery in subtree nodes. // TODO(marc): check for a non recoverable error and return it for better diagnostic. err = nil } case blockStmt: if n != root { return false // skip statement block if not the entry point } case defineStmt: var ( atyp *itype err2 error ) if n.nleft+n.nright < len(n.child) { // Type is declared explicitly in the assign expression. if atyp, err2 = nodeType(interp, sc, n.child[n.nleft]); err2 != nil { // The type does not exist yet, stash the error and come back // when the type is known. n.meta = err2 revisit = append(revisit, n) return false } } var sbase int if n.nright > 0 { sbase = len(n.child) - n.nright } for i := 0; i < n.nleft; i++ { dest, src := n.child[i], n.child[sbase+i] if isBlank(src) { err = n.cfgErrorf("cannot use _ as value") } val := src.rval if n.anc.kind == constDecl { if _, err2 := interp.cfg(n, sc, importPath, pkgName); err2 != nil { // Constant value can not be computed yet. // Come back when child dependencies are known. revisit = append(revisit, n) return false } } typ := atyp if typ == nil { if typ, err2 = nodeType(interp, sc, src); err2 != nil || typ == nil { // The type does is not known yet, stash the error and come back // when the type is known. n.meta = err2 revisit = append(revisit, n) return false } val = src.rval } if !typ.isComplete() { // Come back when type is known. revisit = append(revisit, n) return false } if typ.cat == nilT { err = n.cfgErrorf("use of untyped nil") return false } if typ.isBinMethod { typ = valueTOf(typ.methodCallType(), isBinMethod(), withScope(sc)) } sc.sym[dest.ident] = &symbol{kind: varSym, global: true, index: sc.add(typ), typ: typ, rval: val, node: n} if n.anc.kind == constDecl { sc.sym[dest.ident].kind = constSym if childPos(n) == len(n.anc.child)-1 { sc.iota = 0 } else { sc.iota++ } } } return false case defineXStmt: err = compDefineX(sc, n) case valueSpec: l := len(n.child) - 1 if n.typ = n.child[l].typ; n.typ == nil { if n.typ, err = nodeType(interp, sc, n.child[l]); err != nil { return false } if !n.typ.isComplete() { // Come back when type is known. revisit = append(revisit, n) return false } } for _, c := range n.child[:l] { asImportName := filepath.Join(c.ident, baseName) sym, exists := sc.sym[asImportName] if !exists { sc.sym[c.ident] = &symbol{index: sc.add(n.typ), kind: varSym, global: true, typ: n.typ, node: n} continue } c.level = globalFrame // redeclaration error if sym.typ.node != nil && sym.typ.node.anc != nil { prevDecl := n.interp.fset.Position(sym.typ.node.anc.pos) err = n.cfgErrorf("%s redeclared in this block\n\tprevious declaration at %v", c.ident, prevDecl) return false } err = n.cfgErrorf("%s redeclared in this block", c.ident) return false } case funcDecl: if n.typ, err = nodeType(interp, sc, n.child[2]); err != nil { return false } genericMethod := false ident := n.child[1].ident switch { case isMethod(n): // Add a method symbol in the receiver type name space var rcvrtype *itype n.ident = ident rcvr := n.child[0].child[0] rtn := rcvr.lastChild() typName, typPtr := rtn.ident, false // Identifies the receiver type name. It could be an ident, a // generic type (indexExpr), or a pointer on either lasts. if typName == "" { typName = rtn.child[0].ident switch rtn.kind { case starExpr: typPtr = true switch c := rtn.child[0]; c.kind { case indexExpr, indexListExpr: typName = c.child[0].ident genericMethod = true } case indexExpr, indexListExpr: genericMethod = true } } sym, _, found := sc.lookup(typName) if !found { n.meta = n.cfgErrorf("undefined: %s", typName) revisit = append(revisit, n) return false } if sym.typ.path != pkgName { err = n.cfgErrorf("cannot define new methods on non-local type %s", baseType(sym.typ).id()) return false } rcvrtype = sym.typ if typPtr { elementType := sym.typ rcvrtype = ptrOf(elementType, withNode(rtn), withScope(sc)) rcvrtype.incomplete = elementType.incomplete elementType.addMethod(n) } rcvrtype.addMethod(n) rtn.typ = rcvrtype if rcvrtype.cat == genericT { // generate methods for already instantiated receivers for _, it := range rcvrtype.instance { if err = genMethod(interp, sc, it, n, it.node.anc.param); err != nil { return false } } } case ident == "init": // init functions do not get declared as per the Go spec. default: asImportName := filepath.Join(ident, baseName) if _, exists := sc.sym[asImportName]; exists { // redeclaration error err = n.cfgErrorf("%s redeclared in this block", ident) return false } // Add a function symbol in the package name space except for init sc.sym[ident] = &symbol{kind: funcSym, typ: n.typ, node: n, index: -1} } if !n.typ.isComplete() && !genericMethod { revisit = append(revisit, n) } return false case importSpec: var name, ipath string if len(n.child) == 2 { ipath = constToString(n.child[1].rval) name = n.child[0].ident } else { ipath = constToString(n.child[0].rval) } // Try to import a binary package first, or a source package var pkgName string if packageName := path.Base(ipath); path.Dir(ipath) == packageName { ipath = packageName } if pkg := interp.binPkg[ipath]; pkg != nil { switch name { case "_": // no import of symbols case ".": // import symbols in current scope for n, v := range pkg { typ := v.Type() kind := binSym if isBinType(v) { typ = typ.Elem() kind = typeSym } sc.sym[n] = &symbol{kind: kind, typ: valueTOf(typ, withScope(sc)), rval: v} } default: // import symbols in package namespace if name == "" { name = interp.pkgNames[ipath] } // If an incomplete type exists, delete it if sym, exists := sc.sym[name]; exists && sym.kind == typeSym && sym.typ.incomplete { delete(sc.sym, name) } // Imports of a same package are all mapped in the same scope, so we cannot just // map them by their names, otherwise we could have collisions from same-name // imports in different source files of the same package. Therefore, we suffix // the key with the basename of the source file. name = filepath.Join(name, baseName) if sym, exists := sc.sym[name]; !exists { sc.sym[name] = &symbol{kind: pkgSym, typ: &itype{cat: binPkgT, path: ipath, scope: sc}} break } else if sym.kind == pkgSym && sym.typ.cat == srcPkgT && sym.typ.path == ipath { // ignore re-import of identical package break } // redeclaration error. Not caught by the parser. err = n.cfgErrorf("%s redeclared in this block", name) return false } } else if pkgName, err = interp.importSrc(rpath, ipath, NoTest); err == nil { sc.types = interp.universe.types switch name { case "_": // no import of symbols case ".": // import symbols in current namespace for k, v := range interp.srcPkg[ipath] { if canExport(k) { sc.sym[k] = v } } default: // import symbols in package namespace if name == "" { name = pkgName } name = filepath.Join(name, baseName) if sym, exists := sc.sym[name]; !exists { sc.sym[name] = &symbol{kind: pkgSym, typ: &itype{cat: srcPkgT, path: ipath, scope: sc}} break } else if sym.kind == pkgSym && sym.typ.cat == srcPkgT && sym.typ.path == ipath { // ignore re-import of identical package break } // redeclaration error err = n.cfgErrorf("%s redeclared as imported package name", name) return false } } else { err = n.cfgErrorf("import %q error: %v", ipath, err) } case typeSpec, typeSpecAssign: if isBlank(n.child[0]) { err = n.cfgErrorf("cannot use _ as value") return false } typeName := n.child[0].ident if len(n.child) > 2 { // Handle a generic type: skip definition as parameter is not instantiated yet. n.typ = genericOf(nil, typeName, pkgName, withNode(n.child[0]), withScope(sc)) if _, exists := sc.sym[typeName]; !exists { sc.sym[typeName] = &symbol{kind: typeSym, node: n} } sc.sym[typeName].typ = n.typ return false } var typ *itype if typ, err = nodeType(interp, sc, n.child[1]); err != nil { err = nil revisit = append(revisit, n) return false } if n.kind == typeSpecAssign { // Create an aliased type in the current scope sc.sym[typeName] = &symbol{kind: typeSym, node: n, typ: typ} n.typ = typ break } // else we are not an alias (typeSpec) switch n.child[1].kind { case identExpr, selectorExpr: n.typ = namedOf(typ, pkgName, typeName, withNode(n.child[0]), withScope(sc)) n.typ.incomplete = typ.incomplete n.typ.field = typ.field copy(n.typ.method, typ.method) default: n.typ = typ n.typ.name = typeName n.typ.path = pkgName } n.typ.str = n.typ.path + "." + n.typ.name asImportName := filepath.Join(typeName, baseName) if _, exists := sc.sym[asImportName]; exists { // redeclaration error err = n.cfgErrorf("%s redeclared in this block", typeName) return false } sym, exists := sc.sym[typeName] if !exists { sym = &symbol{kind: typeSym, node: n} sc.sym[typeName] = sym } else if sym.typ != nil && (len(sym.typ.method) > 0) { // Type has already been seen as a receiver in a method function for _, m := range sym.typ.method { n.typ.addMethod(m) } } sym.typ = n.typ if !n.typ.isComplete() { revisit = append(revisit, n) } return false } return true }, nil) if sc != interp.universe { sc.pop() } return revisit, err } func baseType(t *itype) *itype { for { switch t.cat { case ptrT, linkedT: t = t.val default: return t } } } // gtaRetry (re)applies gta until all global constants and types are defined. func (interp *Interpreter) gtaRetry(nodes []*node, importPath, pkgName string) error { revisit := []*node{} for { for _, n := range nodes { list, err := interp.gta(n, importPath, importPath, pkgName) if err != nil { return err } revisit = append(revisit, list...) } if len(revisit) == 0 || equalNodes(nodes, revisit) { break } nodes = revisit revisit = []*node{} } if len(revisit) > 0 { n := revisit[0] switch n.kind { case typeSpec, typeSpecAssign: if err := definedType(n.typ); err != nil { return err } case defineStmt, funcDecl: if err, ok := n.meta.(error); ok { return err } } return n.cfgErrorf("constant definition loop") } return nil } func definedType(typ *itype) error { if !typ.incomplete { return nil } switch typ.cat { case interfaceT, structT: for _, f := range typ.field { if err := definedType(f.typ); err != nil { return err } } case funcT: for _, t := range typ.arg { if err := definedType(t); err != nil { return err } } for _, t := range typ.ret { if err := definedType(t); err != nil { return err } } case mapT: if err := definedType(typ.key); err != nil { return err } fallthrough case linkedT, arrayT, chanT, chanSendT, chanRecvT, ptrT, variadicT: if err := definedType(typ.val); err != nil { return err } case nilT: return typ.node.cfgErrorf("undefined: %s", typ.node.ident) } return nil } // equalNodes returns true if two slices of nodes are identical. func equalNodes(a, b []*node) bool { if len(a) != len(b) { return false } for i, n := range a { if n != b[i] { return false } } return true } yaegi-0.16.1/interp/hooks.go000066400000000000000000000011551460330105400156460ustar00rootroot00000000000000package interp import "reflect" // convertFn is the signature of a symbol converter. type convertFn func(from, to reflect.Type) func(src, dest reflect.Value) // hooks are external symbol bindings. type hooks struct { convert []convertFn } func (h *hooks) Parse(m map[string]reflect.Value) { if con, ok := getConvertFn(m["convert"]); ok { h.convert = append(h.convert, con) } } func getConvertFn(v reflect.Value) (convertFn, bool) { if !v.IsValid() { return nil, false } fn, ok := v.Interface().(func(from, to reflect.Type) func(src, dest reflect.Value)) if !ok { return nil, false } return fn, true } yaegi-0.16.1/interp/interp.go000066400000000000000000000600621460330105400160260ustar00rootroot00000000000000package interp import ( "bufio" "context" "errors" "fmt" "go/build" "go/scanner" "go/token" "io" "io/fs" "os" "os/signal" "path" "path/filepath" "reflect" "runtime" "runtime/debug" "strconv" "strings" "sync" "sync/atomic" ) // Interpreter node structure for AST and CFG. type node struct { debug *nodeDebugData // debug info child []*node // child subtrees (AST) anc *node // ancestor (AST) param []*itype // generic parameter nodes (AST) start *node // entry point in subtree (CFG) tnext *node // true branch successor (CFG) fnext *node // false branch successor (CFG) interp *Interpreter // interpreter context index int64 // node index (dot display) findex int // index of value in frame or frame size (func def, type def) level int // number of frame indirections to access value nleft int // number of children in left part (assign) or indicates preceding type (compositeLit) nright int // number of children in right part (assign) kind nkind // kind of node pos token.Pos // position in source code, relative to fset sym *symbol // associated symbol typ *itype // type of value in frame, or nil recv *receiver // method receiver node for call, or nil types []reflect.Type // frame types, used by function literals only scope *scope // frame scope action action // action exec bltn // generated function to execute gen bltnGenerator // generator function to produce above bltn val interface{} // static generic value (CFG execution) rval reflect.Value // reflection value to let runtime access interpreter (CFG) ident string // set if node is a var or func redeclared bool // set if node is a redeclared variable (CFG) meta interface{} // meta stores meta information between gta runs, like errors } func (n *node) shouldBreak() bool { if n == nil || n.debug == nil { return false } if n.debug.breakOnLine || n.debug.breakOnCall { return true } return false } func (n *node) setProgram(p *Program) { if n.debug == nil { n.debug = new(nodeDebugData) } n.debug.program = p } func (n *node) setBreakOnCall(v bool) { if n.debug == nil { if !v { return } n.debug = new(nodeDebugData) } n.debug.breakOnCall = v } func (n *node) setBreakOnLine(v bool) { if n.debug == nil { if !v { return } n.debug = new(nodeDebugData) } n.debug.breakOnLine = v } // receiver stores method receiver object access path. type receiver struct { node *node // receiver value for alias and struct types val reflect.Value // receiver value for interface type and value type index []int // path in receiver value for interface or value type } // frame contains values for the current execution level (a function context). type frame struct { // id is an atomic counter used for cancellation, only accessed // via newFrame/runid/setrunid/clone. // Located at start of struct to ensure proper alignment. id uint64 debug *frameDebugData root *frame // global space anc *frame // ancestor frame (caller space) data []reflect.Value // values mutex sync.RWMutex deferred [][]reflect.Value // defer stack recovered interface{} // to handle panic recover done reflect.SelectCase // for cancellation of channel operations } func newFrame(anc *frame, length int, id uint64) *frame { f := &frame{ anc: anc, data: make([]reflect.Value, length), id: id, } if anc == nil { f.root = f } else { f.done = anc.done f.root = anc.root } return f } func (f *frame) runid() uint64 { return atomic.LoadUint64(&f.id) } func (f *frame) setrunid(id uint64) { atomic.StoreUint64(&f.id, id) } func (f *frame) clone() *frame { f.mutex.RLock() defer f.mutex.RUnlock() nf := &frame{ anc: f.anc, root: f.root, deferred: f.deferred, recovered: f.recovered, id: f.runid(), done: f.done, debug: f.debug, } nf.data = make([]reflect.Value, len(f.data)) copy(nf.data, f.data) return nf } // Exports stores the map of binary packages per package path. // The package path is the path joined from the import path and the package name // as specified in source files by the "package" statement. type Exports map[string]map[string]reflect.Value // imports stores the map of source packages per package path. type imports map[string]map[string]*symbol // opt stores interpreter options. type opt struct { // dotCmd is the command to process the dot graph produced when astDot and/or // cfgDot is enabled. It defaults to 'dot -Tdot -o .dot'. dotCmd string context build.Context // build context: GOPATH, build constraints stdin io.Reader // standard input stdout io.Writer // standard output stderr io.Writer // standard error args []string // cmdline args env map[string]string // environment of interpreter, entries in form of "key=value" filesystem fs.FS // filesystem containing sources astDot bool // display AST graph (debug) cfgDot bool // display CFG graph (debug) noRun bool // compile, but do not run fastChan bool // disable cancellable chan operations specialStdio bool // allows os.Stdin, os.Stdout, os.Stderr to not be file descriptors unrestricted bool // allow use of non-sandboxed symbols } // Interpreter contains global resources and state. type Interpreter struct { // id is an atomic counter used for run cancellation, // only accessed via runid/stop // Located at start of struct to ensure proper alignment on 32-bit // architectures. id uint64 // nindex is a node number incremented for each new node. // It is used for debug (AST and CFG graphs). As it is atomically // incremented, keep it aligned on 64 bits boundary. nindex int64 name string // name of the input source file (or main) opt // user settable options cancelChan bool // enables cancellable chan operations fset *token.FileSet // fileset to locate node in source code binPkg Exports // binary packages used in interpreter, indexed by path rdir map[string]bool // for src import cycle detection mapTypes map[reflect.Value][]reflect.Type // special interfaces mapping for wrappers mutex sync.RWMutex frame *frame // program data storage during execution universe *scope // interpreter global level scope scopes map[string]*scope // package level scopes, indexed by import path srcPkg imports // source packages used in interpreter, indexed by path pkgNames map[string]string // package names, indexed by import path done chan struct{} // for cancellation of channel operations roots []*node generic map[string]*node hooks *hooks // symbol hooks debugger *Debugger } const ( mainID = "main" selfPrefix = "github.com/traefik/yaegi" selfPath = selfPrefix + "/interp/interp" // DefaultSourceName is the name used by default when the name of the input // source file has not been specified for an Eval. // TODO(mpl): something even more special as a name? DefaultSourceName = "_.go" // Test is the value to pass to EvalPath to activate evaluation of test functions. Test = false // NoTest is the value to pass to EvalPath to skip evaluation of test functions. NoTest = true ) // Self points to the current interpreter if accessed from within itself, or is nil. var Self *Interpreter // Symbols exposes interpreter values. var Symbols = Exports{ selfPath: map[string]reflect.Value{ "New": reflect.ValueOf(New), "Interpreter": reflect.ValueOf((*Interpreter)(nil)), "Options": reflect.ValueOf((*Options)(nil)), "Panic": reflect.ValueOf((*Panic)(nil)), }, } func init() { Symbols[selfPath]["Symbols"] = reflect.ValueOf(Symbols) } // _error is a wrapper of error interface type. type _error struct { IValue interface{} WError func() string } func (w _error) Error() string { return w.WError() } // Panic is an error recovered from a panic call in interpreted code. type Panic struct { // Value is the recovered value of a call to panic. Value interface{} // Callers is the call stack obtained from the recover call. // It may be used as the parameter to runtime.CallersFrames. Callers []uintptr // Stack is the call stack buffer for debug. Stack []byte } // TODO: Capture interpreter stack frames also and remove // fmt.Fprintln(n.interp.stderr, oNode.cfgErrorf("panic")) in runCfg. func (e Panic) Error() string { return fmt.Sprint(e.Value) } // Walk traverses AST n in depth first order, call cbin function // at node entry and cbout function at node exit. func (n *node) Walk(in func(n *node) bool, out func(n *node)) { if in != nil && !in(n) { return } for _, child := range n.child { child.Walk(in, out) } if out != nil { out(n) } } // Options are the interpreter options. type Options struct { // GoPath sets GOPATH for the interpreter. GoPath string // BuildTags sets build constraints for the interpreter. BuildTags []string // Standard input, output and error streams. // They default to os.Stdin, os.Stdout and os.Stderr respectively. Stdin io.Reader Stdout, Stderr io.Writer // Cmdline args, defaults to os.Args. Args []string // Environment of interpreter. Entries are in the form "key=values". Env []string // SourcecodeFilesystem is where the _sourcecode_ is loaded from and does // NOT affect the filesystem of scripts when they run. // It can be any fs.FS compliant filesystem (e.g. embed.FS, or fstest.MapFS for testing) // See example/fs/fs_test.go for an example. SourcecodeFilesystem fs.FS // Unrestricted allows to run non sandboxed stdlib symbols such as os/exec and environment Unrestricted bool } // New returns a new interpreter. func New(options Options) *Interpreter { i := Interpreter{ opt: opt{context: build.Default, filesystem: &realFS{}, env: map[string]string{}}, frame: newFrame(nil, 0, 0), fset: token.NewFileSet(), universe: initUniverse(), scopes: map[string]*scope{}, binPkg: Exports{"": map[string]reflect.Value{"_error": reflect.ValueOf((*_error)(nil))}}, mapTypes: map[reflect.Value][]reflect.Type{}, srcPkg: imports{}, pkgNames: map[string]string{}, rdir: map[string]bool{}, hooks: &hooks{}, generic: map[string]*node{}, } if i.opt.stdin = options.Stdin; i.opt.stdin == nil { i.opt.stdin = os.Stdin } if i.opt.stdout = options.Stdout; i.opt.stdout == nil { i.opt.stdout = os.Stdout } if i.opt.stderr = options.Stderr; i.opt.stderr == nil { i.opt.stderr = os.Stderr } if i.opt.args = options.Args; i.opt.args == nil { i.opt.args = os.Args } // unrestricted allows to use non sandboxed stdlib symbols and env. if options.Unrestricted { i.opt.unrestricted = true } else { for _, e := range options.Env { a := strings.SplitN(e, "=", 2) if len(a) == 2 { i.opt.env[a[0]] = a[1] } else { i.opt.env[a[0]] = "" } } } if options.SourcecodeFilesystem != nil { i.opt.filesystem = options.SourcecodeFilesystem } i.opt.context.GOPATH = options.GoPath if len(options.BuildTags) > 0 { i.opt.context.BuildTags = options.BuildTags } // astDot activates AST graph display for the interpreter i.opt.astDot, _ = strconv.ParseBool(os.Getenv("YAEGI_AST_DOT")) // cfgDot activates CFG graph display for the interpreter i.opt.cfgDot, _ = strconv.ParseBool(os.Getenv("YAEGI_CFG_DOT")) // dotCmd defines how to process the dot code generated whenever astDot and/or // cfgDot is enabled. It defaults to 'dot -Tdot -o.dot' where filename // is context dependent. i.opt.dotCmd = os.Getenv("YAEGI_DOT_CMD") // noRun disables the execution (but not the compilation) in the interpreter i.opt.noRun, _ = strconv.ParseBool(os.Getenv("YAEGI_NO_RUN")) // fastChan disables the cancellable version of channel operations in evalWithContext i.opt.fastChan, _ = strconv.ParseBool(os.Getenv("YAEGI_FAST_CHAN")) // specialStdio allows to assign directly io.Writer and io.Reader to os.Stdxxx, // even if they are not file descriptors. i.opt.specialStdio, _ = strconv.ParseBool(os.Getenv("YAEGI_SPECIAL_STDIO")) return &i } const ( bltnAlignof = "unsafe.Alignof" bltnAppend = "append" bltnCap = "cap" bltnClose = "close" bltnComplex = "complex" bltnImag = "imag" bltnCopy = "copy" bltnDelete = "delete" bltnLen = "len" bltnMake = "make" bltnNew = "new" bltnOffsetof = "unsafe.Offsetof" bltnPanic = "panic" bltnPrint = "print" bltnPrintln = "println" bltnReal = "real" bltnRecover = "recover" bltnSizeof = "unsafe.Sizeof" ) 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"}}, "comparable": {kind: typeSym, typ: &itype{cat: comparableT, name: "comparable", str: "comparable"}}, "complex64": {kind: typeSym, typ: &itype{cat: complex64T, name: "complex64", str: "complex64"}}, "complex128": {kind: typeSym, typ: &itype{cat: complex128T, name: "complex128", str: "complex128"}}, "error": {kind: typeSym, typ: &itype{cat: errorT, name: "error", str: "error"}}, "float32": {kind: typeSym, typ: &itype{cat: float32T, name: "float32", str: "float32"}}, "float64": {kind: typeSym, typ: &itype{cat: float64T, name: "float64", str: "float64"}}, "int": {kind: typeSym, typ: &itype{cat: intT, name: "int", str: "int"}}, "int8": {kind: typeSym, typ: &itype{cat: int8T, name: "int8", str: "int8"}}, "int16": {kind: typeSym, typ: &itype{cat: int16T, name: "int16", str: "int16"}}, "int32": {kind: typeSym, typ: &itype{cat: int32T, name: "int32", str: "int32"}}, "int64": {kind: typeSym, typ: &itype{cat: int64T, name: "int64", str: "int64"}}, "interface{}": {kind: typeSym, typ: &itype{cat: interfaceT, str: "interface{}"}}, "rune": {kind: typeSym, typ: &itype{cat: int32T, name: "int32", str: "int32"}}, "string": {kind: typeSym, typ: &itype{cat: stringT, name: "string", str: "string"}}, "uint": {kind: typeSym, typ: &itype{cat: uintT, name: "uint", str: "uint"}}, "uint8": {kind: typeSym, typ: &itype{cat: uint8T, name: "uint8", str: "uint8"}}, "uint16": {kind: typeSym, typ: &itype{cat: uint16T, name: "uint16", str: "uint16"}}, "uint32": {kind: typeSym, typ: &itype{cat: uint32T, name: "uint32", str: "uint32"}}, "uint64": {kind: typeSym, typ: &itype{cat: uint64T, name: "uint64", str: "uint64"}}, "uintptr": {kind: typeSym, typ: &itype{cat: uintptrT, name: "uintptr", str: "uintptr"}}, // predefined Go constants "false": {kind: constSym, typ: untypedBool(nil), rval: reflect.ValueOf(false)}, "true": {kind: constSym, typ: untypedBool(nil), rval: reflect.ValueOf(true)}, "iota": {kind: constSym, typ: untypedInt(nil)}, // predefined Go zero value "nil": {typ: &itype{cat: nilT, untyped: true, str: "nil"}}, // predefined Go builtins bltnAppend: {kind: bltnSym, builtin: _append}, bltnCap: {kind: bltnSym, builtin: _cap}, bltnClose: {kind: bltnSym, builtin: _close}, bltnComplex: {kind: bltnSym, builtin: _complex}, bltnImag: {kind: bltnSym, builtin: _imag}, bltnCopy: {kind: bltnSym, builtin: _copy}, bltnDelete: {kind: bltnSym, builtin: _delete}, bltnLen: {kind: bltnSym, builtin: _len}, bltnMake: {kind: bltnSym, builtin: _make}, bltnNew: {kind: bltnSym, builtin: _new}, bltnPanic: {kind: bltnSym, builtin: _panic}, bltnPrint: {kind: bltnSym, builtin: _print}, bltnPrintln: {kind: bltnSym, builtin: _println}, bltnReal: {kind: bltnSym, builtin: _real}, bltnRecover: {kind: bltnSym, builtin: _recover}, }} return sc } // resizeFrame resizes the global frame of interpreter. func (interp *Interpreter) resizeFrame() { l := len(interp.universe.types) b := len(interp.frame.data) if l-b <= 0 { return } data := make([]reflect.Value, l) copy(data, interp.frame.data) for j, t := range interp.universe.types[b:] { data[b+j] = reflect.New(t).Elem() } interp.frame.data = data } // Eval evaluates Go code represented as a string. Eval returns the last result // computed by the interpreter, and a non nil error in case of failure. func (interp *Interpreter) Eval(src string) (res reflect.Value, err error) { return interp.eval(src, "", true) } // EvalPath evaluates Go code located at path and returns the last result computed // by the interpreter, and a non nil error in case of failure. // The main function of the main package is executed if present. func (interp *Interpreter) EvalPath(path string) (res reflect.Value, err error) { if !isFile(interp.opt.filesystem, path) { _, err := interp.importSrc(mainID, path, NoTest) return res, err } b, err := fs.ReadFile(interp.filesystem, path) if err != nil { return res, err } return interp.eval(string(b), path, false) } // EvalPathWithContext evaluates Go code located at path and returns the last // result computed by the interpreter, and a non nil error in case of failure. // The main function of the main package is executed if present. func (interp *Interpreter) EvalPathWithContext(ctx context.Context, path string) (res reflect.Value, err error) { interp.mutex.Lock() interp.done = make(chan struct{}) interp.cancelChan = !interp.opt.fastChan interp.mutex.Unlock() done := make(chan struct{}) go func() { defer close(done) res, err = interp.EvalPath(path) }() select { case <-ctx.Done(): interp.stop() return reflect.Value{}, ctx.Err() case <-done: } return res, err } // EvalTest evaluates Go code located at path, including test files with "_test.go" suffix. // A non nil error is returned in case of failure. // The main function, test functions and benchmark functions are internally compiled but not // executed. Test functions can be retrieved using the Symbol() method. func (interp *Interpreter) EvalTest(path string) error { _, err := interp.importSrc(mainID, path, Test) return err } func isFile(filesystem fs.FS, path string) bool { fi, err := fs.Stat(filesystem, path) return err == nil && fi.Mode().IsRegular() } func (interp *Interpreter) eval(src, name string, inc bool) (res reflect.Value, err error) { prog, err := interp.compileSrc(src, name, inc) if err != nil { return res, err } if interp.noRun { return res, err } return interp.Execute(prog) } // EvalWithContext evaluates Go code represented as a string. It returns // a map on current interpreted package exported symbols. func (interp *Interpreter) EvalWithContext(ctx context.Context, src string) (reflect.Value, error) { var v reflect.Value var err error interp.mutex.Lock() interp.done = make(chan struct{}) interp.cancelChan = !interp.opt.fastChan interp.mutex.Unlock() done := make(chan struct{}) go func() { defer func() { if r := recover(); r != nil { var pc [64]uintptr n := runtime.Callers(1, pc[:]) err = Panic{Value: r, Callers: pc[:n], Stack: debug.Stack()} } close(done) }() v, err = interp.Eval(src) }() select { case <-ctx.Done(): interp.stop() return reflect.Value{}, ctx.Err() case <-done: } return v, err } // stop sends a semaphore to all running frames and closes the chan // operation short circuit channel. stop may only be called once per // invocation of EvalWithContext. func (interp *Interpreter) stop() { atomic.AddUint64(&interp.id, 1) close(interp.done) } func (interp *Interpreter) runid() uint64 { return atomic.LoadUint64(&interp.id) } // ignoreScannerError returns true if the error from Go scanner can be safely ignored // to let the caller grab one more line before retrying to parse its input. func ignoreScannerError(e *scanner.Error, s string) bool { msg := e.Msg if strings.HasSuffix(msg, "found 'EOF'") { return true } if msg == "raw string literal not terminated" { return true } if strings.HasPrefix(msg, "expected operand, found '}'") && !strings.HasSuffix(s, "}") { return true } return false } // ImportUsed automatically imports pre-compiled packages included by Use(). // This is mainly useful for REPLs, or single command lines. In case of an ambiguous default // package name, for example "rand" for crypto/rand and math/rand, the package name is // constructed by replacing the last "/" by a "_", producing crypto_rand and math_rand. // ImportUsed should not be called more than once, and not after a first Eval, as it may // rename packages. func (interp *Interpreter) ImportUsed() { sc := interp.universe for k := range interp.binPkg { // By construction, the package name is the last path element of the key. name := path.Base(k) if sym, ok := sc.sym[name]; ok { // Handle collision by renaming old and new entries. name2 := key2name(fixKey(sym.typ.path)) sc.sym[name2] = sym if name2 != name { delete(sc.sym, name) } name = key2name(fixKey(k)) } sc.sym[name] = &symbol{kind: pkgSym, typ: &itype{cat: binPkgT, path: k, scope: sc}} } } func key2name(name string) string { return filepath.Join(name, DefaultSourceName) } func fixKey(k string) string { i := strings.LastIndex(k, "/") if i >= 0 { k = k[:i] + "_" + k[i+1:] } return k } // REPL performs a Read-Eval-Print-Loop on input reader. // Results are printed to the output writer of the Interpreter, provided as option // at creation time. Errors are printed to the similarly defined errors writer. // The last interpreter result value and error are returned. func (interp *Interpreter) REPL() (reflect.Value, error) { in, out, errs := interp.stdin, interp.stdout, interp.stderr ctx, cancel := context.WithCancel(context.Background()) end := make(chan struct{}) // channel to terminate the REPL sig := make(chan os.Signal, 1) // channel to trap interrupt signal (Ctrl-C) lines := make(chan string) // channel to read REPL input lines prompt := getPrompt(in, out) // prompt activated on tty like IO stream s := bufio.NewScanner(in) // read input stream line by line var v reflect.Value // result value from eval var err error // error from eval src := "" // source string to evaluate signal.Notify(sig, os.Interrupt) defer signal.Stop(sig) prompt(v) go func() { defer close(end) for s.Scan() { lines <- s.Text() } if e := s.Err(); e != nil { fmt.Fprintln(errs, e) } }() go func() { for { select { case <-sig: cancel() lines <- "" case <-end: return } } }() for { var line string select { case <-end: cancel() return v, err case line = <-lines: src += line + "\n" } v, err = interp.EvalWithContext(ctx, src) if err != nil { switch e := err.(type) { case scanner.ErrorList: if len(e) > 0 && ignoreScannerError(e[0], line) { continue } fmt.Fprintln(errs, strings.TrimPrefix(e[0].Error(), DefaultSourceName+":")) case Panic: fmt.Fprintln(errs, e.Value) fmt.Fprintln(errs, string(e.Stack)) default: fmt.Fprintln(errs, err) } } if errors.Is(err, context.Canceled) { ctx, cancel = context.WithCancel(context.Background()) } src = "" prompt(v) } } func doPrompt(out io.Writer) func(v reflect.Value) { return func(v reflect.Value) { if v.IsValid() { fmt.Fprintln(out, ":", v) } fmt.Fprint(out, "> ") } } // getPrompt returns a function which prints a prompt only if input is a terminal. func getPrompt(in io.Reader, out io.Writer) func(reflect.Value) { forcePrompt, _ := strconv.ParseBool(os.Getenv("YAEGI_PROMPT")) if forcePrompt { return doPrompt(out) } s, ok := in.(interface{ Stat() (os.FileInfo, error) }) if !ok { return func(reflect.Value) {} } stat, err := s.Stat() if err == nil && stat.Mode()&os.ModeCharDevice != 0 { return doPrompt(out) } return func(reflect.Value) {} } yaegi-0.16.1/interp/interp_consistent_test.go000066400000000000000000000301361460330105400213350ustar00rootroot00000000000000package interp_test import ( "bytes" "go/build" "io" "os" "os/exec" "path/filepath" "runtime" "strings" "testing" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" "github.com/traefik/yaegi/stdlib/unsafe" ) // The following tests depend on an incompatible language change in go1.22, where `for` variables are now // defined in body (thus reallocated at each loop). We skip them until both supported versions behave the same. // We will remove this in Go1.23. var testsToSkipGo122 = map[string]bool{"closure9.go": true, "closure10.go": true, "closure11.go": true, "closure12.go": true} var go122 = strings.HasPrefix(runtime.Version(), "go1.22") func TestInterpConsistencyBuild(t *testing.T) { if testing.Short() { t.Skip("short mode") } dir := filepath.Join("..", "_test", "tmp") if _, err := os.Stat(dir); os.IsNotExist(err) { if err := os.Mkdir(dir, 0o700); err != nil { t.Fatal(err) } } baseDir := filepath.Join("..", "_test") files, err := os.ReadDir(baseDir) if err != nil { t.Fatal(err) } for _, file := range files { if filepath.Ext(file.Name()) != ".go" || file.Name() == "assign11.go" || // expect error file.Name() == "assign12.go" || // expect error file.Name() == "assign15.go" || // expect error file.Name() == "bad0.go" || // expect error file.Name() == "break0.go" || // expect error file.Name() == "cont3.go" || // expect error file.Name() == "const9.go" || // expect error file.Name() == "export1.go" || // non-main package file.Name() == "export0.go" || // non-main package file.Name() == "for7.go" || // expect error file.Name() == "fun21.go" || // expect error file.Name() == "fun22.go" || // expect error file.Name() == "fun23.go" || // expect error file.Name() == "fun24.go" || // expect error file.Name() == "fun25.go" || // expect error file.Name() == "gen7.go" || // expect error file.Name() == "gen8.go" || // expect error file.Name() == "gen9.go" || // expect error file.Name() == "if2.go" || // expect error file.Name() == "import6.go" || // expect error file.Name() == "init1.go" || // expect error file.Name() == "io0.go" || // use random number file.Name() == "issue-1093.go" || // expect error file.Name() == "issue-1276.go" || // expect error file.Name() == "issue-1330.go" || // expect error file.Name() == "op1.go" || // expect error file.Name() == "op7.go" || // expect error file.Name() == "op9.go" || // expect error file.Name() == "bltn0.go" || // expect error file.Name() == "method16.go" || // private struct field file.Name() == "method39.go" || // expect error file.Name() == "switch8.go" || // expect error file.Name() == "switch9.go" || // expect error file.Name() == "switch13.go" || // expect error file.Name() == "switch19.go" || // expect error file.Name() == "time0.go" || // display time (similar to random number) file.Name() == "factor.go" || // bench file.Name() == "fib.go" || // bench file.Name() == "issue-1618.go" || // bench (infinite running) file.Name() == "type5.go" || // used to illustrate a limitation with no workaround, related to the fact that the reflect package does not allow the creation of named types file.Name() == "type6.go" || // used to illustrate a limitation with no workaround, related to the fact that the reflect package does not allow the creation of named types file.Name() == "redeclaration0.go" || // expect error file.Name() == "redeclaration1.go" || // expect error file.Name() == "redeclaration2.go" || // expect error file.Name() == "redeclaration3.go" || // expect error file.Name() == "redeclaration4.go" || // expect error file.Name() == "redeclaration5.go" || // expect error file.Name() == "redeclaration-global0.go" || // expect error file.Name() == "redeclaration-global1.go" || // expect error file.Name() == "redeclaration-global2.go" || // expect error file.Name() == "redeclaration-global3.go" || // expect error file.Name() == "redeclaration-global4.go" || // expect error file.Name() == "redeclaration-global5.go" || // expect error file.Name() == "redeclaration-global6.go" || // expect error file.Name() == "redeclaration-global7.go" || // expect error file.Name() == "panic0.go" || // expect error file.Name() == "pkgname0.go" || // has deps file.Name() == "pkgname1.go" || // expect error file.Name() == "pkgname2.go" || // has deps file.Name() == "ipp_as_key.go" || // has deps file.Name() == "restricted0.go" || // expect error file.Name() == "restricted1.go" || // expect error file.Name() == "restricted2.go" || // expect error file.Name() == "restricted3.go" || // expect error file.Name() == "server6.go" || // syntax parsing file.Name() == "server5.go" || // syntax parsing file.Name() == "server4.go" || // syntax parsing file.Name() == "server3.go" || // syntax parsing file.Name() == "server2.go" || // syntax parsing file.Name() == "server1a.go" || // syntax parsing file.Name() == "server1.go" || // syntax parsing file.Name() == "server0.go" || // syntax parsing file.Name() == "server.go" || // syntax parsing file.Name() == "range9.go" || // expect error file.Name() == "unsafe6.go" || // needs go.mod to be 1.17 file.Name() == "unsafe7.go" || // needs go.mod to be 1.17 file.Name() == "type24.go" || // expect error file.Name() == "type27.go" || // expect error file.Name() == "type28.go" || // expect error file.Name() == "type29.go" || // expect error file.Name() == "type30.go" || // expect error file.Name() == "type31.go" || // expect error file.Name() == "type32.go" || // expect error file.Name() == "type33.go" { // expect error continue } // Skip some tests which are problematic in go1.21 only. if go121 && testsToSkipGo121[file.Name()] { continue } if go122 && testsToSkipGo122[file.Name()] { continue } file := file t.Run(file.Name(), func(t *testing.T) { filePath := filepath.Join(baseDir, file.Name()) // catch stdout backupStdout := os.Stdout defer func() { os.Stdout = backupStdout }() r, w, _ := os.Pipe() os.Stdout = w i := interp.New(interp.Options{GoPath: build.Default.GOPATH}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if err := i.Use(interp.Symbols); err != nil { t.Fatal(err) } if err := i.Use(unsafe.Symbols); err != nil { t.Fatal(err) } _, err = i.EvalPath(filePath) if err != nil { t.Fatal(err) } // read stdout if err = w.Close(); err != nil { t.Fatal(err) } outInterp, err := io.ReadAll(r) if err != nil { t.Fatal(err) } // restore Stdout os.Stdout = backupStdout bin := filepath.Join(dir, strings.TrimSuffix(file.Name(), ".go")) cmdBuild := exec.Command("go", "build", "-tags=dummy", "-o", bin, filePath) outBuild, err := cmdBuild.CombinedOutput() if err != nil { t.Log(string(outBuild)) t.Fatal(err) } cmd := exec.Command(bin) outRun, err := cmd.CombinedOutput() if err != nil { t.Log(string(outRun)) t.Fatal(err) } if !bytes.Equal(outInterp, outRun) { t.Errorf("\nGot: %q,\n want: %q", string(outInterp), string(outRun)) } }) } } func TestInterpErrorConsistency(t *testing.T) { testCases := []struct { fileName string expectedInterp string expectedStderr string expectedExec string }{ { fileName: "assign11.go", expectedInterp: "6:2: 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:13: assignment mismatch: 3 variables but fmt.Println returns 2 values", }, { fileName: "bad0.go", expectedInterp: "1:1: expected 'package', found println", expectedExec: "1:1: expected 'package', found println", }, { fileName: "break0.go", expectedInterp: "15:5: invalid break label OuterLoop", expectedExec: "15:11: invalid break label OuterLoop", }, { fileName: "cont3.go", expectedInterp: "15:5: invalid continue label OuterLoop", expectedExec: "15:14: invalid continue label OuterLoop", }, { fileName: "const9.go", expectedInterp: "5:2: constant definition loop", expectedExec: "5:2: initialization", }, { fileName: "if2.go", expectedInterp: "7:5: non-bool 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:14: non-boolean condition in for statement", }, { fileName: "fun21.go", expectedInterp: "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:2: not enough arguments in call to time.Date", }, { fileName: "fun23.go", expectedInterp: "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:6: cannot use "a" + b() (value of type string)`, }, { fileName: "op1.go", expectedInterp: "5:2: invalid operation: mismatched types int and untyped float", 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", expectedInterp: "import cycle not allowed", expectedExec: "import cycle not allowed", }, { fileName: "switch8.go", expectedInterp: "5:2: fallthrough statement out of place", expectedExec: "5:2: fallthrough statement out of place", }, { fileName: "switch9.go", expectedInterp: "9:3: cannot fallthrough in type switch", expectedExec: "fallthrough", }, { fileName: "switch13.go", expectedInterp: "9:2: i 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:7: duplicate case Bir in type switch", }, { fileName: "panic0.go", expectedInterp: "stop!", expectedStderr: ` ../_test/panic0.go:16:2: panic: main.baz(...) ../_test/panic0.go:12:2: panic: main.bar(...) ../_test/panic0.go:8:2: panic: main.foo(...) ../_test/panic0.go:4:2: panic: main.main(...) `, }, } for _, test := range testCases { t.Run(test.fileName, func(t *testing.T) { if test.expectedInterp == "" && test.expectedExec == "" { t.Fatal("at least expectedInterp must be defined") } filePath := filepath.Join("..", "_test", test.fileName) var stderr bytes.Buffer i := interp.New(interp.Options{GoPath: build.Default.GOPATH, Stderr: &stderr}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } _, errEval := i.EvalPath(filePath) if errEval == nil { t.Fatal("An error is expected but got none.") } if !strings.Contains(errEval.Error(), test.expectedInterp) { t.Errorf("got %q, want: %q", errEval.Error(), test.expectedInterp) } if test.expectedStderr != "" { exp, got := strings.TrimSpace(test.expectedStderr), strings.TrimSpace(stderr.String()) if exp != got { t.Errorf("got %q, want: %q", got, exp) } } cmd := exec.Command("go", "run", filePath) outRun, errExec := cmd.CombinedOutput() if errExec == nil { t.Log(string(outRun)) t.Fatal("An error is expected but got none.") } if test.expectedExec == "" && !strings.Contains(string(outRun), test.expectedInterp) { t.Errorf("got %q, want: %q", string(outRun), test.expectedInterp) } else if !strings.Contains(string(outRun), test.expectedExec) { t.Errorf("got %q, want: %q", string(outRun), test.expectedExec) } }) } } yaegi-0.16.1/interp/interp_eval_test.go000066400000000000000000001447351460330105400201060ustar00rootroot00000000000000package interp_test import ( "bufio" "bytes" "context" "fmt" "go/build" "go/parser" "io" "log" "net/http" "os" "path/filepath" "reflect" "runtime" "strconv" "strings" "sync" "testing" "time" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func init() { log.SetFlags(log.Lshortfile) } // testCase represents an interpreter test case. // Care must be taken when defining multiple test cases within the same interpreter // context, as all declarations occur in the global scope and are therefore // shared between multiple test cases. // Hint: use different variables or package names in testcases to keep them uncoupled. type testCase struct { desc, src, res, err string skip string // if not empty, skip this test case (used in case of known error) pre func() // functions to execute prior eval src, or nil } func TestEvalArithmetic(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {desc: "add_II", src: "2 + 3", res: "5"}, {desc: "add_FI", src: "2.3 + 3", res: "5.3"}, {desc: "add_IF", src: "2 + 3.3", res: "5.3"}, {desc: "add_SS", src: `"foo" + "bar"`, res: "foobar"}, {desc: "add_SI", src: `"foo" + 1`, err: "1:28: invalid operation: mismatched types untyped string and untyped int"}, {desc: "sub_SS", src: `"foo" - "bar"`, err: "1:28: invalid operation: operator - not defined on untyped string"}, {desc: "sub_II", src: "7 - 3", res: "4"}, {desc: "sub_FI", src: "7.2 - 3", res: "4.2"}, {desc: "sub_IF", src: "7 - 3.2", res: "3.8"}, {desc: "mul_II", src: "2 * 3", res: "6"}, {desc: "mul_FI", src: "2.2 * 3", res: "6.6"}, {desc: "mul_IF", src: "3 * 2.2", res: "6.6"}, {desc: "quo_Z", src: "3 / 0", err: "1:28: invalid operation: division by zero"}, {desc: "rem_FI", src: "8.2 % 4", err: "1:28: invalid operation: operator % not defined on untyped float"}, {desc: "rem_Z", src: "8 % 0", err: "1:28: invalid operation: division by zero"}, {desc: "shl_II", src: "1 << 8", res: "256"}, {desc: "shl_IN", src: "1 << -1", err: "1:28: invalid operation: shift count type untyped int, must be integer"}, {desc: "shl_IF", src: "1 << 1.0", res: "2"}, {desc: "shl_IF1", src: "1 << 1.1", err: "1:28: invalid operation: shift count type untyped float, must be integer"}, {desc: "shl_IF2", src: "1.0 << 1", res: "2"}, {desc: "shr_II", src: "1 >> 8", res: "0"}, {desc: "shr_IN", src: "1 >> -1", err: "1:28: invalid operation: shift count type untyped int, must be integer"}, {desc: "shr_IF", src: "1 >> 1.0", res: "0"}, {desc: "shr_IF1", src: "1 >> 1.1", err: "1:28: invalid operation: shift count type untyped float, must be integer"}, {desc: "neg_I", src: "-2", res: "-2"}, {desc: "pos_I", src: "+2", res: "2"}, {desc: "bitnot_I", src: "^2", res: "-3"}, {desc: "bitnot_F", src: "^0.2", err: "1:28: invalid operation: operator ^ not defined on untyped float"}, {desc: "not_B", src: "!false", res: "true"}, {desc: "not_I", src: "!0", err: "1:28: invalid operation: operator ! not defined on untyped int"}, }) } func TestEvalShift(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: "a, b, m := uint32(1), uint32(2), uint32(0); m = a + (1 << b)", res: "5"}, {src: "c := uint(1); d := uint64(+(-(1 << c)))", res: "18446744073709551614"}, {src: "e, f := uint32(0), uint32(0); f = 1 << -(e * 2)", res: "1"}, {src: "p := uint(0xdead); byte((1 << (p & 7)) - 1)", res: "31"}, {pre: func() { eval(t, i, "const k uint = 1 << 17") }, src: "int(k)", res: "131072"}, }) } func TestOpVarConst(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {pre: func() { eval(t, i, "const a uint = 8 + 2") }, src: "a", res: "10"}, {src: "b := uint(5); a+b", res: "15"}, {src: "b := uint(5); b+a", res: "15"}, {src: "b := uint(5); b>a", res: "false"}, {src: "const maxlen = cap(aa); var aa = []int{1,2}", err: "1:20: constant definition loop"}, }) } func TestEvalStar(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a := &struct{A int}{1}; b := *a`, res: "{1}"}, {src: `a := struct{A int}{1}; b := *a`, err: "1:57: invalid operation: cannot indirect \"a\""}, }) } func TestEvalAssign(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(interp.Exports{ "testpkg/testpkg": { "val": reflect.ValueOf(int64(11)), }, }); err != nil { t.Fatal(err) } _, e := i.Eval(`import "testpkg"`) if e != nil { t.Fatal(e) } runTests(t, i, []testCase{ {src: `a := "Hello"; a += " world"`, res: "Hello world"}, {src: `b := "Hello"; b += 1`, err: "1:42: invalid operation: mismatched types string and untyped int"}, {src: `c := "Hello"; c -= " world"`, err: "1:42: invalid operation: operator -= not defined on string"}, {src: "e := 64.4; e %= 64", err: "1:39: invalid operation: operator %= not defined on float64"}, {src: "f := int64(3.2)", err: "1:39: cannot convert expression of type untyped float to type int64"}, {src: "g := 1; g <<= 8", res: "256"}, {src: "h := 1; h >>= 8", res: "0"}, {src: "i := 1; j := &i; (*j) = 2", res: "2"}, {src: "i64 := testpkg.val; i64 == 11", res: "true"}, {pre: func() { eval(t, i, "k := 1") }, src: `k := "Hello world"`, res: "Hello world"}, // allow reassignment in subsequent evaluations {src: "_ = _", err: "1:28: cannot use _ as value"}, {src: "j := true || _", err: "1:33: cannot use _ as value"}, {src: "j := true && _", err: "1:33: cannot use _ as value"}, {src: "j := interface{}(int(1)); j.(_)", err: "1:54: cannot use _ as value"}, {src: "ff := func() (a, b, c int) {return 1, 2, 3}; x, y, x := ff()", err: "1:73: x repeated on left side of :="}, {src: "xx := 1; xx, _ := 2, 3", err: "1:37: no new variables on left side of :="}, {src: "1 = 2", err: "1:28: cannot assign to 1 (untyped int constant)"}, }) } func TestEvalBuiltin(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a := []int{}; a = append(a, 1); a`, res: "[1]"}, {src: `b := []int{1}; b = append(a, 2, 3); b`, res: "[1 2 3]"}, {src: `c := []int{1}; d := []int{2, 3}; c = append(c, d...); c`, res: "[1 2 3]"}, {src: `string(append([]byte("hello "), "world"...))`, res: "hello world"}, {src: `e := "world"; string(append([]byte("hello "), e...))`, res: "hello world"}, {src: `b := []int{1}; b = append(1, 2, 3); b`, err: "1:54: first argument to append must be slice; have untyped int"}, {src: `a1 := []int{0,1,2}; append(a1)`, res: "[0 1 2]"}, {src: `append(nil)`, err: "first argument to append must be slice; have nil"}, {src: `g := len(a)`, res: "1"}, {src: `g := cap(a)`, res: "1"}, {src: `g := len("test")`, res: "4"}, {src: `g := len(map[string]string{"a": "b"})`, res: "1"}, {src: `n := len()`, err: "not enough arguments in call to len"}, {src: `n := len([]int, 0)`, err: "too many arguments for len"}, {src: `g := cap("test")`, err: "1:37: invalid argument for cap"}, {src: `g := cap(map[string]string{"a": "b"})`, err: "1:37: invalid argument for cap"}, {src: `h := make(chan int, 1); close(h); len(h)`, res: "0"}, {src: `close(a)`, err: "1:34: invalid operation: non-chan type []int"}, {src: `h := make(chan int, 1); var i <-chan int = h; close(i)`, err: "1:80: invalid operation: cannot close receive-only channel"}, {src: `j := make([]int, 2)`, res: "[0 0]"}, {src: `j := make([]int, 2, 3)`, res: "[0 0]"}, {src: `j := make(int)`, err: "1:38: cannot make int; type must be slice, map, or channel"}, {src: `j := make([]int)`, err: "1:33: not enough arguments in call to make"}, {src: `j := make([]int, 0, 1, 2)`, err: "1:33: too many arguments for make"}, {src: `j := make([]int, 2, 1)`, err: "1:33: len larger than cap in make"}, {src: `j := make([]int, "test")`, err: "1:45: cannot convert \"test\" to int"}, {src: `k := []int{3, 4}; copy(k, []int{1,2}); k`, res: "[1 2]"}, {src: `f := []byte("Hello"); copy(f, "world"); string(f)`, res: "world"}, {src: `copy(g, g)`, err: "1:28: copy expects slice arguments"}, {src: `copy(a, "world")`, err: "1:28: arguments to copy have different element types []int and untyped string"}, {src: `l := map[string]int{"a": 1, "b": 2}; delete(l, "a"); l`, res: "map[b:2]"}, {src: `delete(a, 1)`, err: "1:35: first argument to delete must be map; have []int"}, {src: `l := map[string]int{"a": 1, "b": 2}; delete(l, 1)`, err: "1:75: cannot use untyped int as type string in delete"}, {src: `a := []int{1,2}; println(a...)`, err: "invalid use of ... with builtin println"}, {src: `m := complex(3, 2); real(m)`, res: "3"}, {src: `m := complex(3, 2); imag(m)`, res: "2"}, {src: `m := complex("test", 2)`, err: "1:33: invalid types string and int"}, {src: `imag("test")`, err: "1:33: cannot convert untyped string to untyped complex"}, {src: `imag(a)`, err: "1:33: invalid argument type []int for imag"}, {src: `real(a)`, err: "1:33: invalid argument type []int for real"}, {src: `t := map[int]int{}; t[123]++; t`, res: "map[123:1]"}, {src: `t := map[int]int{}; t[123]--; t`, res: "map[123:-1]"}, {src: `t := map[int]int{}; t[123] += 1; t`, res: "map[123:1]"}, {src: `t := map[int]int{}; t[123] -= 1; t`, res: "map[123:-1]"}, {src: `println("hello", _)`, err: "1:28: cannot use _ as value"}, {src: `f := func() complex64 { return complex(0, 0) }()`, res: "(0+0i)"}, {src: `f := func() float32 { return real(complex(2, 1)) }()`, res: "2"}, {src: `f := func() int8 { return imag(complex(2, 1)) }()`, res: "1"}, }) } func TestEvalDecl(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {pre: func() { eval(t, i, "var i int = 2") }, src: "i", res: "2"}, {pre: func() { eval(t, i, "var j, k int = 2, 3") }, src: "j", res: "2"}, {pre: func() { eval(t, i, "var l, m int = 2, 3") }, src: "k", res: "3"}, {pre: func() { eval(t, i, "func f() int {return 4}") }, src: "f()", res: "4"}, {pre: func() { eval(t, i, `package foo; var I = 2`) }, src: "foo.I", res: "2"}, {pre: func() { eval(t, i, `package foo; func F() int {return 5}`) }, src: "foo.F()", res: "5"}, }) } func TestEvalDeclWithExpr(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a1 := ""; var a2 int; a2 = 2`, res: "2"}, {src: `b1 := ""; const b2 = 2; b2`, res: "2"}, {src: `c1 := ""; var c2, c3 [8]byte; c3[3]`, res: "0"}, }) } func TestEvalTypeSpec(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `type _ struct{}`, err: "1:19: cannot use _ as value"}, {src: `a := struct{a, _ int}{32, 0}`, res: "{32 0}"}, {src: "type A int; type A = string", err: "1:31: A redeclared in this block"}, {src: "type B int; type B string", err: "1:31: B redeclared in this block"}, }) } func TestEvalFunc(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `(func () string {return "ok"})()`, res: "ok"}, {src: `(func () (res string) {res = "ok"; return})()`, res: "ok"}, {src: `(func () int {f := func() (a, b int) {a, b = 3, 4; return}; x, y := f(); return x+y})()`, res: "7"}, {src: `(func () int {f := func() (a int, b, c int) {a, b, c = 3, 4, 5; return}; x, y, z := f(); return x+y+z})()`, res: "12"}, {src: `(func () int {f := func() (a, b, c int) {a, b, c = 3, 4, 5; return}; x, y, z := f(); return x+y+z})()`, res: "12"}, {src: `func f() int { return _ }`, err: "1:29: cannot use _ as value"}, {src: `(func (x int) {})(_)`, err: "1:28: cannot use _ as value"}, }) } func TestEvalImport(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } runTests(t, i, []testCase{ {pre: func() { eval(t, i, `import "time"`) }, src: "2 * time.Second", res: "2s"}, }) } func TestEvalStdout(t *testing.T) { var out, err bytes.Buffer i := interp.New(interp.Options{Stdout: &out, Stderr: &err}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } _, e := i.Eval(`import "fmt"; func main() { fmt.Println("hello") }`) if e != nil { t.Fatal(e) } wanted := "hello\n" if res := out.String(); res != wanted { t.Fatalf("got %v, want %v", res, wanted) } } func TestEvalNil(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } runTests(t, i, []testCase{ {desc: "assign nil", src: "a := nil", err: "1:33: use of untyped nil"}, {desc: "return nil", pre: func() { eval(t, i, "func getNil() error {return nil}") }, src: "getNil()", res: ""}, { desc: "return func which return error", pre: func() { eval(t, i, ` package bar func New() func(string) error { return func(v string) error { return nil } } `) v := eval(t, i, `bar.New()`) fn, ok := v.Interface().(func(string) error) if !ok { t.Fatal("conversion failed") } if res := fn("hello"); res != nil { t.Fatalf("got %v, want nil", res) } }, }, { desc: "return nil pointer", pre: func() { eval(t, i, ` import "fmt" type Foo struct{} func Hello() *Foo { fmt.Println("Hello") return nil } `) }, src: "Hello()", res: "", }, { desc: "return nil func", pre: func() { eval(t, i, `func Bar() func() { return nil }`) }, src: "Bar()", res: "", }, }) } func TestEvalStruct0(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ { desc: "func field in struct", pre: func() { eval(t, i, ` type Fromage struct { Name string Call func(string) string } func f() string { a := Fromage{} a.Name = "test" a.Call = func(s string) string { return s } return a.Call(a.Name) } `) }, src: "f()", res: "test", }, { desc: "literal func field in struct", pre: func() { eval(t, i, ` type Fromage2 struct { Name string Call func(string) string } func f2() string { a := Fromage2{ "test", func(s string) string { return s }, } return a.Call(a.Name) } `) }, src: "f2()", res: "test", }, }) } func TestEvalStruct1(t *testing.T) { i := interp.New(interp.Options{}) eval(t, i, ` type Fromage struct { Name string Call func(string) string } func f() string { a := Fromage{ "test", func(s string) string { return s }, } return a.Call(a.Name) } `) v := eval(t, i, `f()`) if v.Interface().(string) != "test" { t.Fatalf("got %v, want test", v) } } func TestEvalComposite0(t *testing.T) { i := interp.New(interp.Options{}) eval(t, i, ` type T struct { a, b, c, d, e, f, g, h, i, j, k, l, m, n string o map[string]int p []string } var a = T{ o: map[string]int{"truc": 1, "machin": 2}, p: []string{"hello", "world"}, } `) v := eval(t, i, `a.p[1]`) if v.Interface().(string) != "world" { t.Fatalf("got %v, want word", v) } } func TestEvalCompositeBin0(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } eval(t, i, ` import ( "fmt" "net/http" "time" ) func Foo() { http.DefaultClient = &http.Client{Timeout: 2 * time.Second} } `) http.DefaultClient = &http.Client{} eval(t, i, `Foo()`) if http.DefaultClient.Timeout != 2*time.Second { t.Fatalf("got %v, want 2s", http.DefaultClient.Timeout) } } func TestEvalComparison(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `2 > 1`, res: "true"}, {src: `1.2 > 1.1`, res: "true"}, {src: `"hhh" > "ggg"`, res: "true"}, {src: `a, b, c := 1, 1, false; if a == b { c = true }; c`, res: "true"}, {src: `a, b, c := 1, 2, false; if a != b { c = true }; c`, res: "true"}, { desc: "mismatched types equality", src: ` type Foo string type Bar string var a = Foo("test") var b = Bar("test") var c = a == b `, err: "7:13: invalid operation: mismatched types main.Foo and main.Bar", }, { desc: "mismatched types less than", src: ` type Foo string type Bar string var a = Foo("test") var b = Bar("test") var c = a < b `, err: "7:13: invalid operation: mismatched types main.Foo and main.Bar", }, {src: `1 > _`, err: "1:28: cannot use _ as value"}, {src: `(_) > 1`, err: "1:28: cannot use _ as value"}, {src: `v := interface{}(2); v == 2`, res: "true"}, {src: `v := interface{}(2); v > 1`, err: "1:49: invalid operation: operator > not defined on interface{}"}, {src: `v := interface{}(int64(2)); v == 2`, res: "false"}, {src: `v := interface{}(int64(2)); v != 2`, res: "true"}, {src: `v := interface{}(2.3); v == 2.3`, res: "true"}, {src: `v := interface{}(float32(2.3)); v != 2.3`, res: "true"}, {src: `v := interface{}("hello"); v == "hello"`, res: "true"}, {src: `v := interface{}("hello"); v < "hellp"`, err: "1:55: invalid operation: operator < not defined on interface{}"}, }) } func TestEvalCompositeArray(t *testing.T) { i := interp.New(interp.Options{}) eval(t, i, `const l = 10`) runTests(t, i, []testCase{ {src: "a := []int{1, 2, 7: 20, 30}", res: "[1 2 0 0 0 0 0 20 30]"}, {src: `a := []int{1, 1.2}`, err: "1:42: 6/5 truncated to int"}, {src: `a := []int{0:1, 0:1}`, err: "1:46: duplicate index 0 in array or slice literal"}, {src: `a := []int{1.1:1, 1.2:"test"}`, err: "1:39: index untyped float must be integer constant"}, {src: `a := [2]int{1, 1.2}`, err: "1:43: 6/5 truncated to int"}, {src: `a := [1]int{1, 2}`, err: "1:43: index 1 is out of bounds (>= 1)"}, {src: `b := [l]int{1, 2}`, res: "[1 2 0 0 0 0 0 0 0 0]"}, {src: `i := 10; a := [i]int{1, 2}`, err: "1:43: non-constant array bound \"i\""}, {src: `c := [...]float64{1, 3: 3.4, 5}`, res: "[1 0 0 3.4 5]"}, }) } func TestEvalCompositeMap(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a := map[string]int{"one":1, "two":2}`, res: "map[one:1 two:2]"}, {src: `a := map[string]int{1:1, 2:2}`, err: "1:48: cannot convert 1 to string"}, {src: `a := map[string]int{"one":1, "two":2.2}`, err: "1:63: 11/5 truncated to int"}, {src: `a := map[string]int{1, "two":2}`, err: "1:48: missing key in map literal"}, {src: `a := map[string]int{"one":1, "one":2}`, err: "1:57: duplicate key one in map literal"}, }) } func TestEvalCompositeStruct(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a := struct{A,B,C int}{}`, res: "{0 0 0}"}, {src: `a := struct{A,B,C int}{1,2,3}`, res: "{1 2 3}"}, {src: `a := struct{A,B,C int}{1,2.2,3}`, err: "1:53: 11/5 truncated to int"}, {src: `a := struct{A,B,C int}{1,2}`, err: "1:53: too few values in struct literal"}, {src: `a := struct{A,B,C int}{1,2,3,4}`, err: "1:57: too many values in struct literal"}, {src: `a := struct{A,B,C int}{1,B:2,3}`, err: "1:53: mixture of field:value and value elements in struct literal"}, {src: `a := struct{A,B,C int}{A:1,B:2,C:3}`, res: "{1 2 3}"}, {src: `a := struct{A,B,C int}{B:2}`, res: "{0 2 0}"}, {src: `a := struct{A,B,C int}{A:1,D:2,C:3}`, err: "1:55: unknown field D in struct literal"}, {src: `a := struct{A,B,C int}{A:1,A:2,C:3}`, err: "1:55: duplicate field name A in struct literal"}, {src: `a := struct{A,B,C int}{A:1,B:2.2,C:3}`, err: "1:57: 11/5 truncated to int"}, {src: `a := struct{A,B,C int}{A:1,2,C:3}`, err: "1:55: mixture of field:value and value elements in struct literal"}, {src: `a := struct{A,B,C int}{1,2,_}`, err: "1:33: cannot use _ as value"}, {src: `a := struct{A,B,C int}{B: _}`, err: "1:51: cannot use _ as value"}, }) } func TestEvalSliceExpression(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a := []int{0,1,2}[1:3]`, res: "[1 2]"}, {src: `a := []int{0,1,2}[:3]`, res: "[0 1 2]"}, {src: `a := []int{0,1,2}[:]`, res: "[0 1 2]"}, {src: `a := []int{0,1,2,3}[1:3:4]`, res: "[1 2]"}, {src: `a := []int{0,1,2,3}[:3:4]`, res: "[0 1 2]"}, {src: `ar := [3]int{0,1,2}; a := ar[1:3]`, res: "[1 2]"}, {src: `a := (&[3]int{0,1,2})[1:3]`, res: "[1 2]"}, {src: `a := (&[3]int{0,1,2})[1:3]`, res: "[1 2]"}, {src: `s := "hello"[1:3]`, res: "el"}, {src: `str := "hello"; s := str[1:3]`, res: "el"}, {src: `a := int(1)[0:1]`, err: "1:33: cannot slice type int"}, {src: `a := (&[]int{0,1,2,3})[1:3]`, err: "1:33: cannot slice type *[]int"}, {src: `a := "hello"[1:3:4]`, err: "1:45: invalid operation: 3-index slice of string"}, {src: `ar := [3]int{0,1,2}; a := ar[:4]`, err: "1:58: index int is out of bounds"}, {src: `a := []int{0,1,2,3}[1::4]`, err: "index required in 3-index slice"}, {src: `a := []int{0,1,2,3}[1:3:]`, err: "index required in 3-index slice"}, {src: `a := []int{0,1,2}[3:1]`, err: "invalid index values, must be low <= high <= max"}, {pre: func() { eval(t, i, `type Str = string; var r Str = "truc"`) }, src: `r[1]`, res: "114"}, {src: `_[12]`, err: "1:28: cannot use _ as value"}, {src: `b := []int{0,1,2}[_:4]`, err: "1:33: cannot use _ as value"}, }) } func TestEvalConversion(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: `a := uint64(1)`, res: "1"}, {src: `i := 1.1; a := uint64(i)`, res: "1"}, {src: `b := string(49)`, res: "1"}, {src: `c := uint64(1.1)`, err: "1:40: cannot convert expression of type untyped float to type uint64"}, {src: `int(_)`, err: "1:28: cannot use _ as value"}, }) } func TestEvalUnary(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: "a := -1", res: "-1"}, {src: "b := +1", res: "1", skip: "BUG"}, {src: "c := !false", res: "true"}, {src: "_ = 2; _++", err: "1:35: cannot use _ as value"}, {src: "_ = false; !_ == true", err: "1:39: cannot use _ as value"}, {src: "!((((_))))", err: "1:28: cannot use _ as value"}, }) } func TestEvalMethod(t *testing.T) { i := interp.New(interp.Options{}) eval(t, i, ` type Root struct { Name string } type One struct { Root } type Hi interface { Hello() string } type Hey interface { Hello() string } func (r *Root) Hello() string { return "Hello " + r.Name } var r = Root{"R"} var o = One{r} // TODO(mpl): restore empty interfaces when type assertions work (again) on them. // var root interface{} = &Root{Name: "test1"} // var one interface{} = &One{Root{Name: "test2"}} var root Hey = &Root{Name: "test1"} var one Hey = &One{Root{Name: "test2"}} `) runTests(t, i, []testCase{ {src: "r.Hello()", res: "Hello R"}, {src: "(&r).Hello()", res: "Hello R"}, {src: "o.Hello()", res: "Hello R"}, {src: "(&o).Hello()", res: "Hello R"}, {src: "root.(Hi).Hello()", res: "Hello test1"}, {src: "one.(Hi).Hello()", res: "Hello test2"}, }) } func TestEvalChan(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ { src: `(func () string { messages := make(chan string) go func() { messages <- "ping" }() msg := <-messages return msg })()`, res: "ping", }, { src: `(func () bool { messages := make(chan string) go func() { messages <- "ping" }() msg, ok := <-messages return ok && msg == "ping" })()`, res: "true", }, { src: `(func () bool { messages := make(chan string) go func() { messages <- "ping" }() var msg string var ok bool msg, ok = <-messages return ok && msg == "ping" })()`, res: "true", }, {src: `a :=5; a <- 4`, err: "cannot send to non-channel int"}, {src: `a :=5; b := <-a`, err: "cannot receive from non-channel int"}, }) } func TestEvalFunctionCallWithFunctionParam(t *testing.T) { i := interp.New(interp.Options{}) eval(t, i, ` func Bar(s string, fn func(string)string) string { return fn(s) } `) v := eval(t, i, "Bar") bar := v.Interface().(func(string, func(string) string) string) got := bar("hello ", func(s string) string { return s + "world!" }) want := "hello world!" if got != want { t.Errorf("unexpected result of function eval: got %q, want %q", got, want) } } func TestEvalCall(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: ` test := func(a int, b float64) int { return a } a := test(1, 2.3)`, res: "1"}, {src: ` test := func(a int, b float64) int { return a } a := test(1)`, err: "2:10: not enough arguments in call to test"}, {src: ` test := func(a int, b float64) int { return a } s := "test" a := test(1, s)`, err: "3:18: cannot use type string as type float64"}, {src: ` test := func(a ...int) int { return 1 } a := test([]int{1}...)`, res: "1"}, {src: ` test := func(a ...int) int { return 1 } a := test()`, res: "1"}, {src: ` test := func(a ...int) int { return 1 } blah := func() []int { return []int{1,1} } a := test(blah()...)`, res: "1"}, {src: ` test := func(a ...int) int { return 1 } a := test([]string{"1"}...)`, err: "2:15: cannot use []string as type []int"}, {src: ` test := func(a ...int) int { return 1 } i := 1 a := test(i...)`, err: "3:15: cannot use int as type []int"}, {src: ` test := func(a int) int { return a } a := test([]int{1}...)`, err: "2:10: invalid use of ..., corresponding parameter is non-variadic"}, {src: ` test := func(a ...int) int { return 1 } blah := func() (int, int) { return 1, 1 } a := test(blah()...)`, err: "3:15: cannot use ... with 2-valued func() (int,int)"}, {src: ` test := func(a, b int) int { return a } blah := func() (int, int) { return 1, 1 } a := test(blah())`, res: "1"}, {src: ` test := func(a, b int) int { return a } blah := func() int { return 1 } a := test(blah(), blah())`, res: "1"}, {src: ` test := func(a, b, c, d int) int { return a } blah := func() (int, int) { return 1, 1 } a := test(blah(), blah())`, err: "3:15: cannot use func() (int,int) as type int"}, {src: ` test := func(a, b int) int { return a } blah := func() (int, float64) { return 1, 1.1 } a := test(blah())`, err: "3:15: cannot use func() (int,float64) as type (int,int)"}, {src: "func f()", err: "missing function body"}, }) } func TestEvalBinCall(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if _, err := i.Eval(`import "fmt"`); err != nil { t.Fatal(err) } runTests(t, i, []testCase{ {src: `a := fmt.Sprint(1, 2.3)`, res: "1 2.3"}, {src: `a := fmt.Sprintf()`, err: "1:33: not enough arguments in call to fmt.Sprintf"}, {src: `i := 1 a := fmt.Sprintf(i)`, err: "2:24: cannot use type int as type string"}, {src: `a := fmt.Sprint()`, res: ""}, }) } func TestEvalReflect(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if _, err := i.Eval(` import ( "net/url" "reflect" ) type Encoder interface { EncodeValues(key string, v *url.Values) error } `); err != nil { t.Fatal(err) } runTests(t, i, []testCase{ {src: "reflect.TypeOf(new(Encoder)).Elem()", res: "interp.valueInterface"}, }) } func TestEvalMissingSymbol(t *testing.T) { defer func() { r := recover() if r != nil { t.Errorf("unexpected panic: %v", r) } }() type S2 struct{} type S1 struct { F S2 } i := interp.New(interp.Options{}) if err := i.Use(interp.Exports{"p/p": map[string]reflect.Value{ "S1": reflect.Zero(reflect.TypeOf(&S1{})), }}); err != nil { t.Fatal(err) } _, err := i.Eval(`import "p"`) if err != nil { t.Fatalf("failed to import package: %v", err) } _, err = i.Eval(`p.S1{F: p.S2{}}`) if err == nil { t.Error("unexpected nil error for expression with undefined type") } } func TestEvalWithContext(t *testing.T) { tests := []testCase{ { desc: "for {}", src: `(func() { for {} })()`, }, { desc: "select {}", src: `(func() { select {} })()`, }, { desc: "blocked chan send", src: `(func() { c := make(chan int) c <- 1 })()`, }, { desc: "blocked chan recv", src: `(func() { c := make(chan int) <-c })()`, }, { desc: "blocked chan recv2", src: `(func() { c := make(chan int) _, _ = <-c })()`, }, { desc: "blocked range chan", src: `(func() { c := make(chan int) for range c {} })()`, }, { desc: "double lock", src: `(func() { var mu sync.Mutex mu.Lock() mu.Lock() })()`, }, } for _, test := range tests { done := make(chan struct{}) src := test.src go func() { defer close(done) i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Error(err) } _, err := i.Eval(`import "sync"`) if err != nil { t.Errorf(`failed to import "sync": %v`, err) return } ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond) defer cancel() _, err = i.EvalWithContext(ctx, src) switch err { case context.DeadlineExceeded: // Successful cancellation. // Check we can still execute an expression. v, err := i.EvalWithContext(context.Background(), "1+1\n") if err != nil { t.Errorf("failed to evaluate expression after cancellation: %v", err) } got := v.Interface() if got != 2 { t.Errorf("unexpected result of eval(1+1): got %v, want 2", got) } case nil: t.Errorf("unexpected success evaluating expression %q", test.desc) default: t.Errorf("failed to evaluate expression %q: %v", test.desc, err) } }() select { case <-time.After(time.Second): t.Errorf("timeout failed to terminate execution of %q", test.desc) case <-done: } } } func runTests(t *testing.T, i *interp.Interpreter, tests []testCase) { t.Helper() for _, test := range tests { t.Run(test.desc, func(t *testing.T) { if test.skip != "" { t.Skip(test.skip) } if test.pre != nil { test.pre() } if test.src != "" { assertEval(t, i, test.src, test.err, test.res) } }) } } func eval(t *testing.T, i *interp.Interpreter, src string) reflect.Value { t.Helper() res, err := i.Eval(src) if err != nil { t.Logf("Error: %v", err) if e, ok := err.(interp.Panic); ok { t.Logf(string(e.Stack)) } t.FailNow() } return res } func assertEval(t *testing.T, i *interp.Interpreter, src, expectedError, expectedRes string) { t.Helper() res, err := i.Eval(src) if expectedError != "" { if err == nil || !strings.Contains(err.Error(), expectedError) { t.Fatalf("got %v, want %s", err, expectedError) } return } if err != nil { t.Logf("got an error: %v", err) if e, ok := err.(interp.Panic); ok { t.Logf(string(e.Stack)) } t.FailNow() } if fmt.Sprintf("%v", res) != expectedRes { t.Fatalf("got %v, want %s", res, expectedRes) } } func TestMultiEval(t *testing.T) { t.Skip("fail in CI only ?") // catch stdout backupStdout := os.Stdout defer func() { os.Stdout = backupStdout }() r, w, _ := os.Pipe() os.Stdout = w i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } f, err := os.Open(filepath.Join("testdata", "multi", "731")) if err != nil { t.Fatal(err) } names, err := f.Readdirnames(-1) if err != nil { t.Fatal(err) } for _, v := range names { if _, err := i.EvalPath(filepath.Join(f.Name(), v)); err != nil { t.Fatal(err) } } // read stdout if err = w.Close(); err != nil { t.Fatal(err) } outInterp, err := io.ReadAll(r) if err != nil { t.Fatal(err) } // restore Stdout os.Stdout = backupStdout want := "A\nB\n" got := string(outInterp) if got != want { t.Fatalf("unexpected output: got %v, wanted %v", got, want) } } func TestMultiEvalNoName(t *testing.T) { t.Skip("fail in CI only ?") i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } f, err := os.Open(filepath.Join("testdata", "multi", "731")) if err != nil { t.Fatal(err) } names, err := f.Readdirnames(-1) if err != nil { t.Fatal(err) } for k, v := range names { data, err := os.ReadFile(filepath.Join(f.Name(), v)) if err != nil { t.Fatal(err) } _, err = i.Eval(string(data)) if k == 1 { expectedErr := fmt.Errorf("3:8: fmt/%s redeclared in this block", interp.DefaultSourceName) if err == nil || err.Error() != expectedErr.Error() { t.Fatalf("unexpected result; wanted error %v, got %v", expectedErr, err) } return } if err != nil { t.Fatal(err) } } } const goMinorVersionTest = 16 func TestHasIOFS(t *testing.T) { code := ` // +build go1.18 package main import ( "errors" "io/fs" ) func main() { pe := fs.PathError{} pe.Op = "nothing" pe.Path = "/nowhere" pe.Err = errors.New("an error") println(pe.Error()) } // Output: // nothing /nowhere: an error ` var buf bytes.Buffer i := interp.New(interp.Options{Stdout: &buf}) if err := i.Use(interp.Symbols); err != nil { t.Fatal(err) } if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if _, err := i.Eval(code); err != nil { t.Fatal(err) } var expectedOutput string 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 { v := strings.Split(version, ".") if len(v) < 2 { t.Fatalf("unexpected: %v", version) } minor, err = strconv.Atoi(v[1]) if err != nil { t.Fatal(err) } } else { // Go devel if fields[0] != "devel" { t.Fatalf("unexpected: %v", fields[0]) } parts := strings.Split(fields[1], "-") if len(parts) != 2 { t.Fatalf("unexpected: %v", fields[1]) } minor, err = strconv.Atoi(strings.TrimPrefix(parts[0], "go1.")) if err != nil { t.Fatal(err) } } if minor >= goMinorVersionTest { expectedOutput = "nothing /nowhere: an error\n" } output := buf.String() if buf.String() != expectedOutput { t.Fatalf("got: %v, wanted: %v", output, expectedOutput) } } func TestImportPathIsKey(t *testing.T) { // FIXME(marc): support of stdlib generic packages like "cmp", "maps", "slices" has changed // the scope layout by introducing new source packages when stdlib is used. // The logic of the following test doesn't apply anymore. t.Skip("This test needs to be reworked.") // No need to check the results of Eval, as TestFile already does it. i := interp.New(interp.Options{GoPath: filepath.FromSlash("../_test/testdata/redeclaration-global7")}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } filePath := filepath.Join("..", "_test", "ipp_as_key.go") if _, err := i.EvalPath(filePath); err != nil { t.Fatal(err) } wantScopes := map[string][]string{ "main": { "titi/ipp_as_key.go", "tutu/ipp_as_key.go", "main", }, "guthib.com/toto": { "quux/titi.go", "Quux", }, "guthib.com/bar": { "Quux", }, "guthib.com/tata": { "quux/tutu.go", "Quux", }, "guthib.com/baz": { "Quux", }, } wantPackages := map[string]string{ "guthib.com/baz": "quux", "guthib.com/tata": "tutu", "main": "main", "guthib.com/bar": "quux", "guthib.com/toto": "titi", } scopes := i.Scopes() if len(scopes) != len(wantScopes) { t.Fatalf("want %d, got %d", len(wantScopes), len(scopes)) } for k, v := range scopes { wantSym := wantScopes[k] if len(v) != len(wantSym) { t.Fatalf("want %d, got %d", len(wantSym), len(v)) } for _, sym := range wantSym { if _, ok := v[sym]; !ok { t.Fatalf("symbol %s not found in scope %s", sym, k) } } } packages := i.Packages() for k, v := range wantPackages { pkg := packages[k] if pkg != v { t.Fatalf("for import path %s, want %s, got %s", k, v, pkg) } } } // The code in hello1.go and hello2.go spawns a "long-running" goroutine, which // means each call to EvalPath actually terminates before the evaled code is done // running. So this test demonstrates: // 1) That two sequential calls to EvalPath don't see their "compilation phases" // collide (no data race on the fields of the interpreter), which is somewhat // obvious since the calls (and hence the "compilation phases") are sequential too. // 2) That two concurrent goroutine runs spawned by the same interpreter do not // collide either. func TestConcurrentEvals(t *testing.T) { if testing.Short() { return } pin, pout := io.Pipe() defer func() { _ = pin.Close() _ = pout.Close() }() interpr := interp.New(interp.Options{Stdout: pout}) if err := interpr.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if _, err := interpr.EvalPath("testdata/concurrent/hello1.go"); err != nil { t.Fatal(err) } if _, err := interpr.EvalPath("testdata/concurrent/hello2.go"); err != nil { t.Fatal(err) } c := make(chan error) go func() { hello1, hello2 := false, false sc := bufio.NewScanner(pin) for sc.Scan() { l := sc.Text() switch l { case "hello world1": hello1 = true case "hello world2": hello2 = true case "hello world1hello world2", "hello world2hello world1": hello1 = true hello2 = true default: c <- fmt.Errorf("unexpected output: %v", l) return } if hello1 && hello2 { break } } c <- nil }() timeout := time.NewTimer(5 * time.Second) select { case <-timeout.C: t.Fatal("timeout") case err := <-c: if err != nil { t.Fatal(err) } } } // TestConcurrentEvals2 shows that even though EvalWithContext calls Eval in a // goroutine, it indeed waits for Eval to terminate, and that therefore the code // called by EvalWithContext is sequential. And that there is no data race for the // interp package global vars or the interpreter fields in this case. func TestConcurrentEvals2(t *testing.T) { if testing.Short() { return } pin, pout := io.Pipe() defer func() { _ = pin.Close() _ = pout.Close() }() interpr := interp.New(interp.Options{Stdout: pout}) if err := interpr.Use(stdlib.Symbols); err != nil { t.Fatal(err) } done := make(chan error) go func() { hello1 := false sc := bufio.NewScanner(pin) for sc.Scan() { l := sc.Text() if hello1 { if l == "hello world2" { break } done <- fmt.Errorf("unexpected output: %v", l) return } if l == "hello world1" { hello1 = true } else { done <- fmt.Errorf("unexpected output: %v", l) return } } done <- nil }() ctx := context.Background() if _, err := interpr.EvalWithContext(ctx, `import "time"`); err != nil { t.Fatal(err) } if _, err := interpr.EvalWithContext(ctx, `time.Sleep(time.Second); println("hello world1")`); err != nil { t.Fatal(err) } if _, err := interpr.EvalWithContext(ctx, `time.Sleep(time.Second); println("hello world2")`); err != nil { t.Fatal(err) } timeout := time.NewTimer(5 * time.Second) select { case <-timeout.C: t.Fatal("timeout") case err := <-done: if err != nil { t.Fatal(err) } } } // TestConcurrentEvals3 makes sure that we don't regress into data races at the package level, i.e from: // - global vars, which should obviously not be mutated. // - when calling Interpreter.Use, the symbols given as argument should be // copied when being inserted into interp.binPkg, and not directly used as-is. func TestConcurrentEvals3(t *testing.T) { if testing.Short() { return } allDone := make(chan bool) runREPL := func() { done := make(chan error) pinin, poutin := io.Pipe() pinout, poutout := io.Pipe() i := interp.New(interp.Options{Stdin: pinin, Stdout: poutout}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } go func() { _, _ = i.REPL() }() input := []string{ `hello one`, `hello two`, `hello three`, } go func() { sc := bufio.NewScanner(pinout) k := 0 for sc.Scan() { l := sc.Text() if l != input[k] { done <- fmt.Errorf("unexpected output, want %q, got %q", input[k], l) return } k++ if k > 2 { break } } done <- nil }() for _, v := range input { in := strings.NewReader(fmt.Sprintf("println(%q)\n", v)) if _, err := io.Copy(poutin, in); err != nil { t.Fatal(err) } time.Sleep(time.Second) } if err := <-done; err != nil { t.Fatal(err) } _ = pinin.Close() _ = poutin.Close() _ = pinout.Close() _ = poutout.Close() allDone <- true } for i := 0; i < 2; i++ { go func() { runREPL() }() } timeout := time.NewTimer(10 * time.Second) for i := 0; i < 2; i++ { select { case <-allDone: case <-timeout.C: t.Fatal("timeout") } } } func TestConcurrentComposite1(t *testing.T) { testConcurrentComposite(t, "./testdata/concurrent/composite/composite_lit.go") } func TestConcurrentComposite2(t *testing.T) { testConcurrentComposite(t, "./testdata/concurrent/composite/composite_sparse.go") } func testConcurrentComposite(t *testing.T, filePath string) { t.Helper() if testing.Short() { return } pin, pout := io.Pipe() i := interp.New(interp.Options{Stdout: pout}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } errc := make(chan error) var output string go func() { sc := bufio.NewScanner(pin) k := 0 for sc.Scan() { output += sc.Text() k++ if k > 1 { break } } errc <- nil }() if _, err := i.EvalPath(filePath); err != nil { t.Fatal(err) } _ = pin.Close() _ = pout.Close() if err := <-errc; err != nil { t.Fatal(err) } expected := "{hello}{hello}" if output != expected { t.Fatalf("unexpected output, want %q, got %q", expected, output) } } func TestEvalREPL(t *testing.T) { if testing.Short() { return } type testCase struct { desc string src []string errorLine int } tests := []testCase{ { desc: "no error", src: []string{ `func main() {`, `println("foo")`, `}`, }, errorLine: -1, }, { desc: "no parsing error, but block error", src: []string{ `func main() {`, `println(foo)`, `}`, }, errorLine: 2, }, { desc: "parsing error", src: []string{ `func main() {`, `println(/foo)`, `}`, }, errorLine: 1, }, { desc: "multi-line string literal", src: []string{ "var a = `hello", "there, how", "are you?`", }, errorLine: -1, }, { desc: "multi-line comma operand", src: []string{ `println(2,`, `3)`, }, errorLine: -1, }, { desc: "multi-line arithmetic operand", src: []string{ `println(2. /`, `3.)`, }, errorLine: -1, }, { desc: "anonymous func call with no assignment", src: []string{ `func() { println(3) }()`, }, errorLine: -1, }, { // to make sure that special handling of the above anonymous, does not break this general case. desc: "just func", src: []string{ `func foo() { println(3) }`, }, errorLine: -1, }, { // to make sure that special handling of the above anonymous, does not break this general case. desc: "just method", src: []string{ `type bar string`, `func (b bar) foo() { println(3) }`, }, errorLine: -1, }, { desc: "define a label", src: []string{ `a:`, }, errorLine: -1, }, } runREPL := func(t *testing.T, test testCase) { // TODO(mpl): use a pipe for the output as well, just as in TestConcurrentEvals5 var stdout bytes.Buffer safeStdout := &safeBuffer{buf: &stdout} var stderr bytes.Buffer safeStderr := &safeBuffer{buf: &stderr} pin, pout := io.Pipe() i := interp.New(interp.Options{Stdin: pin, Stdout: safeStdout, Stderr: safeStderr}) defer func() { // Closing the pipe also takes care of making i.REPL terminate, // hence freeing its goroutine. _ = pin.Close() _ = pout.Close() }() go func() { _, _ = i.REPL() }() for k, v := range test.src { if _, err := pout.Write([]byte(v + "\n")); err != nil { t.Error(err) } Sleep(100 * time.Millisecond) errMsg := safeStderr.String() if k == test.errorLine { if errMsg == "" { t.Fatalf("test %q: statement %q should have produced an error", test.desc, v) } break } if errMsg != "" { t.Fatalf("test %q: unexpected error: %v", test.desc, errMsg) } } } for _, test := range tests { runREPL(t, test) } } type safeBuffer struct { mu sync.RWMutex buf *bytes.Buffer } func (sb *safeBuffer) Read(p []byte) (int, error) { return sb.buf.Read(p) } func (sb *safeBuffer) String() string { sb.mu.RLock() defer sb.mu.RUnlock() return sb.buf.String() } func (sb *safeBuffer) Write(p []byte) (int, error) { sb.mu.Lock() defer sb.mu.Unlock() return sb.buf.Write(p) } const ( // CITimeoutMultiplier is the multiplier for all timeouts in the CI. CITimeoutMultiplier = 3 ) // Sleep pauses the current goroutine for at least the duration d. func Sleep(d time.Duration) { d = applyCIMultiplier(d) time.Sleep(d) } func applyCIMultiplier(timeout time.Duration) time.Duration { ci := os.Getenv("CI") if ci == "" { return timeout } b, err := strconv.ParseBool(ci) if err != nil || !b { return timeout } return time.Duration(float64(timeout) * CITimeoutMultiplier) } func TestREPLCommands(t *testing.T) { if testing.Short() { return } t.Setenv("YAEGI_PROMPT", "1") // To force prompts over non-tty streams allDone := make(chan bool) runREPL := func() { done := make(chan error) pinin, poutin := io.Pipe() pinout, poutout := io.Pipe() i := interp.New(interp.Options{Stdin: pinin, Stdout: poutout}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } go func() { _, _ = i.REPL() }() defer func() { _ = pinin.Close() _ = poutin.Close() _ = pinout.Close() _ = poutout.Close() allDone <- true }() input := []string{ `1/1`, `7/3`, `16/5`, `3./2`, // float `reflect.TypeOf(math_rand.Int)`, `reflect.TypeOf(crypto_rand.Int)`, } output := []string{ `1`, `2`, `3`, `1.5`, `func() int`, `func(io.Reader, *big.Int) (*big.Int, error)`, } go func() { sc := bufio.NewScanner(pinout) k := 0 for sc.Scan() { l := sc.Text() if l != "> : "+output[k] { done <- fmt.Errorf("unexpected output, want %q, got %q", output[k], l) return } k++ if k > 3 { break } } done <- nil }() for _, v := range input { in := strings.NewReader(v + "\n") if _, err := io.Copy(poutin, in); err != nil { t.Fatal(err) } select { case err := <-done: if err != nil { t.Fatal(err) } return default: time.Sleep(time.Second) } } if err := <-done; err != nil { t.Fatal(err) } } go func() { runREPL() }() timeout := time.NewTimer(10 * time.Second) select { case <-allDone: case <-timeout.C: t.Fatal("timeout") } } func TestStdio(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } i.ImportUsed() if _, err := i.Eval(`var x = os.Stdout`); err != nil { t.Fatal(err) } v, _ := i.Eval(`x`) if _, ok := v.Interface().(*os.File); !ok { t.Fatalf("%v not *os.file", v.Interface()) } } func TestNoGoFiles(t *testing.T) { i := interp.New(interp.Options{GoPath: build.Default.GOPATH}) _, err := i.Eval(`import "github.com/traefik/yaegi/_test/p3"`) if strings.Contains(err.Error(), "no Go files in") { return } t.Fatalf("failed to detect no Go files: %v", err) } func TestIssue1142(t *testing.T) { i := interp.New(interp.Options{}) runTests(t, i, []testCase{ {src: "a := 1; // foo bar", res: "1"}, }) } type Issue1149Array [3]float32 func (v Issue1149Array) Foo() string { return "foo" } func (v *Issue1149Array) Bar() string { return "foo" } func TestIssue1149(t *testing.T) { i := interp.New(interp.Options{}) if err := i.Use(interp.Exports{ "pkg/pkg": map[string]reflect.Value{ "Type": reflect.ValueOf((*Issue1149Array)(nil)), }, }); err != nil { t.Fatal(err) } i.ImportUsed() _, err := i.Eval(` type Type = pkg.Type `) if err != nil { t.Fatal(err) } runTests(t, i, []testCase{ {src: "Type{1, 2, 3}.Foo()", res: "foo"}, {src: "Type{1, 2, 3}.Bar()", res: "foo"}, }) } func TestIssue1150(t *testing.T) { i := interp.New(interp.Options{}) _, err := i.Eval(` type ArrayT [3]float32 type SliceT []float32 type StructT struct { A, B, C float32 } type StructT2 struct { A, B, C float32 } type FooerT interface { Foo() string } func (v ArrayT) Foo() string { return "foo" } func (v SliceT) Foo() string { return "foo" } func (v StructT) Foo() string { return "foo" } func (v *StructT2) Foo() string { return "foo" } type Array = ArrayT type Slice = SliceT type Struct = StructT type Struct2 = StructT2 type Fooer = FooerT `) if err != nil { t.Fatal(err) } runTests(t, i, []testCase{ {desc: "array", src: "Array{1, 2, 3}.Foo()", res: "foo"}, {desc: "slice", src: "Slice{1, 2, 3}.Foo()", res: "foo"}, {desc: "struct", src: "Struct{1, 2, 3}.Foo()", res: "foo"}, {desc: "*struct", src: "Struct2{1, 2, 3}.Foo()", res: "foo"}, {desc: "interface", src: "v := Fooer(Array{1, 2, 3}); v.Foo()", res: "foo"}, }) } func TestIssue1151(t *testing.T) { type pkgStruct struct{ X int } type pkgArray [1]int i := interp.New(interp.Options{}) if err := i.Use(interp.Exports{ "pkg/pkg": map[string]reflect.Value{ "Struct": reflect.ValueOf((*pkgStruct)(nil)), "Array": reflect.ValueOf((*pkgArray)(nil)), }, }); err != nil { t.Fatal(err) } i.ImportUsed() runTests(t, i, []testCase{ {src: "x := pkg.Struct{1}", res: "{1}"}, {src: "x := pkg.Array{1}", res: "[1]"}, }) } func TestPassArgs(t *testing.T) { i := interp.New(interp.Options{Args: []string{"arg0", "arg1"}}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } i.ImportUsed() runTests(t, i, []testCase{ {src: "os.Args", res: "[arg0 arg1]"}, }) } func TestRestrictedEnv(t *testing.T) { i := interp.New(interp.Options{Env: []string{"foo=bar"}}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } i.ImportUsed() runTests(t, i, []testCase{ {src: `os.Getenv("foo")`, res: "bar"}, {src: `s, ok := os.LookupEnv("foo"); s`, res: "bar"}, {src: `s, ok := os.LookupEnv("foo"); ok`, res: "true"}, {src: `s, ok := os.LookupEnv("PATH"); s`, res: ""}, {src: `s, ok := os.LookupEnv("PATH"); ok`, res: "false"}, {src: `os.Setenv("foo", "baz"); os.Environ()`, res: "[foo=baz]"}, {src: `os.ExpandEnv("foo is ${foo}")`, res: "foo is baz"}, {src: `os.Unsetenv("foo"); os.Environ()`, res: "[]"}, {src: `os.Setenv("foo", "baz"); os.Environ()`, res: "[foo=baz]"}, {src: `os.Clearenv(); os.Environ()`, res: "[]"}, {src: `os.Setenv("foo", "baz"); os.Environ()`, res: "[foo=baz]"}, }) if s, ok := os.LookupEnv("foo"); ok { t.Fatal("expected \"\", got " + s) } } func TestIssue1388(t *testing.T) { i := interp.New(interp.Options{Env: []string{"foo=bar"}}) err := i.Use(stdlib.Symbols) if err != nil { t.Fatal(err) } _, err = i.Eval(`x := errors.New("")`) if err == nil { t.Fatal("Expected an error") } _, err = i.Eval(`import "errors"`) if err != nil { t.Fatal(err) } _, err = i.Eval(`x := errors.New("")`) if err != nil { t.Fatal(err) } } func TestIssue1383(t *testing.T) { const src = ` package main func main() { fmt.Println("Hello") } ` i := interp.New(interp.Options{}) err := i.Use(stdlib.Symbols) if err != nil { t.Fatal(err) } _, err = i.Eval(`import "fmt"`) if err != nil { t.Fatal(err) } ast, err := parser.ParseFile(i.FileSet(), "_.go", src, parser.DeclarationErrors) if err != nil { t.Fatal(err) } prog, err := i.CompileAST(ast) if err != nil { t.Fatal(err) } _, err = i.Execute(prog) if err != nil { t.Fatal(err) } } yaegi-0.16.1/interp/interp_export_test.go000066400000000000000000000053771460330105400204760ustar00rootroot00000000000000package interp_test import ( "reflect" "testing" "github.com/traefik/yaegi/interp" ) type Helloer interface { Hello() } func Hi(h Helloer) { println("In Hi:") h.Hello() } // A Wrap represents the wrapper which allows to use objects created by // the interpreter as Go interfaces (despite limitations in reflect which // forbid dynamic method creation). // // All the struct fields are functions, where the fied name corresponds to // the method name prefixed by "Do". The function signature must be the // same as the interface one. // // A corresponding Wrap method Xyz which satisfies the interface must exist and // must invoke the DoXyz function. // // To be usable, the interpreter should return a Wrap instance with the relevant // function fields filled. The application can then invoke methods on it. // The method calls will be forwarded to the interpreter. // // Only the Wrap type definition needs to be exported to the interpreter (not // the interfaces and methods definitions). type Wrap struct { DoHello func() // related to the Hello() method. // Other interface method wrappers... } func (w Wrap) Hello() { w.DoHello() } func TestExportsSemantics(t *testing.T) { Foo := &struct{}{} t.Run("Correct", func(t *testing.T) { t.Skip() i := interp.New(interp.Options{}) err := i.Use(interp.Exports{ "foo/foo": {"Foo": reflect.ValueOf(Foo)}, }) if err != nil { t.Fatal(err) } i.ImportUsed() res, err := i.Eval("foo.Foo") if err != nil { t.Fatal(err) } if res.Interface() != Foo { t.Fatalf("expected foo.Foo to equal local Foo") } }) t.Run("Incorrect", func(t *testing.T) { i := interp.New(interp.Options{}) err := i.Use(interp.Exports{ "foo": {"Foo": reflect.ValueOf(Foo)}, }) if err == nil { t.Fatal("expected error for incorrect Use semantics") } }) } func TestInterface(t *testing.T) { i := interp.New(interp.Options{}) // export the Wrap type to the interpreter under virtual "wrap" package err := i.Use(interp.Exports{ "wrap/wrap": { "Wrap": reflect.ValueOf((*Wrap)(nil)), }, }) if err != nil { t.Fatal(err) } eval(t, i, ` import "wrap" type MyInt int func (m MyInt) Hello() { println("hello from Myint", m) } func NewMyInt(i int) wrap.Wrap { m := MyInt(i) return wrap.Wrap{DoHello: m.Hello} } `) NewMyInt := eval(t, i, "NewMyInt").Interface().(func(int) Wrap) w := NewMyInt(4) Hi(w) } type T struct{} func (t T) Bar(s ...string) {} func TestCallBinVariadicMethod(t *testing.T) { i := interp.New(interp.Options{}) err := i.Use(interp.Exports{ "mypkg/mypkg": { "T": reflect.ValueOf((*T)(nil)), }, }) if err != nil { t.Fatal(err) } eval(t, i, ` package p import "mypkg" func Foo(x mypkg.T) { x.Bar("s") } `) v := eval(t, i, "p.Foo") bar := v.Interface().(func(t T)) bar(T{}) } yaegi-0.16.1/interp/interp_file_test.go000066400000000000000000000057651460330105400200750ustar00rootroot00000000000000package interp_test import ( "bytes" "go/build" "go/parser" "go/token" "os" "path/filepath" "regexp" "runtime" "strings" "testing" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" "github.com/traefik/yaegi/stdlib/unsafe" ) // The following tests sometimes (not always) crash with go1.21 but not with go1.20 or go1.22. // The reason of failure is not obvious, maybe due to the runtime itself, and will be investigated separately. var testsToSkipGo121 = map[string]bool{"cli6.go": true, "cli7.go": true, "issue-1276.go": true, "issue-1330.go": true, "struct11.go": true} var go121 = strings.HasPrefix(runtime.Version(), "go1.21") func TestFile(t *testing.T) { filePath := "../_test/str.go" runCheck(t, filePath) t.Setenv("YAEGI_SPECIAL_STDIO", "1") baseDir := filepath.Join("..", "_test") files, err := os.ReadDir(baseDir) if err != nil { t.Fatal(err) } for _, file := range files { if filepath.Ext(file.Name()) != ".go" { continue } // Skip some tests which are problematic in go1.21 only. if go121 && testsToSkipGo121[file.Name()] { continue } file := file t.Run(file.Name(), func(t *testing.T) { runCheck(t, filepath.Join(baseDir, file.Name())) }) } } func runCheck(t *testing.T, p string) { t.Helper() wanted, goPath, errWanted := wantedFromComment(p) if wanted == "" { t.Skip(p, "has no comment 'Output:' or 'Error:'") } wanted = strings.TrimSpace(wanted) if goPath == "" { goPath = build.Default.GOPATH } var stdout, stderr bytes.Buffer i := interp.New(interp.Options{GoPath: goPath, Stdout: &stdout, Stderr: &stderr}) if err := i.Use(interp.Symbols); err != nil { t.Fatal(err) } if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if err := i.Use(unsafe.Symbols); err != nil { t.Fatal(err) } _, err := i.EvalPath(p) if errWanted { if err == nil { t.Fatalf("got nil error, want: %q", wanted) } if res := strings.TrimSpace(err.Error()); !strings.Contains(res, wanted) { t.Errorf("got %q, want: %q", res, wanted) } return } if err != nil { t.Fatal(err) } // Remove path in output, to have results independent of location. re := regexp.MustCompile(p + ":") if res := re.ReplaceAllString(strings.TrimSpace(stdout.String()), ""); res != wanted { t.Errorf("\ngot: %q,\nwant: %q", res, wanted) } } func wantedFromComment(p string) (res string, goPath string, err bool) { fset := token.NewFileSet() f, _ := parser.ParseFile(fset, p, nil, parser.ParseComments) if len(f.Comments) == 0 { return } text := f.Comments[len(f.Comments)-1].Text() if strings.HasPrefix(text, "GOPATH:") { parts := strings.SplitN(text, "\n", 2) text = parts[1] wd, err := os.Getwd() if err != nil { panic(err) } goPath = filepath.Join(wd, "..", "_test", strings.TrimPrefix(parts[0], "GOPATH:")) } if strings.HasPrefix(text, "Output:\n") { return strings.TrimPrefix(text, "Output:\n"), goPath, false } if strings.HasPrefix(text, "Error:\n") { return strings.TrimPrefix(text, "Error:\n"), goPath, true } return } yaegi-0.16.1/interp/interp_test.go000066400000000000000000000103571460330105400170670ustar00rootroot00000000000000package interp import ( "go/constant" "log" "reflect" "testing" "github.com/traefik/yaegi/stdlib" ) func init() { log.SetFlags(log.Lshortfile) } func TestIsNatural(t *testing.T) { tests := []struct { desc string n *node expected bool }{ { desc: "positive uint var", n: &node{ typ: &itype{ rtype: func() reflect.Type { var a uint = 3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { var a uint = 3 return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "positive untyped var", n: &node{ typ: &itype{ rtype: func() reflect.Type { a := 3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { a := 3 return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "positive int var", n: &node{ typ: &itype{ rtype: func() reflect.Type { var a int = 3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { var a int = 3 return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "positive float var, null decimal", n: &node{ typ: &itype{ rtype: func() reflect.Type { var a float64 = 3.0 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { var a float64 = 3.0 return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "positive float var, with decimal", n: &node{ typ: &itype{ rtype: func() reflect.Type { var a float64 = 3.14 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { var a float64 = 3.14 return reflect.ValueOf(a) }(), }, expected: false, }, { desc: "negative int var", n: &node{ typ: &itype{ rtype: func() reflect.Type { var a int = -3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { var a int = -3 return reflect.ValueOf(a) }(), }, expected: false, }, { desc: "positive typed const", n: &node{ typ: &itype{ rtype: func() reflect.Type { const a uint = 3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { const a uint = 3 return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "positive untyped const", n: &node{ typ: &itype{ rtype: func() reflect.Type { const a = 3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { const a = 3 return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "positive untyped const (iota)", n: &node{ typ: &itype{ rtype: func() reflect.Type { const ( zero = iota a ) return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { const ( zero = iota a ) return reflect.ValueOf(a) }(), }, expected: true, }, { desc: "negative const", n: &node{ typ: &itype{ rtype: func() reflect.Type { const a = -3 return reflect.TypeOf(a) }(), }, rval: func() reflect.Value { const a = -3 return reflect.ValueOf(a) }(), }, expected: false, }, } for _, test := range tests { got := test.n.isNatural() if test.expected != got { t.Fatalf("%s: got %v, wanted %v", test.desc, got, test.expected) } } } func TestGlobals(t *testing.T) { i := New(Options{}) if err := i.Use(stdlib.Symbols); err != nil { t.Fatal(err) } if _, err := i.Eval("var a = 1"); err != nil { t.Fatal(err) } if _, err := i.Eval("b := 2"); err != nil { t.Fatal(err) } if _, err := i.Eval("const c = 3"); err != nil { t.Fatal(err) } g := i.Globals() a := g["a"] if !a.IsValid() { t.Fatal("a not found") } if a := a.Interface(); a != 1 { t.Fatalf("wrong a: want (%[1]T) %[1]v, have (%[2]T) %[2]v", 1, a) } b := g["b"] if !b.IsValid() { t.Fatal("b not found") } if b := b.Interface(); b != 2 { t.Fatalf("wrong b: want (%[1]T) %[1]v, have (%[2]T) %[2]v", 2, b) } c := g["c"] if !c.IsValid() { t.Fatal("c not found") } if cc, ok := c.Interface().(constant.Value); ok && constant.MakeInt64(3) != cc { t.Fatalf("wrong c: want (%[1]T) %[1]v, have (%[2]T) %[2]v", constant.MakeInt64(3), cc) } } yaegi-0.16.1/interp/op.go000066400000000000000000003405141460330105400151460ustar00rootroot00000000000000package interp // Code generated by 'go run ../internal/cmd/genop/genop.go'. DO NOT EDIT. import ( "go/constant" "go/token" "reflect" ) // Arithmetic operators func add(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.String: switch { case isInterface: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(v0(f).String() + v1(f).String()).Convert(typ)) return next } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValue(c1) n.exec = func(f *frame) bltn { dest(f).SetString(s0 + v1(f).String()) return next } case c1.rval.IsValid(): v0 := genValue(c0) s1 := vString(c1.rval) n.exec = func(f *frame) bltn { dest(f).SetString(v0(f).String() + s1) return next } default: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { dest(f).SetString(v0(f).String() + v1(f).String()) return next } } case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i + j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i + j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i + j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i + j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i + j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i + j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i + j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i + j) return next } } case reflect.Float32, reflect.Float64: switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i + j).Convert(typ)) return next } case c0.rval.IsValid(): i := vFloat(c0.rval) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetFloat(i + j) return next } case c1.rval.IsValid(): j := vFloat(c1.rval) v0 := genValueFloat(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetFloat(i + j) return next } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetFloat(i + j) return next } } case reflect.Complex64, reflect.Complex128: switch { case isInterface: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(v0(f) + v1(f)).Convert(typ)) return next } case c0.rval.IsValid(): r0 := vComplex(c0.rval) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(r0 + v1(f)) return next } case c1.rval.IsValid(): r1 := vComplex(c1.rval) v0 := genComplex(c0) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) + r1) return next } default: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) + v1(f)) return next } } } } func addConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(vConstantValue(v0), token.ADD, vConstantValue(v1)) n.rval.Set(reflect.ValueOf(v)) case isString(t): n.rval.SetString(vString(v0) + vString(v1)) case isComplex(t): n.rval.SetComplex(vComplex(v0) + vComplex(v1)) case isFloat(t): n.rval.SetFloat(vFloat(v0) + vFloat(v1)) case isUint(t): n.rval.SetUint(vUint(v0) + vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) + vInt(v1)) } } func and(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i & j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i & j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i & j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i & j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i & j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i & j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i & j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i & j) return next } } } } func andConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.AND, constant.ToInt(vConstantValue(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) & vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) & vInt(v1)) } } func andNot(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i &^ j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i &^ j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i &^ j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i &^ j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i &^ j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i &^ j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i &^ j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i &^ j) return next } } } } func andNotConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.AND_NOT, constant.ToInt(vConstantValue(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) &^ vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) &^ vInt(v1)) } } func mul(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i * j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i * j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i * j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i * j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i * j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i * j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i * j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i * j) return next } } case reflect.Float32, reflect.Float64: switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i * j).Convert(typ)) return next } case c0.rval.IsValid(): i := vFloat(c0.rval) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetFloat(i * j) return next } case c1.rval.IsValid(): j := vFloat(c1.rval) v0 := genValueFloat(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetFloat(i * j) return next } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetFloat(i * j) return next } } case reflect.Complex64, reflect.Complex128: switch { case isInterface: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(v0(f) * v1(f)).Convert(typ)) return next } case c0.rval.IsValid(): r0 := vComplex(c0.rval) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(r0 * v1(f)) return next } case c1.rval.IsValid(): r1 := vComplex(c1.rval) v0 := genComplex(c0) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) * r1) return next } default: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) * v1(f)) return next } } } } func mulConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(vConstantValue(v0), token.MUL, vConstantValue(v1)) n.rval.Set(reflect.ValueOf(v)) case isComplex(t): n.rval.SetComplex(vComplex(v0) * vComplex(v1)) case isFloat(t): n.rval.SetFloat(vFloat(v0) * vFloat(v1)) case isUint(t): n.rval.SetUint(vUint(v0) * vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) * vInt(v1)) } } func or(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i | j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i | j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i | j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i | j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i | j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i | j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i | j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i | j) return next } } } } func orConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.OR, constant.ToInt(vConstantValue(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) | vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) | vInt(v1)) } } func quo(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i / j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i / j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i / j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i / j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i / j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i / j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i / j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i / j) return next } } case reflect.Float32, reflect.Float64: switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i / j).Convert(typ)) return next } case c0.rval.IsValid(): i := vFloat(c0.rval) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetFloat(i / j) return next } case c1.rval.IsValid(): j := vFloat(c1.rval) v0 := genValueFloat(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetFloat(i / j) return next } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetFloat(i / j) return next } } case reflect.Complex64, reflect.Complex128: switch { case isInterface: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(v0(f) / v1(f)).Convert(typ)) return next } case c0.rval.IsValid(): r0 := vComplex(c0.rval) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(r0 / v1(f)) return next } case c1.rval.IsValid(): r1 := vComplex(c1.rval) v0 := genComplex(c0) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) / r1) return next } default: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) / v1(f)) return next } } } } func quoConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: var operator token.Token // When the result of the operation is expected to be an int (because both // operands are ints), we want to force the type of the whole expression to be an // int (and not a float), which is achieved by using the QUO_ASSIGN operator. if n.typ.untyped && isInt(n.typ.rtype) { operator = token.QUO_ASSIGN } else { operator = token.QUO } v := constant.BinaryOp(vConstantValue(v0), operator, vConstantValue(v1)) n.rval.Set(reflect.ValueOf(v)) case isComplex(t): n.rval.SetComplex(vComplex(v0) / vComplex(v1)) case isFloat(t): n.rval.SetFloat(vFloat(v0) / vFloat(v1)) case isUint(t): n.rval.SetUint(vUint(v0) / vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) / vInt(v1)) } } func rem(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i % j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i % j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i % j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i % j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i % j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i % j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i % j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i % j) return next } } } } func remConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.REM, constant.ToInt(vConstantValue(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) % vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) % vInt(v1)) } } func shl(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i << j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i << j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i << j) return next } default: v0 := genValueInt(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i << j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i << j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i << j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i << j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i << j) return next } } } } func shlConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.Shift(vConstantValue(v0), token.SHL, uint(vUint(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) << vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) << vUint(v1)) } } func shr(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i >> j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i >> j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i >> j) return next } default: v0 := genValueInt(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i >> j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i >> j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i >> j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i >> j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i >> j) return next } } } } func shrConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.Shift(vConstantValue(v0), token.SHR, uint(vUint(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) >> vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) >> vUint(v1)) } } func sub(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i - j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i - j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i - j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i - j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i - j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i - j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i - j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i - j) return next } } case reflect.Float32, reflect.Float64: switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i - j).Convert(typ)) return next } case c0.rval.IsValid(): i := vFloat(c0.rval) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetFloat(i - j) return next } case c1.rval.IsValid(): j := vFloat(c1.rval) v0 := genValueFloat(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetFloat(i - j) return next } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetFloat(i - j) return next } } case reflect.Complex64, reflect.Complex128: switch { case isInterface: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(v0(f) - v1(f)).Convert(typ)) return next } case c0.rval.IsValid(): r0 := vComplex(c0.rval) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(r0 - v1(f)) return next } case c1.rval.IsValid(): r1 := vComplex(c1.rval) v0 := genComplex(c0) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) - r1) return next } default: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { dest(f).SetComplex(v0(f) - v1(f)) return next } } } } func subConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(vConstantValue(v0), token.SUB, vConstantValue(v1)) n.rval.Set(reflect.ValueOf(v)) case isComplex(t): n.rval.SetComplex(vComplex(v0) - vComplex(v1)) case isFloat(t): n.rval.SetFloat(vFloat(v0) - vFloat(v1)) case isUint(t): n.rval.SetUint(vUint(v0) - vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) - vInt(v1)) } } func xor(n *node) { next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface dest := genValueOutput(n, typ) c0, c1 := n.child[0], n.child[1] switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i ^ j).Convert(typ)) return next } case c0.rval.IsValid(): i := vInt(c0.rval) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetInt(i ^ j) return next } case c1.rval.IsValid(): v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetInt(i ^ j) return next } default: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetInt(i ^ j) return next } } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).Set(reflect.ValueOf(i ^ j).Convert(typ)) return next } case c0.rval.IsValid(): i := vUint(c0.rval) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, j := v1(f) dest(f).SetUint(i ^ j) return next } case c1.rval.IsValid(): j := vUint(c1.rval) v0 := genValueUint(c0) n.exec = func(f *frame) bltn { _, i := v0(f) dest(f).SetUint(i ^ j) return next } default: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, i := v0(f) _, j := v1(f) dest(f).SetUint(i ^ j) return next } } } } func xorConst(n *node) { v0, v1 := n.child[0].rval, n.child[1].rval isConst := (v0.IsValid() && isConstantValue(v0.Type())) && (v1.IsValid() && isConstantValue(v1.Type())) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.BinaryOp(constant.ToInt(vConstantValue(v0)), token.XOR, constant.ToInt(vConstantValue(v1))) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(vUint(v0) ^ vUint(v1)) case isInt(t): n.rval.SetInt(vInt(v0) ^ vInt(v1)) } } // Assign operators func addAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.String: v0 := genValueString(c0) v1 := vString(c1.rval) n.exec = func(f *frame) bltn { v, s := v0(f) v.SetString(s + v1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i + j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i + j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) j := vFloat(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetFloat(i + j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := vComplex(c1.rval) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() + v1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.String: v0 := genValueString(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { v, s := v0(f) v.SetString(s + v1(f).String()) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i + j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i + j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetFloat(i + j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() + v1(f).Complex()) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func andAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i & j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i & j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i & j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i & j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func andNotAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i &^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i &^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i &^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i &^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func mulAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i * j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i * j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) j := vFloat(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetFloat(i * j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := vComplex(c1.rval) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() * v1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i * j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i * j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetFloat(i * j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() * v1(f).Complex()) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func orAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i | j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i | j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i | j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i | j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func quoAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i / j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i / j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) j := vFloat(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetFloat(i / j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := vComplex(c1.rval) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() / v1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i / j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i / j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetFloat(i / j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() / v1(f).Complex()) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func remAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i % j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i % j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i % j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i % j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func shlAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i << j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i << j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i << j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i << j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func shrAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i >> j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i >> j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i >> j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i >> j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func subAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i - j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i - j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) j := vFloat(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetFloat(i - j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := vComplex(c1.rval) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() - v1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i - j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i - j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetFloat(i - j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() - v1(f).Complex()) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func xorAssign(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0, c1 := n.child[0], n.child[1] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } if c1.rval.IsValid() { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) j := vInt(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i ^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) j := vUint(c1.rval) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i ^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } else { switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetInt(i ^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { v, i := v0(f) _, j := v1(f) v.SetUint(i ^ j) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } } func dec(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0 := n.child[0] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i - 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: v0 := genValueUint(c0) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i - 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetFloat(i - 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() - 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } func inc(n *node) { next := getExec(n.tnext) typ := n.typ.TypeOf() c0 := n.child[0] setMap := isMapEntry(c0) var mapValue, indexValue func(*frame) reflect.Value if setMap { mapValue = genValue(c0.child[0]) indexValue = genValue(c0.child[1]) } switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: v0 := genValueInt(c0) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetInt(i + 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: v0 := genValueUint(c0) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetUint(i + 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Float32, reflect.Float64: v0 := genValueFloat(c0) n.exec = func(f *frame) bltn { v, i := v0(f) v.SetFloat(i + 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } case reflect.Complex64, reflect.Complex128: v0 := genValue(c0) n.exec = func(f *frame) bltn { v := v0(f) v.SetComplex(v.Complex() + 1) if setMap { mapValue(f).SetMapIndex(indexValue(f), v) } return next } } } func bitNotConst(n *node) { v0 := n.child[0].rval isConst := v0.IsValid() && isConstantValue(v0.Type()) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.UnaryOp(token.XOR, vConstantValue(v0), 0) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(^v0.Uint()) case isInt(t): n.rval.SetInt(^v0.Int()) } } func negConst(n *node) { v0 := n.child[0].rval isConst := v0.IsValid() && isConstantValue(v0.Type()) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.UnaryOp(token.SUB, vConstantValue(v0), 0) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(-v0.Uint()) case isInt(t): n.rval.SetInt(-v0.Int()) case isFloat(t): n.rval.SetFloat(-v0.Float()) case isComplex(t): n.rval.SetComplex(-v0.Complex()) } } func notConst(n *node) { v0 := n.child[0].rval isConst := v0.IsValid() && isConstantValue(v0.Type()) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() if isConst { v := constant.UnaryOp(token.NOT, vConstantValue(v0), 0) n.rval.Set(reflect.ValueOf(v)) } else { n.rval.SetBool(!v0.Bool()) } } func posConst(n *node) { v0 := n.child[0].rval isConst := v0.IsValid() && isConstantValue(v0.Type()) t := n.typ.rtype if isConst { t = constVal } n.rval = reflect.New(t).Elem() switch { case isConst: v := constant.UnaryOp(token.ADD, vConstantValue(v0), 0) n.rval.Set(reflect.ValueOf(v)) case isUint(t): n.rval.SetUint(+v0.Uint()) case isInt(t): n.rval.SetInt(+v0.Int()) case isFloat(t): n.rval.SetFloat(+v0.Float()) case isComplex(t): n.rval.SetComplex(+v0.Complex()) } } func equal(n *node) { tnext := getExec(n.tnext) dest := genValueOutput(n, reflect.TypeOf(true)) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() if c0.typ.cat == linkedT || c1.typ.cat == linkedT { switch { case isInterface: v0 := genValue(c0) v1 := genValue(c1) dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).Set(reflect.ValueOf(i0 == i1).Convert(typ)) return tnext } case c0.rval.IsValid(): i0 := c0.rval.Interface() v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } case c1.rval.IsValid(): i1 := c1.rval.Interface() v0 := genValue(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } default: v0 := genValue(c0) v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } } return } // Do not attempt to optimize '==' or '!=' if an operand is an interface. // This will preserve proper dynamic type checking at runtime. For static types, // type checks are already performed, so bypass them if possible. if t0.Kind() == reflect.Interface || t1.Kind() == reflect.Interface { v0 := genValue(c0) v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } return } switch { case isString(t0) || isString(t1): switch { case isInterface: v0 := genValueString(c0) v1 := genValueString(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } case c1.rval.IsValid(): s1 := vString(c1.rval) v0 := genValueString(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 == s1) return tnext } } default: v0 := genValueString(c0) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } } case isFloat(t0) || isFloat(t1): switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vFloat(c0.rval) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } case c1.rval.IsValid(): s1 := vFloat(c1.rval) v0 := genValueFloat(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 == s1) return tnext } } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } } case isUint(t0) || isUint(t1): switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vUint(c0.rval) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } case c1.rval.IsValid(): s1 := vUint(c1.rval) v0 := genValueUint(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 == s1) return tnext } } default: v0 := genValueUint(c0) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } } case isInt(t0) || isInt(t1): switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vInt(c0.rval) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } case c1.rval.IsValid(): s1 := vInt(c1.rval) v0 := genValueInt(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 == s1) return tnext } } default: v0 := genValueInt(c0) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } } case isComplex(t0) || isComplex(t1): switch { case isInterface: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { s0 := v0(f) s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 == s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vComplex(c0.rval) v1 := genComplex(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } case c1.rval.IsValid(): s1 := vComplex(c1.rval) v0 := genComplex(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { s0 := v0(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { s0 := v0(f) dest(f).SetBool(s0 == s1) return tnext } } default: v0 := genComplex(c0) v1 := genComplex(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { s0 := v0(f) s1 := v1(f) if s0 == s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { s0 := v0(f) s1 := v1(f) dest(f).SetBool(s0 == s1) return tnext } } } default: switch { case isInterface: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).Set(reflect.ValueOf(i0 == i1).Convert(typ)) return tnext } case c0.rval.IsValid(): i0 := c0.rval.Interface() v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } case c1.rval.IsValid(): i1 := c1.rval.Interface() v0 := genValue(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } default: v0 := genValue(c0) v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() if i0 == i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).SetBool(i0 == i1) return tnext } } } } } func greater(n *node) { tnext := getExec(n.tnext) dest := genValueOutput(n, reflect.TypeOf(true)) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() switch { case isString(t0) || isString(t1): switch { case isInterface: v0 := genValueString(c0) v1 := genValueString(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } case c1.rval.IsValid(): s1 := vString(c1.rval) v0 := genValueString(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 > s1) return tnext } } default: v0 := genValueString(c0) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } } case isFloat(t0) || isFloat(t1): switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vFloat(c0.rval) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } case c1.rval.IsValid(): s1 := vFloat(c1.rval) v0 := genValueFloat(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 > s1) return tnext } } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } } case isUint(t0) || isUint(t1): switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vUint(c0.rval) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } case c1.rval.IsValid(): s1 := vUint(c1.rval) v0 := genValueUint(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 > s1) return tnext } } default: v0 := genValueUint(c0) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } } case isInt(t0) || isInt(t1): switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 > s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vInt(c0.rval) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } case c1.rval.IsValid(): s1 := vInt(c1.rval) v0 := genValueInt(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 > s1) return tnext } } default: v0 := genValueInt(c0) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 > s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 > s1) return tnext } } } } } func greaterEqual(n *node) { tnext := getExec(n.tnext) dest := genValueOutput(n, reflect.TypeOf(true)) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() switch { case isString(t0) || isString(t1): switch { case isInterface: v0 := genValueString(c0) v1 := genValueString(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } case c1.rval.IsValid(): s1 := vString(c1.rval) v0 := genValueString(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 >= s1) return tnext } } default: v0 := genValueString(c0) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } } case isFloat(t0) || isFloat(t1): switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vFloat(c0.rval) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } case c1.rval.IsValid(): s1 := vFloat(c1.rval) v0 := genValueFloat(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 >= s1) return tnext } } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } } case isUint(t0) || isUint(t1): switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vUint(c0.rval) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } case c1.rval.IsValid(): s1 := vUint(c1.rval) v0 := genValueUint(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 >= s1) return tnext } } default: v0 := genValueUint(c0) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } } case isInt(t0) || isInt(t1): switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 >= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vInt(c0.rval) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } case c1.rval.IsValid(): s1 := vInt(c1.rval) v0 := genValueInt(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 >= s1) return tnext } } default: v0 := genValueInt(c0) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 >= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 >= s1) return tnext } } } } } func lower(n *node) { tnext := getExec(n.tnext) dest := genValueOutput(n, reflect.TypeOf(true)) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() switch { case isString(t0) || isString(t1): switch { case isInterface: v0 := genValueString(c0) v1 := genValueString(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } case c1.rval.IsValid(): s1 := vString(c1.rval) v0 := genValueString(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 < s1) return tnext } } default: v0 := genValueString(c0) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } } case isFloat(t0) || isFloat(t1): switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vFloat(c0.rval) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } case c1.rval.IsValid(): s1 := vFloat(c1.rval) v0 := genValueFloat(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 < s1) return tnext } } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } } case isUint(t0) || isUint(t1): switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vUint(c0.rval) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } case c1.rval.IsValid(): s1 := vUint(c1.rval) v0 := genValueUint(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 < s1) return tnext } } default: v0 := genValueUint(c0) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } } case isInt(t0) || isInt(t1): switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 < s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vInt(c0.rval) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } case c1.rval.IsValid(): s1 := vInt(c1.rval) v0 := genValueInt(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 < s1) return tnext } } default: v0 := genValueInt(c0) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 < s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 < s1) return tnext } } } } } func lowerEqual(n *node) { tnext := getExec(n.tnext) dest := genValueOutput(n, reflect.TypeOf(true)) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() switch { case isString(t0) || isString(t1): switch { case isInterface: v0 := genValueString(c0) v1 := genValueString(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } case c1.rval.IsValid(): s1 := vString(c1.rval) v0 := genValueString(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 <= s1) return tnext } } default: v0 := genValueString(c0) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } } case isFloat(t0) || isFloat(t1): switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vFloat(c0.rval) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } case c1.rval.IsValid(): s1 := vFloat(c1.rval) v0 := genValueFloat(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 <= s1) return tnext } } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } } case isUint(t0) || isUint(t1): switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vUint(c0.rval) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } case c1.rval.IsValid(): s1 := vUint(c1.rval) v0 := genValueUint(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 <= s1) return tnext } } default: v0 := genValueUint(c0) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } } case isInt(t0) || isInt(t1): switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 <= s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vInt(c0.rval) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } case c1.rval.IsValid(): s1 := vInt(c1.rval) v0 := genValueInt(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 <= s1) return tnext } } default: v0 := genValueInt(c0) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 <= s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 <= s1) return tnext } } } } } func notEqual(n *node) { tnext := getExec(n.tnext) dest := genValueOutput(n, reflect.TypeOf(true)) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() if c0.typ.cat == linkedT || c1.typ.cat == linkedT { switch { case isInterface: v0 := genValue(c0) v1 := genValue(c1) dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).Set(reflect.ValueOf(i0 != i1).Convert(typ)) return tnext } case c0.rval.IsValid(): i0 := c0.rval.Interface() v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } case c1.rval.IsValid(): i1 := c1.rval.Interface() v0 := genValue(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } default: v0 := genValue(c0) v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } } return } // Do not attempt to optimize '==' or '!=' if an operand is an interface. // This will preserve proper dynamic type checking at runtime. For static types, // type checks are already performed, so bypass them if possible. if t0.Kind() == reflect.Interface || t1.Kind() == reflect.Interface { v0 := genValue(c0) v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } return } switch { case isString(t0) || isString(t1): switch { case isInterface: v0 := genValueString(c0) v1 := genValueString(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vString(c0.rval) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } case c1.rval.IsValid(): s1 := vString(c1.rval) v0 := genValueString(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 != s1) return tnext } } default: v0 := genValueString(c0) v1 := genValueString(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } } case isFloat(t0) || isFloat(t1): switch { case isInterface: v0 := genValueFloat(c0) v1 := genValueFloat(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vFloat(c0.rval) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } case c1.rval.IsValid(): s1 := vFloat(c1.rval) v0 := genValueFloat(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 != s1) return tnext } } default: v0 := genValueFloat(c0) v1 := genValueFloat(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } } case isUint(t0) || isUint(t1): switch { case isInterface: v0 := genValueUint(c0) v1 := genValueUint(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vUint(c0.rval) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } case c1.rval.IsValid(): s1 := vUint(c1.rval) v0 := genValueUint(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 != s1) return tnext } } default: v0 := genValueUint(c0) v1 := genValueUint(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } } case isInt(t0) || isInt(t1): switch { case isInterface: v0 := genValueInt(c0) v1 := genValueInt(c1) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vInt(c0.rval) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } case c1.rval.IsValid(): s1 := vInt(c1.rval) v0 := genValueInt(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) dest(f).SetBool(s0 != s1) return tnext } } default: v0 := genValueInt(c0) v1 := genValueInt(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { _, s0 := v0(f) _, s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } } case isComplex(t0) || isComplex(t1): switch { case isInterface: v0 := genComplex(c0) v1 := genComplex(c1) n.exec = func(f *frame) bltn { s0 := v0(f) s1 := v1(f) dest(f).Set(reflect.ValueOf(s0 != s1).Convert(typ)) return tnext } case c0.rval.IsValid(): s0 := vComplex(c0.rval) v1 := genComplex(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } case c1.rval.IsValid(): s1 := vComplex(c1.rval) v0 := genComplex(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { s0 := v0(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { s0 := v0(f) dest(f).SetBool(s0 != s1) return tnext } } default: v0 := genComplex(c0) v1 := genComplex(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { s0 := v0(f) s1 := v1(f) if s0 != s1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { s0 := v0(f) s1 := v1(f) dest(f).SetBool(s0 != s1) return tnext } } } default: switch { case isInterface: v0 := genValue(c0) v1 := genValue(c1) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).Set(reflect.ValueOf(i0 != i1).Convert(typ)) return tnext } case c0.rval.IsValid(): i0 := c0.rval.Interface() v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i1 := v1(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } case c1.rval.IsValid(): i1 := c1.rval.Interface() v0 := genValue(c0) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } default: v0 := genValue(c0) v1 := genValue(c1) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() if i0 != i1 { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { dest := genValue(n) n.exec = func(f *frame) bltn { i0 := v0(f).Interface() i1 := v1(f).Interface() dest(f).SetBool(i0 != i1) return tnext } } } } } yaegi-0.16.1/interp/program.go000066400000000000000000000115551460330105400161770ustar00rootroot00000000000000package interp import ( "context" "go/ast" "go/token" "os" "reflect" "runtime" "runtime/debug" ) // A Program is Go code that has been parsed and compiled. type Program struct { pkgName string root *node init []*node } // PackageName returns name used in a package clause. func (p *Program) PackageName() string { return p.pkgName } // FileSet is the fileset that must be used for parsing Go that will be passed // to interp.CompileAST(). func (interp *Interpreter) FileSet() *token.FileSet { return interp.fset } // Compile parses and compiles a Go code represented as a string. func (interp *Interpreter) Compile(src string) (*Program, error) { return interp.compileSrc(src, "", true) } // CompilePath parses and compiles a Go code located at the given path. func (interp *Interpreter) CompilePath(path string) (*Program, error) { if !isFile(interp.filesystem, path) { _, err := interp.importSrc(mainID, path, NoTest) return nil, err } b, err := os.ReadFile(path) if err != nil { return nil, err } return interp.compileSrc(string(b), path, false) } func (interp *Interpreter) compileSrc(src, name string, inc bool) (*Program, error) { if name != "" { interp.name = name } if interp.name == "" { interp.name = DefaultSourceName } // Parse source to AST. n, err := interp.parse(src, interp.name, inc) if err != nil { return nil, err } return interp.CompileAST(n) } // CompileAST builds a Program for the given Go code AST. Files and block // statements can be compiled, as can most expressions. Var declaration nodes // cannot be compiled. // // WARNING: The node must have been parsed using interp.FileSet(). Results are // unpredictable otherwise. func (interp *Interpreter) CompileAST(n ast.Node) (*Program, error) { // Convert AST. pkgName, root, err := interp.ast(n) if err != nil || root == nil { return nil, err } if interp.astDot { dotCmd := interp.dotCmd if dotCmd == "" { dotCmd = defaultDotCmd(interp.name, "yaegi-ast-") } root.astDot(dotWriter(dotCmd), interp.name) if interp.noRun { return nil, err } } // Perform global types analysis. if err = interp.gtaRetry([]*node{root}, pkgName, pkgName); err != nil { return nil, err } // Annotate AST with CFG informations. initNodes, err := interp.cfg(root, nil, pkgName, pkgName) if err != nil { if interp.cfgDot { dotCmd := interp.dotCmd if dotCmd == "" { dotCmd = defaultDotCmd(interp.name, "yaegi-cfg-") } root.cfgDot(dotWriter(dotCmd)) } return nil, err } if root.kind != fileStmt { // REPL may skip package statement. setExec(root.start) } interp.mutex.Lock() gs := interp.scopes[pkgName] if interp.universe.sym[pkgName] == nil { // Make the package visible under a path identical to its name. interp.srcPkg[pkgName] = gs.sym interp.universe.sym[pkgName] = &symbol{kind: pkgSym, typ: &itype{cat: srcPkgT, path: pkgName}} interp.pkgNames[pkgName] = pkgName } interp.mutex.Unlock() // Add main to list of functions to run, after all inits. if m := gs.sym[mainID]; pkgName == mainID && m != nil { initNodes = append(initNodes, m.node) } if interp.cfgDot { dotCmd := interp.dotCmd if dotCmd == "" { dotCmd = defaultDotCmd(interp.name, "yaegi-cfg-") } root.cfgDot(dotWriter(dotCmd)) } return &Program{pkgName, root, initNodes}, nil } // Execute executes compiled Go code. func (interp *Interpreter) Execute(p *Program) (res reflect.Value, err error) { defer func() { r := recover() if r != nil { var pc [64]uintptr // 64 frames should be enough. n := runtime.Callers(1, pc[:]) err = Panic{Value: r, Callers: pc[:n], Stack: debug.Stack()} } }() // Generate node exec closures. if err = genRun(p.root); err != nil { return res, err } // Init interpreter execution memory frame. interp.frame.setrunid(interp.runid()) interp.frame.mutex.Lock() interp.resizeFrame() interp.frame.mutex.Unlock() // Execute node closures. interp.run(p.root, nil) // Wire and execute global vars. n, err := genGlobalVars([]*node{p.root}, interp.scopes[p.pkgName]) if err != nil { return res, err } interp.run(n, nil) for _, n := range p.init { interp.run(n, interp.frame) } v := genValue(p.root) res = v(interp.frame) // If result is an interpreter node, wrap it in a runtime callable function. if res.IsValid() { if n, ok := res.Interface().(*node); ok { res = genFunctionWrapper(n)(interp.frame) } } return res, err } // ExecuteWithContext executes compiled Go code. func (interp *Interpreter) ExecuteWithContext(ctx context.Context, p *Program) (res reflect.Value, err error) { interp.mutex.Lock() interp.done = make(chan struct{}) interp.cancelChan = !interp.opt.fastChan interp.mutex.Unlock() done := make(chan struct{}) go func() { defer close(done) res, err = interp.Execute(p) }() select { case <-ctx.Done(): interp.stop() return reflect.Value{}, ctx.Err() case <-done: } return res, err } yaegi-0.16.1/interp/realfs.go000066400000000000000000000007541460330105400160030ustar00rootroot00000000000000package interp import ( "io/fs" "os" ) // realFS complies with the fs.FS interface (go 1.16 onwards) // We use this rather than os.DirFS as DirFS has no concept of // what the current working directory is, whereas this simple // passthru to os.Open knows about working dir automagically. type realFS struct{} // Open complies with the fs.FS interface. func (dir realFS) Open(name string) (fs.File, error) { f, err := os.Open(name) if err != nil { return nil, err } return f, nil } yaegi-0.16.1/interp/run.go000066400000000000000000003005171460330105400153330ustar00rootroot00000000000000package interp //go:generate go run ../internal/cmd/genop/genop.go import ( "errors" "fmt" "go/constant" "reflect" "regexp" "strings" ) // bltn type defines functions which run at CFG execution. type bltn func(f *frame) bltn // bltnGenerator type defines a builtin generator function. type bltnGenerator func(n *node) var builtin = [...]bltnGenerator{ aNop: nop, aAddr: addr, aAssign: assign, aAdd: add, aAddAssign: addAssign, aAnd: and, aAndAssign: andAssign, aAndNot: andNot, aAndNotAssign: andNotAssign, aBitNot: bitNot, aCall: call, aCallSlice: call, aCase: _case, aCompositeLit: arrayLit, aDec: dec, aEqual: equal, aGetFunc: getFunc, aGreater: greater, aGreaterEqual: greaterEqual, aInc: inc, aLand: land, aLor: lor, aLower: lower, aLowerEqual: lowerEqual, aMul: mul, aMulAssign: mulAssign, aNeg: neg, aNot: not, aNotEqual: notEqual, aOr: or, aOrAssign: orAssign, aPos: pos, aQuo: quo, aQuoAssign: quoAssign, aRange: _range, aRecv: recv, aRem: rem, aRemAssign: remAssign, aReturn: _return, aSend: send, aShl: shl, aShlAssign: shlAssign, aShr: shr, aShrAssign: shrAssign, aSlice: slice, aSlice0: slice0, aStar: deref, aSub: sub, aSubAssign: subAssign, aTypeAssert: typeAssertShort, aXor: xor, aXorAssign: xorAssign, } var receiverStripperRxp *regexp.Regexp func init() { re := `func\(((.*?(, |\)))(.*))` var err error receiverStripperRxp, err = regexp.Compile(re) if err != nil { panic(err) } } type valueInterface struct { node *node value reflect.Value } var floatType, complexType reflect.Type func init() { floatType = reflect.ValueOf(0.0).Type() complexType = reflect.ValueOf(complex(0, 0)).Type() } func (interp *Interpreter) run(n *node, cf *frame) { if n == nil { return } var f *frame if cf == nil { f = interp.frame } else { f = newFrame(cf, len(n.types), interp.runid()) } interp.mutex.RLock() c := reflect.ValueOf(interp.done) interp.mutex.RUnlock() f.mutex.Lock() f.done = reflect.SelectCase{Dir: reflect.SelectRecv, Chan: c} f.mutex.Unlock() for i, t := range n.types { f.data[i] = reflect.New(t).Elem() } runCfg(n.start, f, n, nil) } func isExecNode(n *node, exec bltn) bool { if n == nil || n.exec == nil || exec == nil { return false } a1 := reflect.ValueOf(n.exec).Pointer() a2 := reflect.ValueOf(exec).Pointer() return a1 == a2 } // originalExecNode looks in the tree of nodes for the node which has exec, // aside from n, in order to know where n "inherited" that exec from. func originalExecNode(n *node, exec bltn) *node { execAddr := reflect.ValueOf(exec).Pointer() var originalNode *node seen := make(map[int64]struct{}) root := n for { root = root.anc if root == nil { break } if _, ok := seen[root.index]; ok { continue } root.Walk(func(wn *node) bool { if _, ok := seen[wn.index]; ok { return true } seen[wn.index] = struct{}{} if wn.index == n.index { return true } if wn.exec == nil { return true } if reflect.ValueOf(wn.exec).Pointer() == execAddr { originalNode = wn return false } return true }, nil) if originalNode != nil { break } } return originalNode } // cloned from net/http/server.go , so we can enforce a similar behavior: // in the stdlib, this error is used as sentinel in panic triggered e.g. on // request cancellation, in order to catch it and suppress it in a following defer. // in yaegi, we use it to suppress a "panic" log message that happens in the // same circumstances. var errAbortHandler = errors.New("net/http: abort Handler") // Functions set to run during execution of CFG. func panicFunc(s *scope) string { if s == nil { return "" } def := s.def if def == nil { return s.pkgID } switch def.kind { case funcDecl: if c := def.child[1]; c.kind == identExpr { return s.pkgID + "." + c.ident } case funcLit: if def.anc != nil { return panicFunc(def.anc.scope) + ".func" } } return s.pkgID } // runCfg executes a node AST by walking its CFG and running node builtin at each step. func runCfg(n *node, f *frame, funcNode, callNode *node) { var exec bltn defer func() { f.mutex.Lock() f.recovered = recover() for _, val := range f.deferred { val[0].Call(val[1:]) } if f.recovered != nil { oNode := originalExecNode(n, exec) if oNode == nil { oNode = n } errorer, ok := f.recovered.(error) // in this specific case, the stdlib would/will suppress the panic, so we // suppress the logging here accordingly, to get a similar and consistent // behavior. if !ok || errorer.Error() != errAbortHandler.Error() { fmt.Fprintln(n.interp.stderr, oNode.cfgErrorf("panic: %s(...)", panicFunc(oNode.scope))) } f.mutex.Unlock() panic(f.recovered) } f.mutex.Unlock() }() dbg := n.interp.debugger if dbg == nil { for exec := n.exec; exec != nil && f.runid() == n.interp.runid(); { exec = exec(f) } return } if n.exec == nil { return } dbg.enterCall(funcNode, callNode, f) defer dbg.exitCall(funcNode, callNode, f) for m, exec := n, n.exec; f.runid() == n.interp.runid(); { if dbg.exec(m, f) { break } exec = exec(f) if exec == nil { break } if m == nil { m = originalExecNode(n, exec) continue } switch { case isExecNode(m.tnext, exec): m = m.tnext case isExecNode(m.fnext, exec): m = m.fnext default: m = originalExecNode(m, exec) } } } func stripReceiverFromArgs(signature string) (string, error) { fields := receiverStripperRxp.FindStringSubmatch(signature) if len(fields) < 5 { return "", errors.New("error while matching method signature") } if fields[3] == ")" { return fmt.Sprintf("func()%s", fields[4]), nil } return fmt.Sprintf("func(%s", fields[4]), nil } func typeAssertShort(n *node) { typeAssert(n, true, false) } func typeAssertLong(n *node) { typeAssert(n, true, true) } func typeAssertStatus(n *node) { typeAssert(n, false, true) } func typeAssert(n *node, withResult, withOk bool) { c0, c1 := n.child[0], n.child[1] value := genValue(c0) // input value var value0, value1 func(*frame) reflect.Value setStatus := false switch { case withResult && withOk: value0 = genValue(n.anc.child[0]) // returned result value1 = genValue(n.anc.child[1]) // returned status setStatus = n.anc.child[1].ident != "_" // do not assign status to "_" case withResult && !withOk: value0 = genValue(n) // returned result case !withResult && withOk: value1 = genValue(n.anc.child[1]) // returned status setStatus = n.anc.child[1].ident != "_" // do not assign status to "_" } typ := c1.typ // type to assert or convert to typID := typ.id() rtype := typ.refType(nil) // type to assert next := getExec(n.tnext) switch { case isInterfaceSrc(typ): n.exec = func(f *frame) bltn { valf := value(f) v, ok := valf.Interface().(valueInterface) if setStatus { defer func() { value1(f).SetBool(ok) }() } if !ok { if !withOk { panic(n.cfgErrorf("interface conversion: nil is not %v", typID)) } return next } if c0.typ.cat == valueT { valf = reflect.ValueOf(v) } if v.node.typ.id() == typID { if withResult { value0(f).Set(valf) } return next } m0 := v.node.typ.methods() m1 := typ.methods() if len(m0) < len(m1) { ok = false if !withOk { panic(n.cfgErrorf("interface conversion: %v is not %v", v.node.typ.id(), typID)) } return next } for k, meth1 := range m1 { var meth0 string meth0, ok = m0[k] if !ok { return next } // As far as we know this equality check can fail because they are two ways to // represent the signature of a method: one where the receiver appears before the // func keyword, and one where it is just a func signature, and the receiver is // seen as the first argument. That's why if that equality fails, we try harder to // compare them afterwards. Hopefully that is the only reason this equality can fail. if meth0 == meth1 { continue } tm := lookupFieldOrMethod(v.node.typ, k) if tm == nil { ok = false return next } var err error meth0, err = stripReceiverFromArgs(meth0) if err != nil { ok = false return next } if meth0 != meth1 { ok = false return next } } if withResult { value0(f).Set(valf) } return next } case isInterface(typ): n.exec = func(f *frame) bltn { var leftType reflect.Type v := value(f) val, ok := v.Interface().(valueInterface) if setStatus { defer func() { value1(f).SetBool(ok) }() } if ok && val.node.typ.cat != valueT { m0 := val.node.typ.methods() m1 := typ.methods() if len(m0) < len(m1) { ok = false return next } for k, meth1 := range m1 { var meth0 string meth0, ok = m0[k] if !ok { return next } if meth0 != meth1 { ok = false return next } } if withResult { value0(f).Set(genInterfaceWrapper(val.node, rtype)(f)) } ok = true return next } if ok { v = val.value leftType = val.node.typ.rtype } else { v = v.Elem() leftType = v.Type() ok = true } ok = v.IsValid() if !ok { if !withOk { panic(n.cfgErrorf("interface conversion: interface {} is nil, not %s", rtype.String())) } return next } ok = canAssertTypes(leftType, rtype) if !ok { if !withOk { method := firstMissingMethod(leftType, rtype) panic(n.cfgErrorf("interface conversion: %s is not %s: missing method %s", leftType.String(), rtype.String(), method)) } return next } if withResult { value0(f).Set(v) } return next } case isEmptyInterface(n.child[0].typ): n.exec = func(f *frame) bltn { var ok bool if setStatus { defer func() { value1(f).SetBool(ok) }() } val := value(f) concrete := val.Interface() ctyp := reflect.TypeOf(concrete) if vv, ok := concrete.(valueInterface); ok { ctyp = vv.value.Type() concrete = vv.value.Interface() } ok = canAssertTypes(ctyp, rtype) if !ok { if !withOk { // TODO(mpl): think about whether this should ever happen. if ctyp == nil { panic(n.cfgErrorf("interface conversion: interface {} is nil, not %s", rtype.String())) } panic(n.cfgErrorf("interface conversion: interface {} is %s, not %s", ctyp.String(), rtype.String())) } return next } if withResult { if isInterfaceSrc(typ) { // TODO(mpl): this requires more work. the wrapped node is not complete enough. value0(f).Set(reflect.ValueOf(valueInterface{n.child[0], reflect.ValueOf(concrete)})) } else { value0(f).Set(reflect.ValueOf(concrete)) } } return next } case n.child[0].typ.cat == valueT || n.child[0].typ.cat == errorT: n.exec = func(f *frame) bltn { v := value(f).Elem() ok := v.IsValid() if setStatus { defer func() { value1(f).SetBool(ok) }() } if !ok { if !withOk { panic(n.cfgErrorf("interface conversion: interface {} is nil, not %s", rtype.String())) } return next } v = valueInterfaceValue(v) if vt := v.Type(); vt.Kind() == reflect.Struct && vt.Field(0).Name == "IValue" { // Value is retrieved from an interface wrapper. v = v.Field(0).Elem() } ok = canAssertTypes(v.Type(), rtype) if !ok { if !withOk { method := firstMissingMethod(v.Type(), rtype) panic(n.cfgErrorf("interface conversion: %s is not %s: missing method %s", v.Type().String(), rtype.String(), method)) } return next } if withResult { value0(f).Set(v) } return next } default: n.exec = func(f *frame) bltn { v, ok := value(f).Interface().(valueInterface) if setStatus { defer func() { value1(f).SetBool(ok) }() } if !ok || !v.value.IsValid() { ok = false if !withOk { panic(n.cfgErrorf("interface conversion: interface {} is nil, not %s", rtype.String())) } return next } ok = canAssertTypes(v.value.Type(), rtype) if !ok { if !withOk { panic(n.cfgErrorf("interface conversion: interface {} is %s, not %s", v.value.Type().String(), rtype.String())) } return next } if withResult { value0(f).Set(v.value) } return next } } } func canAssertTypes(src, dest reflect.Type) bool { if dest == nil { return false } if src == dest { return true } if dest.Kind() == reflect.Interface && src.Implements(dest) { return true } if src == nil { return false } if src.AssignableTo(dest) { return true } return false } func firstMissingMethod(src, dest reflect.Type) string { for i := 0; i < dest.NumMethod(); i++ { m := dest.Method(i).Name if _, ok := src.MethodByName(m); !ok { return m } } return "" } func convert(n *node) { dest := genValue(n) c := n.child[1] typ := n.child[0].typ.frameType() next := getExec(n.tnext) if c.isNil() { // convert nil to type // TODO(mpl): Try to completely remove, as maybe frameType already does the job for interfaces. if isInterfaceSrc(n.child[0].typ) && !isEmptyInterface(n.child[0].typ) { typ = valueInterfaceType } n.exec = func(f *frame) bltn { dest(f).Set(reflect.New(typ).Elem()) return next } return } doConvert := true var value func(*frame) reflect.Value switch { case isFuncSrc(c.typ): value = genFunctionWrapper(c) default: value = genValue(c) } for _, con := range n.interp.hooks.convert { if c.typ.rtype == nil { continue } fn := con(c.typ.rtype, typ) if fn == nil { continue } n.exec = func(f *frame) bltn { fn(value(f), dest(f)) return next } return } n.exec = func(f *frame) bltn { if doConvert { dest(f).Set(value(f).Convert(typ)) } else { dest(f).Set(value(f)) } return next } } // assignFromCall assigns values from a function call. func assignFromCall(n *node) { ncall := n.lastChild() l := len(n.child) - 1 if n.anc.kind == varDecl && n.child[l-1].isType(n.scope) { // Ignore the type in the assignment if it is part of a variable declaration. l-- } dvalue := make([]func(*frame) reflect.Value, l) for i := range dvalue { if n.child[i].ident == "_" { continue } dvalue[i] = genValue(n.child[i]) } next := getExec(n.tnext) n.exec = func(f *frame) bltn { for i, v := range dvalue { if v == nil { continue } s := f.data[ncall.findex+i] c := n.child[i] if n.kind == defineXStmt && !c.redeclared { // Recreate destination value in case of define statement, // to preserve previous value possibly in use by a closure. data := getFrame(f, c.level).data data[c.findex] = reflect.New(data[c.findex].Type()).Elem() data[c.findex].Set(s) continue } v(f).Set(s) } return next } } func assign(n *node) { next := getExec(n.tnext) dvalue := make([]func(*frame) reflect.Value, n.nleft) ivalue := make([]func(*frame) reflect.Value, n.nleft) svalue := make([]func(*frame) reflect.Value, n.nleft) var sbase int if n.nright > 0 { sbase = len(n.child) - n.nright } for i := 0; i < n.nleft; i++ { dest, src := n.child[i], n.child[sbase+i] if isNamedFuncSrc(src.typ) { svalue[i] = genFuncValue(src) } else { svalue[i] = genDestValue(dest.typ, src) } if isMapEntry(dest) { if isInterfaceSrc(dest.child[1].typ) { // key ivalue[i] = genValueInterface(dest.child[1]) } else { ivalue[i] = genValue(dest.child[1]) } dvalue[i] = genValue(dest.child[0]) } else { dvalue[i] = genValue(dest) } } if n.nleft == 1 { // Single assign operation. switch s, d, i := svalue[0], dvalue[0], ivalue[0]; { case n.child[0].ident == "_": n.exec = func(f *frame) bltn { return next } case i != nil: n.exec = func(f *frame) bltn { d(f).SetMapIndex(i(f), s(f)) return next } case n.kind == defineStmt: l := n.level ind := n.findex n.exec = func(f *frame) bltn { data := getFrame(f, l).data data[ind] = reflect.New(data[ind].Type()).Elem() data[ind].Set(s(f)) return next } default: n.exec = func(f *frame) bltn { d(f).Set(s(f)) return next } } return } // Multi assign operation. types := make([]reflect.Type, n.nright) index := make([]int, n.nright) level := make([]int, n.nright) for i := range types { var t reflect.Type switch typ := n.child[sbase+i].typ; { case isInterfaceSrc(typ): t = valueInterfaceType default: t = typ.TypeOf() } types[i] = t index[i] = n.child[i].findex level[i] = n.child[i].level } if n.kind == defineStmt { // Handle a multiple var declararation / assign. It cannot be a swap. n.exec = func(f *frame) bltn { for i, s := range svalue { if n.child[i].ident == "_" { continue } data := getFrame(f, level[i]).data j := index[i] data[j] = reflect.New(data[j].Type()).Elem() data[j].Set(s(f)) } return next } return } // To handle possible swap in multi-assign: // evaluate and copy all values in assign right hand side into temporary // then evaluate assign left hand side and copy temporary into it n.exec = func(f *frame) bltn { t := make([]reflect.Value, len(svalue)) for i, s := range svalue { if n.child[i].ident == "_" { continue } t[i] = reflect.New(types[i]).Elem() t[i].Set(s(f)) } for i, d := range dvalue { if n.child[i].ident == "_" { continue } if j := ivalue[i]; j != nil { d(f).SetMapIndex(j(f), t[i]) // Assign a map entry } else { d(f).Set(t[i]) // Assign a var or array/slice entry } } return next } } func not(n *node) { dest := genValue(n) value := genValue(n.child[0]) tnext := getExec(n.tnext) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { if !value(f).Bool() { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } else { n.exec = func(f *frame) bltn { dest(f).SetBool(!value(f).Bool()) return tnext } } } func addr(n *node) { dest := genValue(n) next := getExec(n.tnext) c0 := n.child[0] value := genValue(c0) if isInterfaceSrc(c0.typ) || isPtrSrc(c0.typ) { i := n.findex l := n.level n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Addr() return next } return } n.exec = func(f *frame) bltn { dest(f).Set(value(f).Addr()) return next } } func deref(n *node) { value := genValue(n.child[0]) tnext := getExec(n.tnext) i := n.findex l := n.level if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { r := value(f).Elem() if r.Bool() { getFrame(f, l).data[i] = r return tnext } return fnext } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Elem() return tnext } } } func _print(n *node) { child := n.child[1:] values := make([]func(*frame) reflect.Value, len(child)) for i, c := range child { values[i] = genValue(c) } out := n.interp.stdout genBuiltinDeferWrapper(n, values, nil, func(args []reflect.Value) []reflect.Value { for i, value := range args { if i > 0 { fmt.Fprintf(out, " ") } fmt.Fprintf(out, "%v", value) } return nil }) } func _println(n *node) { child := n.child[1:] values := make([]func(*frame) reflect.Value, len(child)) for i, c := range child { values[i] = genValue(c) } out := n.interp.stdout genBuiltinDeferWrapper(n, values, nil, func(args []reflect.Value) []reflect.Value { for i, value := range args { if i > 0 { fmt.Fprintf(out, " ") } fmt.Fprintf(out, "%v", value) } fmt.Fprintln(out, "") return nil }) } func _recover(n *node) { tnext := getExec(n.tnext) dest := genValue(n) n.exec = func(f *frame) bltn { if f.anc.recovered == nil { // TODO(mpl): maybe we don't need that special case, and we're just forgetting to unwrap the valueInterface somewhere else. if isEmptyInterface(n.typ) { return tnext } dest(f).Set(reflect.ValueOf(valueInterface{})) return tnext } if isEmptyInterface(n.typ) { dest(f).Set(reflect.ValueOf(f.anc.recovered)) } else { dest(f).Set(reflect.ValueOf(valueInterface{n, reflect.ValueOf(f.anc.recovered)})) } f.anc.recovered = nil return tnext } } func _panic(n *node) { value := genValue(n.child[1]) n.exec = func(f *frame) bltn { panic(value(f)) } } func genBuiltinDeferWrapper(n *node, in, out []func(*frame) reflect.Value, fn func([]reflect.Value) []reflect.Value) { next := getExec(n.tnext) if n.anc.kind == deferStmt { n.exec = func(f *frame) bltn { val := make([]reflect.Value, len(in)+1) inTypes := make([]reflect.Type, len(in)) for i, v := range in { val[i+1] = v(f) inTypes[i] = val[i+1].Type() } outTypes := make([]reflect.Type, len(out)) for i, v := range out { outTypes[i] = v(f).Type() } funcType := reflect.FuncOf(inTypes, outTypes, false) val[0] = reflect.MakeFunc(funcType, fn) f.deferred = append([][]reflect.Value{val}, f.deferred...) return next } return } n.exec = func(f *frame) bltn { val := make([]reflect.Value, len(in)) for i, v := range in { val[i] = v(f) } dests := fn(val) for i, dest := range dests { out[i](f).Set(dest) } return next } } func genFunctionWrapper(n *node) func(*frame) reflect.Value { var def *node var ok bool if def, ok = n.val.(*node); !ok { return genValueAsFunctionWrapper(n) } start := def.child[3].start numRet := len(def.typ.ret) var rcvr func(*frame) reflect.Value if n.recv != nil { rcvr = genValueRecv(n) } funcType := n.typ.TypeOf() return func(f *frame) reflect.Value { return reflect.MakeFunc(funcType, func(in []reflect.Value) []reflect.Value { // Allocate and init local frame. All values to be settable and addressable. fr := newFrame(f, len(def.types), f.runid()) d := fr.data for i, t := range def.types { d[i] = reflect.New(t).Elem() } if rcvr == nil { d = d[numRet:] } else { // Copy method receiver as first argument. src, dest := rcvr(f), d[numRet] sk, dk := src.Kind(), dest.Kind() for { vs, ok := src.Interface().(valueInterface) if !ok { break } src = vs.value sk = src.Kind() } switch { case sk == reflect.Ptr && dk != reflect.Ptr: dest.Set(src.Elem()) case sk != reflect.Ptr && dk == reflect.Ptr: dest.Set(src.Addr()) default: dest.Set(src) } d = d[numRet+1:] } // Copy function input arguments in local frame. for i, arg := range in { if i >= len(d) { // In case of unused arg, there may be not even a frame entry allocated, just skip. break } typ := def.typ.arg[i] switch { case isEmptyInterface(typ) || typ.TypeOf() == valueInterfaceType: d[i].Set(arg) case isInterfaceSrc(typ): d[i].Set(reflect.ValueOf(valueInterface{value: arg.Elem()})) default: d[i].Set(arg) } } // Interpreter code execution. runCfg(start, fr, def, n) return fr.data[:numRet] }) } } func genInterfaceWrapper(n *node, typ reflect.Type) func(*frame) reflect.Value { value := genValue(n) if typ == nil || typ.Kind() != reflect.Interface || typ.NumMethod() == 0 || n.typ.cat == valueT { return value } tc := n.typ.cat if tc != structT { // Always force wrapper generation for struct types, as they may contain // embedded interface fields which require wrapping, even if reported as // implementing typ by reflect. if nt := n.typ.frameType(); nt != nil && nt.Implements(typ) { return value } } // Retrieve methods from the interface wrapper, which is a struct where all fields // except the first define the methods to implement. // As the field name was generated with a prefixed first character (in order to avoid // collisions with method names), this first character is ignored in comparisons. wrap := getWrapper(n, typ) mn := wrap.NumField() - 1 names := make([]string, mn) methods := make([]*node, mn) indexes := make([][]int, mn) for i := 0; i < mn; i++ { names[i] = wrap.Field(i + 1).Name[1:] methods[i], indexes[i] = n.typ.lookupMethod(names[i]) if methods[i] == nil && n.typ.cat != nilT { // interpreted method not found, look for binary method, possibly embedded _, indexes[i], _, _ = n.typ.lookupBinMethod(names[i]) } } return func(f *frame) reflect.Value { v := value(f) if tc != structT && v.Type().Implements(typ) { return v } switch v.Kind() { case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice: if v.IsNil() { return reflect.New(typ).Elem() } } var n2 *node if vi, ok := v.Interface().(valueInterface); ok { n2 = vi.node } v = getConcreteValue(v) w := reflect.New(wrap).Elem() w.Field(0).Set(v) for i, m := range methods { if m == nil { // First direct method lookup on field. if r := methodByName(v, names[i], indexes[i]); r.IsValid() { w.Field(i + 1).Set(r) continue } if n2 == nil { panic(n.cfgErrorf("method not found: %s", names[i])) } // Method lookup in embedded valueInterface. m2, i2 := n2.typ.lookupMethod(names[i]) if m2 != nil { nod := *m2 nod.recv = &receiver{n, v, i2} w.Field(i + 1).Set(genFunctionWrapper(&nod)(f)) continue } panic(n.cfgErrorf("method not found: %s", names[i])) } nod := *m nod.recv = &receiver{n, v, indexes[i]} w.Field(i + 1).Set(genFunctionWrapper(&nod)(f)) } return w } } // methodByName returns the method corresponding to name on value, or nil if not found. // The search is extended on valueInterface wrapper if present. // If valid, the returned value is a method function with the receiver already set // (no need to pass it at call). func methodByName(value reflect.Value, name string, index []int) (v reflect.Value) { if vi, ok := value.Interface().(valueInterface); ok { if v = getConcreteValue(vi.value).MethodByName(name); v.IsValid() { return } } if v = value.MethodByName(name); v.IsValid() { return } for value.Kind() == reflect.Ptr { value = value.Elem() if checkFieldIndex(value.Type(), index) { value = value.FieldByIndex(index) } if v = value.MethodByName(name); v.IsValid() { return } } return } func checkFieldIndex(typ reflect.Type, index []int) bool { if len(index) == 0 { return false } t := typ for t.Kind() == reflect.Ptr { t = t.Elem() } if t.Kind() != reflect.Struct { return false } i := index[0] if i >= t.NumField() { return false } if len(index) > 1 { return checkFieldIndex(t.Field(i).Type, index[1:]) } return true } func call(n *node) { goroutine := n.anc.kind == goStmt c0 := n.child[0] value := genValue(c0) var values []func(*frame) reflect.Value numRet := len(c0.typ.ret) variadic := variadicPos(n) child := n.child[1:] tnext := getExec(n.tnext) fnext := getExec(n.fnext) hasVariadicArgs := n.action == aCallSlice // callSlice implies variadic call with ellipsis. // Compute input argument value functions. for i, c := range child { var arg *itype if variadic >= 0 && i >= variadic { arg = c0.typ.arg[variadic].val } else { arg = c0.typ.arg[i] } switch { case isBinCall(c, c.scope): // Handle nested function calls: pass returned values as arguments. numOut := c.child[0].typ.rtype.NumOut() for j := 0; j < numOut; j++ { ind := c.findex + j if hasVariadicArgs || !isInterfaceSrc(arg) || isEmptyInterface(arg) { values = append(values, func(f *frame) reflect.Value { return f.data[ind] }) continue } values = append(values, func(f *frame) reflect.Value { return reflect.ValueOf(valueInterface{value: f.data[ind]}) }) } case isRegularCall(c): // Arguments are return values of a nested function call. cc0 := c.child[0] for j := range cc0.typ.ret { ind := c.findex + j if hasVariadicArgs || !isInterfaceSrc(arg) || isEmptyInterface(arg) { values = append(values, func(f *frame) reflect.Value { return f.data[ind] }) continue } values = append(values, func(f *frame) reflect.Value { return reflect.ValueOf(valueInterface{node: cc0.typ.ret[j].node, value: f.data[ind]}) }) } default: if c.kind == basicLit || c.rval.IsValid() { argType := arg.TypeOf() convertLiteralValue(c, argType) } switch { case hasVariadicArgs: values = append(values, genValue(c)) case isInterfaceSrc(arg) && (!isEmptyInterface(arg) || len(c.typ.method) > 0): values = append(values, genValueInterface(c)) case isInterfaceBin(arg): values = append(values, genInterfaceWrapper(c, arg.rtype)) case isFuncSrc(arg): values = append(values, genFuncValue(c)) default: values = append(values, genValue(c)) } } } // Compute output argument value functions. rtypes := c0.typ.ret rvalues := make([]func(*frame) reflect.Value, len(rtypes)) switch n.anc.kind { case defineXStmt, assignXStmt: l := n.level for i := range rvalues { c := n.anc.child[i] switch { case c.ident == "_": // Skip assigning return value to blank var. case isInterfaceSrc(c.typ) && !isEmptyInterface(c.typ) && !isInterfaceSrc(rtypes[i]): rvalues[i] = genValueInterfaceValue(c) default: j := n.findex + i rvalues[i] = func(f *frame) reflect.Value { return getFrame(f, l).data[j] } } } case returnStmt: // Function call from a return statement: forward return values (always at frame start). for i := range rtypes { j := n.findex + i // Set the return value location in return value of caller frame. rvalues[i] = func(f *frame) reflect.Value { return f.data[j] } } default: // Multiple return values frame index are indexed from the node frame index. l := n.level for i := range rtypes { j := n.findex + i rvalues[i] = func(f *frame) reflect.Value { return getFrame(f, l).data[j] } } } if n.anc.kind == deferStmt { // Store function call in frame for deferred execution. value = genFunctionWrapper(c0) n.exec = func(f *frame) bltn { val := make([]reflect.Value, len(values)+1) val[0] = value(f) for i, v := range values { val[i+1] = v(f) } f.deferred = append([][]reflect.Value{val}, f.deferred...) return tnext } return } n.exec = func(f *frame) bltn { f.mutex.Lock() bf := value(f) def, ok := bf.Interface().(*node) if ok { bf = def.rval } f.mutex.Unlock() // Call bin func if defined if bf.IsValid() { var callf func([]reflect.Value) []reflect.Value // Lambda definitions are necessary here. Due to reflect internals, // having `callf = bf.Call` or `callf = bf.CallSlice` does not work. //nolint:gocritic if hasVariadicArgs { callf = func(in []reflect.Value) []reflect.Value { return bf.CallSlice(in) } } else { callf = func(in []reflect.Value) []reflect.Value { return bf.Call(in) } } if goroutine { // Goroutine's arguments should be copied. in := make([]reflect.Value, len(values)) for i, v := range values { value := v(f) in[i] = reflect.New(value.Type()).Elem() in[i].Set(value) } go callf(in) return tnext } in := make([]reflect.Value, len(values)) for i, v := range values { in[i] = v(f) } out := callf(in) for i, v := range rvalues { if v != nil { v(f).Set(out[i]) } } if fnext != nil && !out[0].Bool() { return fnext } return tnext } nf := newFrame(f, len(def.types), f.runid()) var vararg reflect.Value // Init return values for i, v := range rvalues { if v != nil { nf.data[i] = v(f) } else { nf.data[i] = reflect.New(def.types[i]).Elem() } } // Init local frame values for i, t := range def.types[numRet:] { nf.data[numRet+i] = reflect.New(t).Elem() } // Init variadic argument vector if variadic >= 0 { vararg = nf.data[numRet+variadic] } // Copy input parameters from caller if dest := nf.data[numRet:]; len(dest) > 0 { for i, v := range values { switch { case variadic >= 0 && i >= variadic: if v(f).Type() == vararg.Type() { vararg.Set(v(f)) } else { vararg.Set(reflect.Append(vararg, v(f))) } default: val := v(f) if val.IsZero() && dest[i].Kind() != reflect.Interface { // Work around a recursive struct zero interface issue. // Once there is a better way to handle this case, the dest can just be set. continue } if nod, ok := val.Interface().(*node); ok && nod.recv != nil { // An interpreted method is passed as value in a function call. // It must be wrapped now, otherwise the receiver will be missing // at the method call (#1332). // TODO (marc): wrapping interpreted functions should be always done // everywhere at runtime to simplify the whole code, // but it requires deeper refactoring. dest[i] = genFunctionWrapper(nod)(f) continue } dest[i].Set(val) } } } // Execute function body if goroutine { go runCfg(def.child[3].start, nf, def, n) return tnext } runCfg(def.child[3].start, nf, def, n) // Handle branching according to boolean result if fnext != nil && !nf.data[0].Bool() { return fnext } return tnext } } func getFrame(f *frame, l int) *frame { switch l { case globalFrame: return f.root case 0: return f case 1: return f.anc case 2: return f.anc.anc } for ; l > 0; l-- { f = f.anc } return f } // Callbin calls a function from a bin import, accessible through reflect. func callBin(n *node) { tnext := getExec(n.tnext) fnext := getExec(n.fnext) child := n.child[1:] c0 := n.child[0] value := genValue(c0) var values []func(*frame) reflect.Value funcType := c0.typ.rtype wt := wrappedType(c0) variadic := -1 if funcType.IsVariadic() { variadic = funcType.NumIn() - 1 } // A method signature obtained from reflect.Type includes receiver as 1st arg, except for interface types. rcvrOffset := 0 if recv := c0.recv; recv != nil && !isInterface(recv.node.typ) { if variadic > 0 || funcType.NumIn() > len(child) { rcvrOffset = 1 } } // getMapType returns a reflect type suitable for interface wrapper for functions // with some special processing in case of interface{} argument, i.e. fmt.Printf. var getMapType func(*itype) reflect.Type if lr, ok := n.interp.mapTypes[c0.rval]; ok { getMapType = func(typ *itype) reflect.Type { for _, rt := range lr { if typ.implements(&itype{cat: valueT, rtype: rt}) { return rt } } return nil } } // Determine if we should use `Call` or `CallSlice` on the function Value. callFn := func(v reflect.Value, in []reflect.Value) []reflect.Value { return v.Call(in) } if n.action == aCallSlice { callFn = func(v reflect.Value, in []reflect.Value) []reflect.Value { return v.CallSlice(in) } } for i, c := range child { switch { case isBinCall(c, c.scope): // Handle nested function calls: pass returned values as arguments numOut := c.child[0].typ.rtype.NumOut() for j := 0; j < numOut; j++ { ind := c.findex + j values = append(values, func(f *frame) reflect.Value { return valueInterfaceValue(f.data[ind]) }) } case isRegularCall(c): // Handle nested function calls: pass returned values as arguments for j := range c.child[0].typ.ret { ind := c.findex + j values = append(values, func(f *frame) reflect.Value { return valueInterfaceValue(f.data[ind]) }) } default: if c.kind == basicLit || c.rval.IsValid() { // Convert literal value (untyped) to function argument type (if not an interface{}) var argType reflect.Type if variadic >= 0 && i+rcvrOffset >= variadic { argType = funcType.In(variadic).Elem() } else { argType = funcType.In(i + rcvrOffset) } convertLiteralValue(c, argType) if !reflect.ValueOf(c.val).IsValid() { // Handle "nil" c.val = reflect.Zero(argType) } } if wt != nil && isInterfaceSrc(wt.arg[i]) { values = append(values, genValueInterface(c)) break } // defType is the target type for a potential interface wrapper. var defType reflect.Type if variadic >= 0 && i+rcvrOffset >= variadic { defType = funcType.In(variadic) } else { defType = funcType.In(rcvrOffset + i) } if getMapType != nil { if rt := getMapType(c.typ); rt != nil { defType = rt } } switch { case isEmptyInterface(c.typ): values = append(values, genValue(c)) case isInterfaceSrc(c.typ): values = append(values, genValueInterfaceValue(c)) case isFuncSrc(c.typ): values = append(values, genFunctionWrapper(c)) case c.typ.cat == arrayT || c.typ.cat == variadicT: if isEmptyInterface(c.typ.val) { values = append(values, genValueArray(c)) } else { values = append(values, genInterfaceWrapper(c, defType)) } case isPtrSrc(c.typ): if c.typ.val.cat == valueT { values = append(values, genValue(c)) } else { values = append(values, genInterfaceWrapper(c, defType)) } case c.typ.cat == valueT: values = append(values, genValue(c)) default: values = append(values, genInterfaceWrapper(c, defType)) } } } l := len(values) switch { case n.anc.kind == deferStmt: // Store function call in frame for deferred execution. n.exec = func(f *frame) bltn { val := make([]reflect.Value, l+1) val[0] = value(f) for i, v := range values { val[i+1] = getBinValue(getMapType, v, f) } f.deferred = append([][]reflect.Value{val}, f.deferred...) return tnext } case n.anc.kind == goStmt: // Execute function in a goroutine, discard results. n.exec = func(f *frame) bltn { in := make([]reflect.Value, l) for i, v := range values { in[i] = getBinValue(getMapType, v, f) } go callFn(value(f), in) return tnext } case fnext != nil: // Handle branching according to boolean result. index := n.findex level := n.level n.exec = func(f *frame) bltn { in := make([]reflect.Value, l) for i, v := range values { in[i] = getBinValue(getMapType, v, f) } res := callFn(value(f), in) b := res[0].Bool() getFrame(f, level).data[index].SetBool(b) if b { return tnext } return fnext } default: switch n.anc.action { case aAssignX: // The function call is part of an assign expression, store results direcly // to assigned location, to avoid an additional frame copy. // The optimization of aAssign is handled in assign(), and should not // be handled here. rvalues := make([]func(*frame) reflect.Value, funcType.NumOut()) for i := range rvalues { c := n.anc.child[i] if c.ident == "_" { continue } if isInterfaceSrc(c.typ) { rvalues[i] = genValueInterfaceValue(c) } else { rvalues[i] = genValue(c) } } n.exec = func(f *frame) bltn { in := make([]reflect.Value, l) for i, v := range values { in[i] = getBinValue(getMapType, v, f) } out := callFn(value(f), in) for i, v := range rvalues { if v == nil { continue // Skip assign "_". } c := n.anc.child[i] if n.anc.kind == defineXStmt && !c.redeclared { // In case of a define statement, the destination value in the frame // must be recreated. This is necessary to preserve the previous value // which may be still used in a separate closure. data := getFrame(f, c.level).data data[c.findex] = reflect.New(data[c.findex].Type()).Elem() data[c.findex].Set(out[i]) continue } v(f).Set(out[i]) } return tnext } case aReturn: // The function call is part of a return statement, store output results // directly in the frame location of outputs of the current function. b := childPos(n) n.exec = func(f *frame) bltn { in := make([]reflect.Value, l) for i, v := range values { in[i] = getBinValue(getMapType, v, f) } out := callFn(value(f), in) for i, v := range out { dest := f.data[b+i] if _, ok := dest.Interface().(valueInterface); ok { v = reflect.ValueOf(valueInterface{value: v}) } dest.Set(v) } return tnext } default: n.exec = func(f *frame) bltn { in := make([]reflect.Value, l) for i, v := range values { in[i] = getBinValue(getMapType, v, f) } out := callFn(value(f), in) for i := 0; i < len(out); i++ { r := out[i] if r.Kind() == reflect.Func { getFrame(f, n.level).data[n.findex+i] = r continue } dest := getFrame(f, n.level).data[n.findex+i] if _, ok := dest.Interface().(valueInterface); ok { r = reflect.ValueOf(valueInterface{value: r}) } dest.Set(r) } return tnext } } } } func getIndexBinMethod(n *node) { // dest := genValue(n) i := n.findex l := n.level m := n.val.(int) value := genValue(n.child[0]) next := getExec(n.tnext) n.exec = func(f *frame) bltn { // Can not use .Set() because dest type contains the receiver and source not // dest(f).Set(value(f).Method(m)) getFrame(f, l).data[i] = value(f).Method(m) return next } } func getIndexBinElemMethod(n *node) { i := n.findex l := n.level m := n.val.(int) value := genValue(n.child[0]) next := getExec(n.tnext) n.exec = func(f *frame) bltn { // Can not use .Set() because dest type contains the receiver and source not getFrame(f, l).data[i] = value(f).Elem().Method(m) return next } } func getIndexBinPtrMethod(n *node) { i := n.findex l := n.level m := n.val.(int) value := genValue(n.child[0]) next := getExec(n.tnext) n.exec = func(f *frame) bltn { // Can not use .Set() because dest type contains the receiver and source not getFrame(f, l).data[i] = value(f).Addr().Method(m) return next } } // getIndexArray returns array value from index. func getIndexArray(n *node) { tnext := getExec(n.tnext) value0 := genValueArray(n.child[0]) // array i := n.findex l := n.level if n.child[1].rval.IsValid() { // constant array index ai := int(vInt(n.child[1].rval)) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { r := value0(f).Index(ai) getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value0(f).Index(ai) return tnext } } } else { value1 := genValueInt(n.child[1]) // array index if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { _, vi := value1(f) r := value0(f).Index(int(vi)) getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } } else { n.exec = func(f *frame) bltn { _, vi := value1(f) getFrame(f, l).data[i] = value0(f).Index(int(vi)) return tnext } } } } // getIndexMap retrieves map value from index. func getIndexMap(n *node) { dest := genValue(n) value0 := genValue(n.child[0]) // map tnext := getExec(n.tnext) z := reflect.New(n.child[0].typ.frameType().Elem()).Elem() if n.child[1].rval.IsValid() { // constant map index mi := n.child[1].rval switch { case n.fnext != nil: fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { if v := value0(f).MapIndex(mi); v.IsValid() && v.Bool() { dest(f).SetBool(true) return tnext } dest(f).Set(z) return fnext } default: n.exec = func(f *frame) bltn { if v := value0(f).MapIndex(mi); v.IsValid() { dest(f).Set(v) } else { dest(f).Set(z) } return tnext } } } else { value1 := genValue(n.child[1]) // map index switch { case n.fnext != nil: fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { if v := value0(f).MapIndex(value1(f)); v.IsValid() && v.Bool() { dest(f).SetBool(true) return tnext } dest(f).Set(z) return fnext } default: n.exec = func(f *frame) bltn { if v := value0(f).MapIndex(value1(f)); v.IsValid() { dest(f).Set(v) } else { dest(f).Set(z) } return tnext } } } } // getIndexMap2 retrieves map value from index and set status. func getIndexMap2(n *node) { dest := genValue(n.anc.child[0]) // result value0 := genValue(n.child[0]) // map value2 := genValue(n.anc.child[1]) // status next := getExec(n.tnext) doValue := n.anc.child[0].ident != "_" doStatus := n.anc.child[1].ident != "_" if !doValue && !doStatus { nop(n) return } if n.child[1].rval.IsValid() { // constant map index mi := n.child[1].rval switch { case !doValue: n.exec = func(f *frame) bltn { v := value0(f).MapIndex(mi) value2(f).SetBool(v.IsValid()) return next } default: n.exec = func(f *frame) bltn { v := value0(f).MapIndex(mi) if v.IsValid() { dest(f).Set(v) } if doStatus { value2(f).SetBool(v.IsValid()) } return next } } } else { value1 := genValue(n.child[1]) // map index switch { case !doValue: n.exec = func(f *frame) bltn { v := value0(f).MapIndex(value1(f)) value2(f).SetBool(v.IsValid()) return next } default: n.exec = func(f *frame) bltn { v := value0(f).MapIndex(value1(f)) if v.IsValid() { dest(f).Set(v) } if doStatus { value2(f).SetBool(v.IsValid()) } return next } } } } // getFunc compiles a closure function generator for anonymous functions. func getFunc(n *node) { i := n.findex l := n.level next := getExec(n.tnext) numRet := len(n.typ.ret) n.exec = func(f *frame) bltn { fr := f.clone() o := getFrame(f, l).data[i] fct := reflect.MakeFunc(n.typ.TypeOf(), func(in []reflect.Value) []reflect.Value { // Allocate and init local frame. All values to be settable and addressable. fr2 := newFrame(fr, len(n.types), fr.runid()) d := fr2.data for i, t := range n.types { d[i] = reflect.New(t).Elem() } d = d[numRet:] // Copy function input arguments in local frame. for i, arg := range in { if i >= len(d) { // In case of unused arg, there may be not even a frame entry allocated, just skip. break } typ := n.typ.arg[i] switch { case isEmptyInterface(typ) || typ.TypeOf() == valueInterfaceType: d[i].Set(arg) case isInterfaceSrc(typ): d[i].Set(reflect.ValueOf(valueInterface{value: arg.Elem()})) default: d[i].Set(arg) } } // Interpreter code execution. runCfg(n.child[3].start, fr2, n, n) f.mutex.Lock() getFrame(f, l).data[i] = o f.mutex.Unlock() return fr2.data[:numRet] }) f.mutex.Lock() getFrame(f, l).data[i] = fct f.mutex.Unlock() return next } } func getMethod(n *node) { i := n.findex l := n.level next := getExec(n.tnext) n.exec = func(f *frame) bltn { nod := *(n.val.(*node)) nod.val = &nod nod.recv = n.recv getFrame(f, l).data[i] = genFuncValue(&nod)(f) return next } } func getMethodByName(n *node) { next := getExec(n.tnext) value0 := genValue(n.child[0]) name := n.child[1].ident i := n.findex l := n.level n.exec = func(f *frame) bltn { // The interface object must be directly accessible, or embedded in a struct (exported anonymous field). val0 := value0(f) val, ok := value0(f).Interface().(valueInterface) if !ok { // Search the first embedded valueInterface. for val0.Kind() == reflect.Ptr { val0 = val0.Elem() } for i := 0; i < val0.NumField(); i++ { fld := val0.Type().Field(i) if !fld.Anonymous || !fld.IsExported() { continue } if val, ok = val0.Field(i).Interface().(valueInterface); ok { break // TODO: should we keep track of all the vals that are indeed valueInterface, // so that later on we can call MethodByName on all of them until one matches? } } if !ok { panic(n.cfgErrorf("invalid interface value %v", val0)) } } // Traverse nested interface values to get the concrete value. for { v, ok := val.value.Interface().(valueInterface) if !ok { break } val = v } if met := val.value.MethodByName(name); met.IsValid() { getFrame(f, l).data[i] = met return next } typ := val.node.typ if typ.node == nil && typ.cat == valueT { // It happens with a var of empty interface type, that has value of concrete type // from runtime, being asserted to "user-defined" interface. if _, ok := typ.rtype.MethodByName(name); !ok { panic(n.cfgErrorf("method not found: %s", name)) } return next } // Finally search method recursively in embedded valueInterfaces. r, m, li := lookupMethodValue(val, name) if r.IsValid() { getFrame(f, l).data[i] = r return next } if m == nil { panic(n.cfgErrorf("method not found: %s", name)) } nod := *m nod.val = &nod nod.recv = &receiver{nil, val.value, li} getFrame(f, l).data[i] = genFuncValue(&nod)(f) return next } } // lookupMethodValue recursively looks within val for the method with the given // name. If a runtime value is found, it is returned in r, otherwise it is returned // in m, with li as the list of recursive field indexes. func lookupMethodValue(val valueInterface, name string) (r reflect.Value, m *node, li []int) { if r = val.value.MethodByName(name); r.IsValid() { return } if m, li = val.node.typ.lookupMethod(name); m != nil { return } if !isStruct(val.node.typ) { return } v := val.value for v.Type().Kind() == reflect.Ptr { v = v.Elem() } nf := v.NumField() for i := 0; i < nf; i++ { vi, ok := v.Field(i).Interface().(valueInterface) if !ok { continue } if r, m, li = lookupMethodValue(vi, name); m != nil { li = append([]int{i}, li...) return } } return } func getIndexSeq(n *node) { value := genValue(n.child[0]) index := n.val.([]int) tnext := getExec(n.tnext) i := n.findex l := n.level // Note: // Here we have to store the result using // f.data[i] = value(...) // instead of normal // dest(f).Set(value(...) // because the value returned by FieldByIndex() must be preserved // for possible future Set operations on the struct field (avoid a // dereference from Set, resulting in setting a copy of the // original field). if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { v := value(f) r := v.FieldByIndex(index) getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } } else { n.exec = func(f *frame) bltn { v := value(f) getFrame(f, l).data[i] = v.FieldByIndex(index) return tnext } } } func getPtrIndexSeq(n *node) { index := n.val.([]int) tnext := getExec(n.tnext) value := genValue(n.child[0]) i := n.findex l := n.level if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { r := value(f).Elem().FieldByIndex(index) getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Elem().FieldByIndex(index) return tnext } } } func getIndexSeqField(n *node) { value := genValue(n.child[0]) index := n.val.([]int) i := n.findex l := n.level tnext := getExec(n.tnext) if n.fnext != nil { fnext := getExec(n.fnext) if n.child[0].typ.TypeOf().Kind() == reflect.Ptr { n.exec = func(f *frame) bltn { r := value(f).Elem().FieldByIndex(index) getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } } else { n.exec = func(f *frame) bltn { r := value(f).FieldByIndex(index) getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } } } else { if n.child[0].typ.TypeOf().Kind() == reflect.Ptr { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Elem().FieldByIndex(index) return tnext } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).FieldByIndex(index) return tnext } } } } func getIndexSeqPtrMethod(n *node) { value := genValue(n.child[0]) index := n.val.([]int) fi := index[1:] mi := index[0] i := n.findex l := n.level next := getExec(n.tnext) if n.child[0].typ.TypeOf().Kind() == reflect.Ptr { if len(fi) == 0 { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Method(mi) return next } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Elem().FieldByIndex(fi).Addr().Method(mi) return next } } } else { if len(fi) == 0 { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Addr().Method(mi) return next } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).FieldByIndex(fi).Addr().Method(mi) return next } } } } func getIndexSeqMethod(n *node) { value := genValue(n.child[0]) index := n.val.([]int) fi := index[1:] mi := index[0] i := n.findex l := n.level next := getExec(n.tnext) if n.child[0].typ.TypeOf().Kind() == reflect.Ptr { if len(fi) == 0 { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Elem().Method(mi) return next } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Elem().FieldByIndex(fi).Method(mi) return next } } } else { if len(fi) == 0 { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).Method(mi) return next } } else { n.exec = func(f *frame) bltn { getFrame(f, l).data[i] = value(f).FieldByIndex(fi).Method(mi) return next } } } } func neg(n *node) { dest := genValue(n) value := genValue(n.child[0]) next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface switch n.typ.TypeOf().Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(-value(f).Int()).Convert(typ)) return next } return } n.exec = func(f *frame) bltn { dest(f).SetInt(-value(f).Int()) return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(-value(f).Uint()).Convert(typ)) return next } return } n.exec = func(f *frame) bltn { dest(f).SetUint(-value(f).Uint()) return next } case reflect.Float32, reflect.Float64: if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(-value(f).Float()).Convert(typ)) return next } return } n.exec = func(f *frame) bltn { dest(f).SetFloat(-value(f).Float()) return next } case reflect.Complex64, reflect.Complex128: if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(-value(f).Complex()).Convert(typ)) return next } return } n.exec = func(f *frame) bltn { dest(f).SetComplex(-value(f).Complex()) return next } } } func pos(n *node) { dest := genValue(n) value := genValue(n.child[0]) next := getExec(n.tnext) n.exec = func(f *frame) bltn { dest(f).Set(value(f)) return next } } func bitNot(n *node) { dest := genValue(n) value := genValue(n.child[0]) next := getExec(n.tnext) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface switch typ.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(^value(f).Int()).Convert(typ)) return next } return } n.exec = func(f *frame) bltn { dest(f).SetInt(^value(f).Int()) return next } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(^value(f).Uint()).Convert(typ)) return next } return } n.exec = func(f *frame) bltn { dest(f).SetUint(^value(f).Uint()) return next } } } func land(n *node) { value0 := genValue(n.child[0]) value1 := genValue(n.child[1]) tnext := getExec(n.tnext) dest := genValue(n) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { if value0(f).Bool() && value1(f).Bool() { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } return } if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(value0(f).Bool() && value1(f).Bool()).Convert(typ)) return tnext } return } n.exec = func(f *frame) bltn { dest(f).SetBool(value0(f).Bool() && value1(f).Bool()) return tnext } } func lor(n *node) { value0 := genValue(n.child[0]) value1 := genValue(n.child[1]) tnext := getExec(n.tnext) dest := genValue(n) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { if value0(f).Bool() || value1(f).Bool() { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } return } if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(value0(f).Bool() || value1(f).Bool()).Convert(typ)) return tnext } return } n.exec = func(f *frame) bltn { dest(f).SetBool(value0(f).Bool() || value1(f).Bool()) return tnext } } func nop(n *node) { next := getExec(n.tnext) n.exec = func(f *frame) bltn { return next } } func branch(n *node) { tnext := getExec(n.tnext) fnext := getExec(n.fnext) value := genValue(n) n.exec = func(f *frame) bltn { if value(f).Bool() { return tnext } return fnext } } func _return(n *node) { child := n.child def := n.val.(*node) values := make([]func(*frame) reflect.Value, len(child)) for i, c := range child { switch t := def.typ.ret[i]; t.cat { case errorT: values[i] = genInterfaceWrapper(c, t.TypeOf()) case funcT: values[i] = genValue(c) case valueT: switch t.rtype.Kind() { case reflect.Interface: values[i] = genInterfaceWrapper(c, t.TypeOf()) continue case reflect.Func: values[i] = genFunctionWrapper(c) continue } fallthrough default: switch { case isInterfaceSrc(t): if len(t.field) == 0 { // empty interface case. // we can't let genValueInterface deal with it, because we call on c, // not on n, which means that the interfaceT knowledge is lost. values[i] = genValue(c) break } values[i] = genValueInterface(c) case c.typ.untyped: values[i] = genValueAs(c, t.TypeOf()) default: values[i] = genValue(c) } } } switch len(child) { case 0: n.exec = nil case 1: switch { case !child[0].rval.IsValid() && child[0].kind == binaryExpr: // No additional runtime operation is necessary for constants (not in frame) or // binary expressions (stored directly at the right location in frame). n.exec = nil case isCall(child[0]) && n.child[0].typ.id() == def.typ.ret[0].id(): // Calls are optmized as long as no type conversion is involved. n.exec = nil default: // Regular return: store the value to return at to start of the frame. v := values[0] n.exec = func(f *frame) bltn { f.data[0].Set(v(f)) return nil } } case 2: v0, v1 := values[0], values[1] n.exec = func(f *frame) bltn { f.data[0].Set(v0(f)) f.data[1].Set(v1(f)) return nil } default: n.exec = func(f *frame) bltn { for i, value := range values { f.data[i].Set(value(f)) } return nil } } } func arrayLit(n *node) { value := valueGenerator(n, n.findex) next := getExec(n.tnext) child := n.child if n.nleft == 1 { child = n.child[1:] } values := make([]func(*frame) reflect.Value, len(child)) index := make([]int, len(child)) var max, prev int ntyp := n.typ.resolveAlias() for i, c := range child { if c.kind == keyValueExpr { values[i] = genDestValue(ntyp.val, c.child[1]) index[i] = int(vInt(c.child[0].rval)) } else { values[i] = genDestValue(ntyp.val, c) index[i] = prev } prev = index[i] + 1 if prev > max { max = prev } } typ := n.typ.frameType() kind := typ.Kind() n.exec = func(f *frame) bltn { var a reflect.Value if kind == reflect.Slice { a = reflect.MakeSlice(typ, max, max) } else { a, _ = n.typ.zero() } for i, v := range values { a.Index(index[i]).Set(v(f)) } value(f).Set(a) return next } } func mapLit(n *node) { value := valueGenerator(n, n.findex) next := getExec(n.tnext) child := n.child if n.nleft == 1 { child = n.child[1:] } typ := n.typ.frameType() keys := make([]func(*frame) reflect.Value, len(child)) values := make([]func(*frame) reflect.Value, len(child)) for i, c := range child { keys[i] = genDestValue(n.typ.key, c.child[0]) values[i] = genDestValue(n.typ.val, c.child[1]) } n.exec = func(f *frame) bltn { m := reflect.MakeMap(typ) for i, k := range keys { m.SetMapIndex(k(f), values[i](f)) } value(f).Set(m) return next } } func compositeBinMap(n *node) { value := valueGenerator(n, n.findex) next := getExec(n.tnext) child := n.child if n.nleft == 1 { child = n.child[1:] } typ := n.typ.frameType() keys := make([]func(*frame) reflect.Value, len(child)) values := make([]func(*frame) reflect.Value, len(child)) for i, c := range child { convertLiteralValue(c.child[0], typ.Key()) convertLiteralValue(c.child[1], typ.Elem()) keys[i] = genValue(c.child[0]) if isFuncSrc(c.child[1].typ) { values[i] = genFunctionWrapper(c.child[1]) } else { values[i] = genValue(c.child[1]) } } n.exec = func(f *frame) bltn { m := reflect.MakeMap(typ) for i, k := range keys { m.SetMapIndex(k(f), values[i](f)) } value(f).Set(m) return next } } func compositeBinSlice(n *node) { value := valueGenerator(n, n.findex) next := getExec(n.tnext) child := n.child if n.nleft == 1 { child = n.child[1:] } values := make([]func(*frame) reflect.Value, len(child)) index := make([]int, len(child)) rtype := n.typ.rtype.Elem() var max, prev int for i, c := range child { if c.kind == keyValueExpr { convertLiteralValue(c.child[1], rtype) values[i] = genValue(c.child[1]) index[i] = int(vInt(c.child[0].rval)) } else { convertLiteralValue(c, rtype) values[i] = genValue(c) index[i] = prev } prev = index[i] + 1 if prev > max { max = prev } } typ := n.typ.frameType() kind := typ.Kind() n.exec = func(f *frame) bltn { var a reflect.Value if kind == reflect.Slice { a = reflect.MakeSlice(typ, max, max) } else { a, _ = n.typ.zero() } for i, v := range values { a.Index(index[i]).Set(v(f)) } value(f).Set(a) return next } } // doCompositeBinStruct creates and populates a struct object from a binary type. func doCompositeBinStruct(n *node, hasType bool) { next := getExec(n.tnext) value := valueGenerator(n, n.findex) typ := n.typ.rtype if n.typ.cat == ptrT || n.typ.cat == linkedT { typ = n.typ.val.rtype } child := n.child if hasType { child = n.child[1:] } values := make([]func(*frame) reflect.Value, len(child)) fieldIndex := make([][]int, len(child)) for i, c := range child { if c.kind == keyValueExpr { if sf, ok := typ.FieldByName(c.child[0].ident); ok { fieldIndex[i] = sf.Index convertLiteralValue(c.child[1], sf.Type) if isFuncSrc(c.child[1].typ) { values[i] = genFunctionWrapper(c.child[1]) } else { values[i] = genValue(c.child[1]) } } } else { fieldIndex[i] = []int{i} if isFuncSrc(c.typ) && len(c.child) > 1 { convertLiteralValue(c.child[1], typ.Field(i).Type) values[i] = genFunctionWrapper(c.child[1]) } else { convertLiteralValue(c, typ.Field(i).Type) values[i] = genValue(c) } } } frameIndex := n.findex l := n.level n.exec = func(f *frame) bltn { s := reflect.New(typ).Elem() for i, v := range values { s.FieldByIndex(fieldIndex[i]).Set(v(f)) } d := value(f) switch { case d.Kind() == reflect.Ptr: d.Set(s.Addr()) default: getFrame(f, l).data[frameIndex] = s } return next } } func compositeBinStruct(n *node) { doCompositeBinStruct(n, true) } func compositeBinStructNotype(n *node) { doCompositeBinStruct(n, false) } func destType(n *node) *itype { switch n.anc.kind { case assignStmt, defineStmt: return n.anc.child[0].typ default: return n.typ } } func doComposite(n *node, hasType bool, keyed bool) { value := valueGenerator(n, n.findex) next := getExec(n.tnext) typ := n.typ if typ.cat == ptrT || typ.cat == linkedT { typ = typ.val } child := n.child if hasType { child = n.child[1:] } destInterface := isInterfaceSrc(destType(n)) values := make(map[int]func(*frame) reflect.Value) for i, c := range child { var val *node var fieldIndex int if keyed { val = c.child[1] fieldIndex = typ.fieldIndex(c.child[0].ident) } else { val = c fieldIndex = i } ft := typ.field[fieldIndex].typ rft := ft.TypeOf() convertLiteralValue(val, rft) switch { case val.typ.cat == nilT: values[fieldIndex] = func(*frame) reflect.Value { return reflect.New(rft).Elem() } case isNamedFuncSrc(val.typ): values[fieldIndex] = genValueAsFunctionWrapper(val) case isInterfaceSrc(ft) && (!isEmptyInterface(ft) || len(val.typ.method) > 0): values[fieldIndex] = genValueInterface(val) case isInterface(ft): values[fieldIndex] = genInterfaceWrapper(val, rft) default: values[fieldIndex] = genValue(val) } } frameIndex := n.findex l := n.level rt := typ.TypeOf() n.exec = func(f *frame) bltn { a := reflect.New(rt).Elem() for i, v := range values { a.Field(i).Set(v(f)) } d := value(f) switch { case d.Kind() == reflect.Ptr: d.Set(a.Addr()) case destInterface: if len(destType(n).field) > 0 { d.Set(reflect.ValueOf(valueInterface{n, a})) break } d.Set(a) default: getFrame(f, l).data[frameIndex] = a } return next } } // doCompositeLit creates and populates a struct object. func doCompositeLit(n *node, hasType bool) { doComposite(n, hasType, false) } func compositeLit(n *node) { doCompositeLit(n, true) } func compositeLitNotype(n *node) { doCompositeLit(n, false) } // doCompositeLitKeyed creates a struct Object, filling fields from sparse key-values. func doCompositeLitKeyed(n *node, hasType bool) { doComposite(n, hasType, true) } func compositeLitKeyed(n *node) { doCompositeLitKeyed(n, true) } func compositeLitKeyedNotype(n *node) { doCompositeLitKeyed(n, false) } func empty(n *node) {} var rat = reflect.ValueOf((*[]rune)(nil)).Type().Elem() // runes array type func _range(n *node) { index0 := n.child[0].findex // array index location in frame index2 := index0 - 1 // shallow array for range, always just behind index0 index3 := index2 - 1 // additional location to store string char position fnext := getExec(n.fnext) tnext := getExec(n.tnext) var value func(*frame) reflect.Value var an *node if len(n.child) == 4 { an = n.child[2] index1 := n.child[1].findex // array value location in frame if isString(an.typ.TypeOf()) { // Special variant of "range" for string, where the index indicates the byte position // of the rune in the string, rather than the index of the rune in array. stringType := reflect.TypeOf("") value = genValueAs(an, rat) // range on string iterates over runes n.exec = func(f *frame) bltn { a := f.data[index2] v0 := f.data[index3] v0.SetInt(v0.Int() + 1) i := int(v0.Int()) if i >= a.Len() { return fnext } // Compute byte position of the rune in string pos := a.Slice(0, i).Convert(stringType).Len() f.data[index0].SetInt(int64(pos)) f.data[index1].Set(a.Index(i)) return tnext } } else { value = genValueRangeArray(an) n.exec = func(f *frame) bltn { a := f.data[index2] v0 := f.data[index0] v0.SetInt(v0.Int() + 1) i := int(v0.Int()) if i >= a.Len() { return fnext } f.data[index1].Set(a.Index(i)) return tnext } } } else { an = n.child[1] if isString(an.typ.TypeOf()) { value = genValueAs(an, rat) // range on string iterates over runes } else { value = genValueRangeArray(an) } n.exec = func(f *frame) bltn { v0 := f.data[index0] v0.SetInt(v0.Int() + 1) if int(v0.Int()) >= f.data[index2].Len() { return fnext } return tnext } } // Init sequence next := n.exec index := index0 if isString(an.typ.TypeOf()) && len(n.child) == 4 { index = index3 } n.child[0].exec = func(f *frame) bltn { f.data[index2] = value(f) // set array shallow copy for range f.data[index].SetInt(-1) // assing index value return next } } func rangeChan(n *node) { i := n.child[0].findex // element index location in frame value := genValue(n.child[1]) // chan fnext := getExec(n.fnext) tnext := getExec(n.tnext) n.exec = func(f *frame) bltn { f.mutex.RLock() done := f.done f.mutex.RUnlock() chosen, v, ok := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: value(f)}}) if chosen == 0 { return nil } if !ok { return fnext } f.data[i].Set(v) return tnext } } func rangeMap(n *node) { index0 := n.child[0].findex // map index location in frame index2 := index0 - 1 // iterator for range, always just behind index0 fnext := getExec(n.fnext) tnext := getExec(n.tnext) var value func(*frame) reflect.Value if len(n.child) == 4 { index1 := n.child[1].findex // map value location in frame value = genValue(n.child[2]) // map n.exec = func(f *frame) bltn { iter := f.data[index2].Interface().(*reflect.MapIter) if !iter.Next() { return fnext } f.data[index0].Set(iter.Key()) f.data[index1].Set(iter.Value()) return tnext } } else { value = genValue(n.child[1]) // map n.exec = func(f *frame) bltn { iter := f.data[index2].Interface().(*reflect.MapIter) if !iter.Next() { return fnext } f.data[index0].Set(iter.Key()) return tnext } } // Init sequence next := n.exec n.child[0].exec = func(f *frame) bltn { f.data[index2].Set(reflect.ValueOf(value(f).MapRange())) return next } } func _case(n *node) { tnext := getExec(n.tnext) // TODO(mpl): a lot of what is done in typeAssert should probably be redone/reused here. switch { case n.anc.anc.kind == typeSwitch: fnext := getExec(n.fnext) sn := n.anc.anc // switch node types := make([]*itype, len(n.child)-1) for i := range types { types[i] = n.child[i].typ } srcValue := genValue(sn.child[1].lastChild().child[0]) if len(sn.child[1].child) != 2 { // no assign in switch guard if len(n.child) <= 1 { n.exec = func(f *frame) bltn { return tnext } } else { n.exec = func(f *frame) bltn { ival := srcValue(f).Interface() val, ok := ival.(valueInterface) // TODO(mpl): I'm assuming here that !ok means that we're dealing with the empty // interface case. But maybe we should make sure by checking the relevant cat // instead? later. Use t := v.Type(); t.Kind() == reflect.Interface , like above. if !ok { var stype string if ival != nil { stype = strings.ReplaceAll(reflect.TypeOf(ival).String(), " {}", "{}") } for _, typ := range types { // TODO(mpl): we should actually use canAssertTypes, but need to find a valid // rtype for typ. Plus we need to refactor with typeAssert(). // weak check instead for now. if ival == nil { if typ.cat == nilT { return tnext } continue } if stype == typ.id() { return tnext } } return fnext } if v := val.node; v != nil { for _, typ := range types { if v.typ.id() == typ.id() { return tnext } } } return fnext } } break } // assign in switch guard destValue := genValue(n.lastChild().child[0]) switch len(types) { case 0: // default clause: assign var to interface value n.exec = func(f *frame) bltn { destValue(f).Set(srcValue(f)) return tnext } case 1: // match against 1 type: assign var to concrete value typ := types[0] n.exec = func(f *frame) bltn { v := srcValue(f) if !v.IsValid() { // match zero value against nil if typ.cat == nilT { return tnext } return fnext } if t := v.Type(); t.Kind() == reflect.Interface { if typ.cat == nilT && v.IsNil() { return tnext } rtyp := typ.TypeOf() if rtyp == nil { return fnext } elem := v.Elem() if rtyp.String() == t.String() && implementsInterface(v, typ) { destValue(f).Set(elem) return tnext } ival := v.Interface() if ival != nil && rtyp.String() == reflect.TypeOf(ival).String() { destValue(f).Set(elem) return tnext } if typ.cat == valueT && rtyp.Kind() == reflect.Interface && elem.IsValid() && elem.Type().Implements(rtyp) { destValue(f).Set(elem) return tnext } return fnext } if vi, ok := v.Interface().(valueInterface); ok { if vi.node != nil { if vi.node.typ.id() == typ.id() { destValue(f).Set(vi.value) return tnext } } return fnext } if v.Type() == typ.TypeOf() { destValue(f).Set(v) return tnext } return fnext } default: n.exec = func(f *frame) bltn { val := srcValue(f) if t := val.Type(); t.Kind() == reflect.Interface { for _, typ := range types { if typ.cat == nilT && val.IsNil() { return tnext } rtyp := typ.TypeOf() if rtyp == nil { continue } elem := val.Elem() if rtyp.String() == t.String() && implementsInterface(val, typ) { destValue(f).Set(elem) return tnext } ival := val.Interface() if ival != nil && rtyp.String() == reflect.TypeOf(ival).String() { destValue(f).Set(elem) return tnext } if typ.cat == valueT && rtyp.Kind() == reflect.Interface && elem.IsValid() && elem.Type().Implements(rtyp) { destValue(f).Set(elem) return tnext } } return fnext } if vi, ok := val.Interface().(valueInterface); ok { if v := vi.node; v != nil { for _, typ := range types { if v.typ.id() == typ.id() { destValue(f).Set(val) return tnext } } } return fnext } vt := val.Type() for _, typ := range types { if vt == typ.TypeOf() { destValue(f).Set(val) return tnext } } return fnext } } case len(n.child) <= 1: // default clause n.exec = func(f *frame) bltn { return tnext } default: fnext := getExec(n.fnext) l := len(n.anc.anc.child) value := genValue(n.anc.anc.child[l-2]) values := make([]func(*frame) reflect.Value, len(n.child)-1) for i := range values { values[i] = genValue(n.child[i]) } n.exec = func(f *frame) bltn { v0 := value(f) for _, v := range values { v1 := v(f) if !v0.Type().AssignableTo(v1.Type()) { v0 = v0.Convert(v1.Type()) } if v0.Interface() == v1.Interface() { return tnext } } return fnext } } } func implementsInterface(v reflect.Value, t *itype) bool { rt := v.Type() if t.cat == valueT { return rt.Implements(t.rtype) } vt := &itype{cat: valueT, rtype: rt} if vt.methods().contains(t.methods()) { return true } vi, ok := v.Interface().(valueInterface) if !ok { return false } return vi.node != nil && vi.node.typ.methods().contains(t.methods()) } func appendSlice(n *node) { dest := genValueOutput(n, n.typ.rtype) next := getExec(n.tnext) value := genValue(n.child[1]) value0 := genValue(n.child[2]) if isString(n.child[2].typ.TypeOf()) { typ := reflect.TypeOf([]byte{}) n.exec = func(f *frame) bltn { dest(f).Set(reflect.AppendSlice(value(f), value0(f).Convert(typ))) return next } } else { n.exec = func(f *frame) bltn { dest(f).Set(reflect.AppendSlice(value(f), value0(f))) return next } } } func _append(n *node) { if len(n.child) == 3 { c1, c2 := n.child[1], n.child[2] if (c1.typ.cat == valueT || c2.typ.cat == valueT) && c1.typ.rtype == c2.typ.rtype || isArray(c2.typ) && c2.typ.elem().id() == n.typ.elem().id() || isByteArray(c1.typ.TypeOf()) && isString(c2.typ.TypeOf()) { appendSlice(n) return } } dest := genValueOutput(n, n.typ.rtype) value := genValue(n.child[1]) next := getExec(n.tnext) switch l := len(n.child); { case l == 2: n.exec = func(f *frame) bltn { dest(f).Set(value(f)) return next } case l > 3: args := n.child[2:] l := len(args) values := make([]func(*frame) reflect.Value, l) for i, arg := range args { switch elem := n.typ.elem(); { case isInterfaceSrc(elem) && (!isEmptyInterface(elem) || len(arg.typ.method) > 0): values[i] = genValueInterface(arg) case isInterfaceBin(elem): values[i] = genInterfaceWrapper(arg, elem.rtype) case arg.typ.untyped: values[i] = genValueAs(arg, n.child[1].typ.TypeOf().Elem()) default: values[i] = genValue(arg) } } n.exec = func(f *frame) bltn { sl := make([]reflect.Value, l) for i, v := range values { sl[i] = v(f) } dest(f).Set(reflect.Append(value(f), sl...)) return next } default: var value0 func(*frame) reflect.Value switch elem := n.typ.elem(); { case isInterfaceSrc(elem) && (!isEmptyInterface(elem) || len(n.child[2].typ.method) > 0): value0 = genValueInterface(n.child[2]) case isInterfaceBin(elem): value0 = genInterfaceWrapper(n.child[2], elem.rtype) case n.child[2].typ.untyped: value0 = genValueAs(n.child[2], n.child[1].typ.TypeOf().Elem()) default: value0 = genValue(n.child[2]) } n.exec = func(f *frame) bltn { dest(f).Set(reflect.Append(value(f), value0(f))) return next } } } func _cap(n *node) { dest := genValueOutput(n, reflect.TypeOf(int(0))) value := genValue(n.child[1]) next := getExec(n.tnext) if wantEmptyInterface(n) { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(value(f).Cap())) return next } return } n.exec = func(f *frame) bltn { dest(f).SetInt(int64(value(f).Cap())) return next } } func _copy(n *node) { in := []func(*frame) reflect.Value{genValueArray(n.child[1]), genValue(n.child[2])} out := []func(*frame) reflect.Value{genValueOutput(n, reflect.TypeOf(0))} genBuiltinDeferWrapper(n, in, out, func(args []reflect.Value) []reflect.Value { cnt := reflect.Copy(args[0], args[1]) return []reflect.Value{reflect.ValueOf(cnt)} }) } func _close(n *node) { in := []func(*frame) reflect.Value{genValue(n.child[1])} genBuiltinDeferWrapper(n, in, nil, func(args []reflect.Value) []reflect.Value { args[0].Close() return nil }) } func _complex(n *node) { dest := genValueOutput(n, reflect.TypeOf(complex(0, 0))) c1, c2 := n.child[1], n.child[2] convertLiteralValue(c1, floatType) convertLiteralValue(c2, floatType) value0 := genValue(c1) value1 := genValue(c2) next := getExec(n.tnext) typ := n.typ.TypeOf() if isComplex(typ) { if wantEmptyInterface(n) { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(complex(value0(f).Float(), value1(f).Float()))) return next } return } n.exec = func(f *frame) bltn { dest(f).SetComplex(complex(value0(f).Float(), value1(f).Float())) return next } return } // Not a complex type: ignore imaginary part n.exec = func(f *frame) bltn { dest(f).Set(value0(f).Convert(typ)) return next } } func _imag(n *node) { dest := genValueOutput(n, reflect.TypeOf(float64(0))) convertLiteralValue(n.child[1], complexType) value := genValue(n.child[1]) next := getExec(n.tnext) if wantEmptyInterface(n) { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(imag(value(f).Complex()))) return next } return } n.exec = func(f *frame) bltn { dest(f).SetFloat(imag(value(f).Complex())) return next } } func _real(n *node) { dest := genValueOutput(n, reflect.TypeOf(float64(0))) convertLiteralValue(n.child[1], complexType) value := genValue(n.child[1]) next := getExec(n.tnext) if wantEmptyInterface(n) { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(real(value(f).Complex()))) return next } return } n.exec = func(f *frame) bltn { dest(f).SetFloat(real(value(f).Complex())) return next } } func _delete(n *node) { value0 := genValue(n.child[1]) // map value1 := genValue(n.child[2]) // key in := []func(*frame) reflect.Value{value0, value1} var z reflect.Value genBuiltinDeferWrapper(n, in, nil, func(args []reflect.Value) []reflect.Value { args[0].SetMapIndex(args[1], z) return nil }) } func capConst(n *node) { // There is no Cap() method for reflect.Type, just return Len() instead. lenConst(n) } func lenConst(n *node) { n.rval = reflect.New(reflect.TypeOf(int(0))).Elem() c1 := n.child[1] if c1.rval.IsValid() { n.rval.SetInt(int64(len(vString(c1.rval)))) return } t := c1.typ.TypeOf() for t.Kind() == reflect.Ptr { t = t.Elem() } n.rval.SetInt(int64(t.Len())) } func _len(n *node) { dest := genValueOutput(n, reflect.TypeOf(int(0))) value := genValue(n.child[1]) if isPtr(n.child[1].typ) { val := value value = func(f *frame) reflect.Value { v := val(f).Elem() for v.Kind() == reflect.Ptr { v = v.Elem() } return v } } next := getExec(n.tnext) if wantEmptyInterface(n) { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(value(f).Len())) return next } return } n.exec = func(f *frame) bltn { dest(f).SetInt(int64(value(f).Len())) return next } } func _new(n *node) { next := getExec(n.tnext) t1 := n.child[1].typ typ := t1.TypeOf() dest := genValueOutput(n, reflect.PtrTo(typ)) if isInterfaceSrc(t1) && (!isEmptyInterface(t1) || len(t1.method) > 0) { typ = zeroInterfaceValue().Type() } n.exec = func(f *frame) bltn { v := reflect.New(typ) if vi, ok := v.Interface().(*valueInterface); ok { vi.node = n } dest(f).Set(v) return next } } // _make allocates and initializes a slice, a map or a chan. func _make(n *node) { next := getExec(n.tnext) typ := n.child[1].typ.frameType() dest := genValueOutput(n, typ) switch typ.Kind() { case reflect.Array, reflect.Slice: value := genValue(n.child[2]) switch len(n.child) { case 3: n.exec = func(f *frame) bltn { length := int(vInt(value(f))) dest(f).Set(reflect.MakeSlice(typ, length, length)) return next } case 4: value1 := genValue(n.child[3]) n.exec = func(f *frame) bltn { dest(f).Set(reflect.MakeSlice(typ, int(vInt(value(f))), int(vInt(value1(f))))) return next } } case reflect.Chan: switch len(n.child) { case 2: n.exec = func(f *frame) bltn { dest(f).Set(reflect.MakeChan(typ, 0)) return next } case 3: value := genValue(n.child[2]) n.exec = func(f *frame) bltn { dest(f).Set(reflect.MakeChan(typ, int(vInt(value(f))))) return next } } case reflect.Map: switch len(n.child) { case 2: n.exec = func(f *frame) bltn { dest(f).Set(reflect.MakeMap(typ)) return next } case 3: value := genValue(n.child[2]) n.exec = func(f *frame) bltn { dest(f).Set(reflect.MakeMapWithSize(typ, int(vInt(value(f))))) return next } } } } func reset(n *node) { next := getExec(n.tnext) switch l := len(n.child) - 1; l { case 1: typ := n.child[0].typ.frameType() i := n.child[0].findex n.exec = func(f *frame) bltn { f.data[i] = reflect.New(typ).Elem() return next } case 2: c0, c1 := n.child[0], n.child[1] i0, i1 := c0.findex, c1.findex t0, t1 := c0.typ.frameType(), c1.typ.frameType() n.exec = func(f *frame) bltn { f.data[i0] = reflect.New(t0).Elem() f.data[i1] = reflect.New(t1).Elem() return next } default: types := make([]reflect.Type, l) index := make([]int, l) for i, c := range n.child[:l] { index[i] = c.findex types[i] = c.typ.frameType() } n.exec = func(f *frame) bltn { for i, ind := range index { f.data[ind] = reflect.New(types[i]).Elem() } return next } } } // recv reads from a channel. func recv(n *node) { value := genValue(n.child[0]) tnext := getExec(n.tnext) i := n.findex l := n.level if n.interp.cancelChan { // Cancellable channel read if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { // Fast: channel read doesn't block ch := value(f) if r, ok := ch.TryRecv(); ok { getFrame(f, l).data[i] = r if r.Bool() { return tnext } return fnext } // Slow: channel read blocks, allow cancel f.mutex.RLock() done := f.done f.mutex.RUnlock() chosen, v, _ := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: ch}}) if chosen == 0 { return nil } if v.Bool() { return tnext } return fnext } } else { n.exec = func(f *frame) bltn { // Fast: channel read doesn't block ch := value(f) if r, ok := ch.TryRecv(); ok { getFrame(f, l).data[i] = r return tnext } // Slow: channel is blocked, allow cancel f.mutex.RLock() done := f.done f.mutex.RUnlock() var chosen int chosen, getFrame(f, l).data[i], _ = reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: ch}}) if chosen == 0 { return nil } return tnext } } } else { // Blocking channel read (less overhead) if n.fnext != nil { fnext := getExec(n.fnext) n.exec = func(f *frame) bltn { if r, _ := value(f).Recv(); r.Bool() { getFrame(f, l).data[i] = r return tnext } return fnext } } else { i := n.findex n.exec = func(f *frame) bltn { getFrame(f, l).data[i], _ = value(f).Recv() return tnext } } } } func recv2(n *node) { vchan := genValue(n.child[0]) // chan vres := genValue(n.anc.child[0]) // result vok := genValue(n.anc.child[1]) // status tnext := getExec(n.tnext) if n.interp.cancelChan { // Cancellable channel read n.exec = func(f *frame) bltn { ch, result, status := vchan(f), vres(f), vok(f) // Fast: channel read doesn't block if v, ok := ch.TryRecv(); ok { result.Set(v) status.SetBool(true) return tnext } // Slow: channel is blocked, allow cancel f.mutex.RLock() done := f.done f.mutex.RUnlock() chosen, v, ok := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectRecv, Chan: ch}}) if chosen == 0 { return nil } result.Set(v) status.SetBool(ok) return tnext } } else { // Blocking channel read (less overhead) n.exec = func(f *frame) bltn { v, ok := vchan(f).Recv() vres(f).Set(v) vok(f).SetBool(ok) return tnext } } } func convertLiteralValue(n *node, t reflect.Type) { switch { case n.typ.cat == nilT: // Create a zero value of target type. n.rval = reflect.New(t).Elem() case !(n.kind == basicLit || n.rval.IsValid()) || t == nil || t.Kind() == reflect.Interface || t == valueInterfaceType || t.Kind() == reflect.Slice && t.Elem().Kind() == reflect.Interface: // Skip non-constant values, undefined target type or interface target type. case n.rval.IsValid(): // Convert constant value to target type. convertConstantValue(n) n.rval = n.rval.Convert(t) default: // Create a zero value of target type. n.rval = reflect.New(t).Elem() } } func convertConstantValue(n *node) { if !n.rval.IsValid() { return } c, ok := n.rval.Interface().(constant.Value) if !ok { return } var v reflect.Value switch c.Kind() { case constant.Bool: v = reflect.ValueOf(constant.BoolVal(c)) case constant.String: v = reflect.ValueOf(constant.StringVal(c)) case constant.Int: i, x := constant.Int64Val(c) if !x { panic(n.cfgErrorf("constant %s overflows int64", c.ExactString())) } v = reflect.ValueOf(int(i)) case constant.Float: f, _ := constant.Float64Val(c) v = reflect.ValueOf(f) case constant.Complex: r, _ := constant.Float64Val(constant.Real(c)) i, _ := constant.Float64Val(constant.Imag(c)) v = reflect.ValueOf(complex(r, i)) } n.rval = v.Convert(n.typ.TypeOf()) } // Write to a channel. func send(n *node) { next := getExec(n.tnext) c0, c1 := n.child[0], n.child[1] value0 := genValue(c0) // Send channel. value1 := genDestValue(c0.typ.val, c1) if !n.interp.cancelChan { // Send is non-cancellable, has the least overhead. n.exec = func(f *frame) bltn { value0(f).Send(value1(f)) return next } return } // Send is cancellable, may have some overhead. n.exec = func(f *frame) bltn { ch, data := value0(f), value1(f) // Fast: send on channel doesn't block. if ok := ch.TrySend(data); ok { return next } // Slow: send on channel blocks, allow cancel. f.mutex.RLock() done := f.done f.mutex.RUnlock() chosen, _, _ := reflect.Select([]reflect.SelectCase{done, {Dir: reflect.SelectSend, Chan: ch, Send: data}}) if chosen == 0 { return nil } return next } } func clauseChanDir(n *node) (*node, *node, *node, reflect.SelectDir) { dir := reflect.SelectDefault var nod, assigned, ok *node var stop bool n.Walk(func(m *node) bool { switch m.action { case aRecv: dir = reflect.SelectRecv nod = m.child[0] switch m.anc.action { case aAssign: assigned = m.anc.child[0] case aAssignX: assigned = m.anc.child[0] ok = m.anc.child[1] } stop = true case aSend: dir = reflect.SelectSend nod = m.child[0] assigned = m.child[1] stop = true } return !stop }, nil) return nod, assigned, ok, dir } func _select(n *node) { nbClause := len(n.child) chans := make([]*node, nbClause) assigned := make([]*node, nbClause) ok := make([]*node, nbClause) clause := make([]bltn, nbClause) chanValues := make([]func(*frame) reflect.Value, nbClause) assignedValues := make([]func(*frame) reflect.Value, nbClause) okValues := make([]func(*frame) reflect.Value, nbClause) cases := make([]reflect.SelectCase, nbClause+1) next := getExec(n.tnext) for i := 0; i < nbClause; i++ { cl := n.child[i] if cl.kind == commClauseDefault { cases[i].Dir = reflect.SelectDefault if len(cl.child) == 0 { clause[i] = func(*frame) bltn { return next } } else { clause[i] = getExec(cl.child[0].start) } continue } // The comm clause is in send or recv direction. switch c0 := cl.child[0]; { case len(cl.child) > 1: // The comm clause contains a channel operation and a clause body. clause[i] = getExec(cl.child[1].start) chans[i], assigned[i], ok[i], cases[i].Dir = clauseChanDir(c0) chanValues[i] = genValue(chans[i]) if assigned[i] != nil { assignedValues[i] = genValue(assigned[i]) } if ok[i] != nil { okValues[i] = genValue(ok[i]) } case c0.kind == exprStmt && len(c0.child) == 1 && c0.child[0].action == aRecv: // The comm clause has an empty body clause after channel receive. chanValues[i] = genValue(c0.child[0].child[0]) cases[i].Dir = reflect.SelectRecv clause[i] = func(*frame) bltn { return next } case c0.kind == sendStmt: // The comm clause as an empty body clause after channel send. chanValues[i] = genValue(c0.child[0]) cases[i].Dir = reflect.SelectSend assignedValues[i] = genValue(c0.child[1]) clause[i] = func(*frame) bltn { return next } } } n.exec = func(f *frame) bltn { f.mutex.RLock() cases[nbClause] = f.done f.mutex.RUnlock() for i := range cases[:nbClause] { switch cases[i].Dir { case reflect.SelectRecv: cases[i].Chan = chanValues[i](f) case reflect.SelectSend: cases[i].Chan = chanValues[i](f) cases[i].Send = assignedValues[i](f) case reflect.SelectDefault: // Keep zero values for comm clause } } j, v, s := reflect.Select(cases) if j == nbClause { return nil } if cases[j].Dir == reflect.SelectRecv && assignedValues[j] != nil { assignedValues[j](f).Set(v) if ok[j] != nil { okValues[j](f).SetBool(s) } } return clause[j] } } // slice expression: array[low:high:max]. func slice(n *node) { i := n.findex l := n.level next := getExec(n.tnext) value0 := genValueArray(n.child[0]) // array value1 := genValue(n.child[1]) // low (if 2 or 3 args) or high (if 1 arg) switch len(n.child) { case 2: n.exec = func(f *frame) bltn { a := value0(f) getFrame(f, l).data[i] = a.Slice(int(vInt(value1(f))), a.Len()) return next } case 3: value2 := genValue(n.child[2]) // max n.exec = func(f *frame) bltn { a := value0(f) getFrame(f, l).data[i] = a.Slice(int(vInt(value1(f))), int(vInt(value2(f)))) return next } case 4: value2 := genValue(n.child[2]) value3 := genValue(n.child[3]) n.exec = func(f *frame) bltn { a := value0(f) getFrame(f, l).data[i] = a.Slice3(int(vInt(value1(f))), int(vInt(value2(f))), int(vInt(value3(f)))) return next } } } // slice expression, no low value: array[:high:max]. func slice0(n *node) { i := n.findex l := n.level next := getExec(n.tnext) value0 := genValueArray(n.child[0]) switch len(n.child) { case 1: n.exec = func(f *frame) bltn { a := value0(f) getFrame(f, l).data[i] = a.Slice(0, a.Len()) return next } case 2: value1 := genValue(n.child[1]) n.exec = func(f *frame) bltn { a := value0(f) getFrame(f, l).data[i] = a.Slice(0, int(vInt(value1(f)))) return next } case 3: value1 := genValue(n.child[1]) value2 := genValue(n.child[2]) n.exec = func(f *frame) bltn { a := value0(f) getFrame(f, l).data[i] = a.Slice3(0, int(vInt(value1(f))), int(vInt(value2(f)))) return next } } } func isNilChild(child int) func(n *node) { return func(n *node) { var value func(*frame) reflect.Value child := n.child[child] value = genValue(child) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface tnext := getExec(n.tnext) dest := genValue(n) if n.fnext == nil { if !isInterfaceSrc(child.typ) { if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(value(f).IsNil()).Convert(typ)) return tnext } return } n.exec = func(f *frame) bltn { dest(f).SetBool(value(f).IsNil()) return tnext } return } if isInterface { n.exec = func(f *frame) bltn { v := value(f) var r bool if vi, ok := v.Interface().(valueInterface); ok { r = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) } else { r = v.IsNil() } dest(f).Set(reflect.ValueOf(r).Convert(typ)) return tnext } return } n.exec = func(f *frame) bltn { v := value(f) var r bool if vi, ok := v.Interface().(valueInterface); ok { r = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) } else { r = v.IsNil() } dest(f).SetBool(r) return tnext } return } fnext := getExec(n.fnext) if !isInterfaceSrc(child.typ) { n.exec = func(f *frame) bltn { if value(f).IsNil() { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } return } n.exec = func(f *frame) bltn { v := value(f) if vi, ok := v.Interface().(valueInterface); ok { if (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } if v.IsNil() { dest(f).SetBool(true) return tnext } dest(f).SetBool(false) return fnext } } } func isNotNil(n *node) { var value func(*frame) reflect.Value c0 := n.child[0] value = genValue(c0) typ := n.typ.concrete().TypeOf() isInterface := n.typ.TypeOf().Kind() == reflect.Interface tnext := getExec(n.tnext) dest := genValue(n) if n.fnext == nil { if isInterfaceSrc(c0.typ) && c0.typ.TypeOf() != valueInterfaceType { if isInterface { n.exec = func(f *frame) bltn { dest(f).Set(reflect.ValueOf(!value(f).IsNil()).Convert(typ)) return tnext } return } n.exec = func(f *frame) bltn { dest(f).SetBool(!value(f).IsNil()) return tnext } return } if isInterface { n.exec = func(f *frame) bltn { v := value(f) var r bool if vi, ok := v.Interface().(valueInterface); ok { r = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) } else { r = v.IsNil() } dest(f).Set(reflect.ValueOf(!r).Convert(typ)) return tnext } return } n.exec = func(f *frame) bltn { v := value(f) var r bool if vi, ok := v.Interface().(valueInterface); ok { r = (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) } else { r = v.IsNil() } dest(f).SetBool(!r) return tnext } return } fnext := getExec(n.fnext) if isInterfaceSrc(c0.typ) && c0.typ.TypeOf() != valueInterfaceType { n.exec = func(f *frame) bltn { if value(f).IsNil() { dest(f).SetBool(false) return fnext } dest(f).SetBool(true) return tnext } return } n.exec = func(f *frame) bltn { v := value(f) if vi, ok := v.Interface().(valueInterface); ok { if (vi == valueInterface{} || vi.node.kind == basicLit && vi.node.typ.cat == nilT) { dest(f).SetBool(false) return fnext } dest(f).SetBool(true) return tnext } if v.IsNil() { dest(f).SetBool(false) return fnext } dest(f).SetBool(true) return tnext } } func complexConst(n *node) { if v0, v1 := n.child[1].rval, n.child[2].rval; v0.IsValid() && v1.IsValid() { n.rval = reflect.ValueOf(complex(vFloat(v0), vFloat(v1))) n.gen = nop } } func imagConst(n *node) { if v := n.child[1].rval; v.IsValid() { n.rval = reflect.ValueOf(imag(v.Complex())) n.gen = nop } } func realConst(n *node) { if v := n.child[1].rval; v.IsValid() { n.rval = reflect.ValueOf(real(v.Complex())) n.gen = nop } } yaegi-0.16.1/interp/scope.go000066400000000000000000000160421460330105400156350ustar00rootroot00000000000000package interp import ( "log" "reflect" "strconv" ) // A sKind represents the kind of symbol. type sKind uint // Symbol kinds for the Go interpreter. const ( undefSym sKind = iota binSym // Binary from runtime bltnSym // Builtin constSym // Constant funcSym // Function labelSym // Label pkgSym // Package typeSym // Type varTypeSym // Variable type (generic) varSym // Variable ) var symKinds = [...]string{ undefSym: "undefSym", binSym: "binSym", bltnSym: "bltnSym", constSym: "constSym", funcSym: "funcSym", labelSym: "labelSym", pkgSym: "pkgSym", typeSym: "typeSym", varTypeSym: "varTypeSym", varSym: "varSym", } func (k sKind) String() string { if k < sKind(len(symKinds)) { return symKinds[k] } return "SymKind(" + strconv.Itoa(int(k)) + ")" } // A symbol represents an interpreter object such as type, constant, var, func, // label, builtin or binary object. Symbols are defined within a scope. type symbol struct { kind sKind typ *itype // Type of value node *node // Node value if index is negative from []*node // list of goto nodes jumping to this label node, or nil recv *receiver // receiver node value, if sym refers to a method index int // index of value in frame or -1 rval reflect.Value // default value (used for constants) builtin bltnGenerator // Builtin function or nil global bool // true if symbol is defined in global space } // scope type stores symbols in maps, and frame layout as array of types // The purposes of scopes are to manage the visibility of each symbol // and to store the memory frame layout information (type and index in frame) // at each level (global, package, functions) // // scopes are organized in a stack fashion: a first scope (universe) is created // once at global level, and for each block (package, func, for, etc...), a new // scope is pushed at entry, and poped at exit. // // Nested scopes with the same level value use the same frame: it allows to have // exactly one frame per function, with a fixed position for each variable (named // or not), no matter the inner complexity (number of nested blocks in the function) // // In symbols, the index value corresponds to the index in scope.types, and at // execution to the index in frame, created exactly from the types layout. type scope struct { anc *scope // ancestor upper scope child []*scope // included scopes def *node // function definition node this scope belongs to, or nil loop *node // loop exit node for break statement loopRestart *node // loop restart node for continue statement pkgID string // unique id of package in which scope is defined pkgName string // package name for the package types []reflect.Type // frame layout, may be shared by same level scopes level int // frame level: number of frame indirections to access var during execution sym map[string]*symbol // map of symbols defined in this current scope global bool // true if scope refers to global space (single frame for universe and package level scopes) iota int // iota value in this scope } // push creates a new child scope and chain it to the current one. func (s *scope) push(indirect bool) *scope { sc := &scope{anc: s, level: s.level, sym: map[string]*symbol{}} s.child = append(s.child, sc) if indirect { sc.types = []reflect.Type{} sc.level = s.level + 1 } else { // Propagate size, types, def and global as scopes at same level share the same frame. sc.types = s.types sc.def = s.def sc.global = s.global sc.level = s.level } // inherit loop state and pkgID from ancestor sc.loop, sc.loopRestart, sc.pkgID = s.loop, s.loopRestart, s.pkgID return sc } func (s *scope) pushBloc() *scope { return s.push(false) } func (s *scope) pushFunc() *scope { return s.push(true) } func (s *scope) pop() *scope { if s.level == s.anc.level { // Propagate size and types, as scopes at same level share the same frame. s.anc.types = s.types } return s.anc } func (s *scope) upperLevel() *scope { level := s.level for s != nil && s.level == level { s = s.anc } return s } // lookup searches for a symbol in the current scope, and upper ones if not found // it returns the symbol, the number of indirections level from the current scope // and status (false if no result). func (s *scope) lookup(ident string) (*symbol, int, bool) { level := s.level for { if sym, ok := s.sym[ident]; ok { if sym.global { return sym, globalFrame, true } return sym, level - s.level, true } if s.anc == nil { break } s = s.anc } return nil, 0, false } func (s *scope) rangeChanType(n *node) *itype { if sym, _, found := s.lookup(n.child[1].ident); found { if t := sym.typ; len(n.child) == 3 && t != nil && (t.cat == chanT || t.cat == chanRecvT) { return t } } c := n.child[1] if c.typ == nil { return nil } switch { case c.typ.cat == chanT, c.typ.cat == chanRecvT: return c.typ case c.typ.cat == valueT && c.typ.rtype.Kind() == reflect.Chan: dir := chanSendRecv switch c.typ.rtype.ChanDir() { case reflect.RecvDir: dir = chanRecv case reflect.SendDir: dir = chanSend } return chanOf(valueTOf(c.typ.rtype.Elem()), dir) } return nil } // fixType returns the input type, or a valid default type for untyped constant. func (s *scope) fixType(t *itype) *itype { if !t.untyped || t.cat != valueT { return t } switch typ := t.TypeOf(); typ.Kind() { case reflect.Int64: return s.getType("int") case reflect.Uint64: return s.getType("uint") case reflect.Float64: return s.getType("float64") case reflect.Complex128: return s.getType("complex128") } return t } func (s *scope) getType(ident string) *itype { var t *itype if sym, _, found := s.lookup(ident); found { if sym.kind == typeSym { t = sym.typ } } return t } // add adds a type to the scope types array, and returns its index. func (s *scope) add(typ *itype) (index int) { if typ == nil { log.Panic("nil type") } index = len(s.types) t := typ.frameType() if t == nil { log.Panic("nil reflect type") } s.types = append(s.types, t) return } func (interp *Interpreter) initScopePkg(pkgID, pkgName string) *scope { sc := interp.universe interp.mutex.Lock() if _, ok := interp.scopes[pkgID]; !ok { interp.scopes[pkgID] = sc.pushBloc() } sc = interp.scopes[pkgID] sc.pkgID = pkgID sc.pkgName = pkgName interp.mutex.Unlock() return sc } // Globals returns a map of global variables and constants in the main package. func (interp *Interpreter) Globals() map[string]reflect.Value { syms := map[string]reflect.Value{} interp.mutex.RLock() defer interp.mutex.RUnlock() v, ok := interp.srcPkg["main"] if !ok { return syms } for n, s := range v { switch s.kind { case constSym: syms[n] = s.rval case varSym: syms[n] = interp.frame.data[s.index] } } return syms } yaegi-0.16.1/interp/self_example_test.go000066400000000000000000000015121460330105400202230ustar00rootroot00000000000000package interp_test import ( "log" "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" ) func ExampleInterpreter_self() { i := interp.New(interp.Options{}) if err := i.Use(stdlib.Symbols); err != nil { log.Fatal(err) } if err := i.Use(interp.Symbols); err != nil { log.Fatal(err) } _, err := i.Eval(`import ( "fmt" "log" // Import interp to gain access to Self. "github.com/traefik/yaegi/interp" )`) if err != nil { log.Fatal(err) } _, err = i.Eval(` // Evaluate code directly. fmt.Println("Hello Yaegi from Go") // Evaluate code indirectly via the Self access point. _, err := interp.Self.Eval("fmt.Println(\"Hello Yaegi from Yaegi\")") if err != nil { log.Fatal(err) } `) if err != nil { log.Fatal(err) } // Output: // // Hello Yaegi from Go // Hello Yaegi from Yaegi } yaegi-0.16.1/interp/src.go000066400000000000000000000221131460330105400153070ustar00rootroot00000000000000package interp import ( "errors" "fmt" "io/fs" "os" "path/filepath" "strings" ) // importSrc calls gta on the source code for the package identified by // importPath. rPath is the relative path to the directory containing the source // code for the package. It can also be "main" as a special value. func (interp *Interpreter) importSrc(rPath, importPath string, skipTest bool) (string, error) { var dir string var err error if interp.srcPkg[importPath] != nil { name, ok := interp.pkgNames[importPath] if !ok { return "", fmt.Errorf("inconsistent knowledge about %s", importPath) } return name, nil } // For relative import paths in the form "./xxx" or "../xxx", the initial // base path is the directory of the interpreter input file, or "." if no file // was provided. // In all other cases, absolute import paths are resolved from the GOPATH // and the nested "vendor" directories. if isPathRelative(importPath) { if rPath == mainID { rPath = "." } dir = filepath.Join(filepath.Dir(interp.name), rPath, importPath) } else if dir, rPath, err = interp.pkgDir(interp.context.GOPATH, rPath, importPath); err != nil { // Try again, assuming a root dir at the source location. if rPath, err = interp.rootFromSourceLocation(); err != nil { return "", err } if dir, rPath, err = interp.pkgDir(interp.context.GOPATH, rPath, importPath); err != nil { return "", err } } if interp.rdir[importPath] { return "", fmt.Errorf("import cycle not allowed\n\timports %s", importPath) } interp.rdir[importPath] = true files, err := fs.ReadDir(interp.opt.filesystem, dir) if err != nil { return "", err } var initNodes []*node var rootNodes []*node revisit := make(map[string][]*node) var root *node var pkgName string // Parse source files. for _, file := range files { name := file.Name() if skipFile(&interp.context, name, skipTest) { continue } name = filepath.Join(dir, name) var buf []byte if buf, err = fs.ReadFile(interp.opt.filesystem, name); err != nil { return "", err } n, err := interp.parse(string(buf), name, false) if err != nil { return "", err } if n == nil { continue } var pname string if pname, root, err = interp.ast(n); err != nil { return "", err } if root == nil { continue } if interp.astDot { dotCmd := interp.dotCmd if dotCmd == "" { dotCmd = defaultDotCmd(name, "yaegi-ast-") } root.astDot(dotWriter(dotCmd), name) } if pkgName == "" { pkgName = pname } else if pkgName != pname && skipTest { return "", fmt.Errorf("found packages %s and %s in %s", pkgName, pname, dir) } rootNodes = append(rootNodes, root) subRPath := effectivePkg(rPath, importPath) var list []*node list, err = interp.gta(root, subRPath, importPath, pkgName) if err != nil { return "", err } revisit[subRPath] = append(revisit[subRPath], list...) } // Revisit incomplete nodes where GTA could not complete. for _, nodes := range revisit { if err = interp.gtaRetry(nodes, importPath, pkgName); err != nil { return "", err } } // Generate control flow graphs. for _, root := range rootNodes { var nodes []*node if nodes, err = interp.cfg(root, nil, importPath, pkgName); err != nil { return "", err } initNodes = append(initNodes, nodes...) } // Register source package in the interpreter. The package contains only // the global symbols in the package scope. interp.mutex.Lock() gs := interp.scopes[importPath] if gs == nil { interp.mutex.Unlock() // A nil scope means that no even an empty package is created from source. return "", fmt.Errorf("no Go files in %s", dir) } interp.srcPkg[importPath] = gs.sym interp.pkgNames[importPath] = pkgName interp.frame.mutex.Lock() interp.resizeFrame() interp.frame.mutex.Unlock() interp.mutex.Unlock() // Once all package sources have been parsed, execute entry points then init functions. for _, n := range rootNodes { if err = genRun(n); err != nil { return "", err } interp.run(n, nil) } // Wire and execute global vars in global scope gs. n, err := genGlobalVars(rootNodes, gs) if err != nil { return "", err } interp.run(n, nil) // Add main to list of functions to run, after all inits. if m := gs.sym[mainID]; pkgName == mainID && m != nil && skipTest { initNodes = append(initNodes, m.node) } for _, n := range initNodes { interp.run(n, interp.frame) } return pkgName, nil } // rootFromSourceLocation returns the path to the directory containing the input // Go file given to the interpreter, relative to $GOPATH/src. // It is meant to be called in the case when the initial input is a main package. func (interp *Interpreter) rootFromSourceLocation() (string, error) { sourceFile := interp.name if sourceFile == DefaultSourceName { return "", nil } wd, err := os.Getwd() if err != nil { return "", err } pkgDir := filepath.Join(wd, filepath.Dir(sourceFile)) root := strings.TrimPrefix(pkgDir, filepath.Join(interp.context.GOPATH, "src")+"/") if root == wd { return "", fmt.Errorf("package location %s not in GOPATH", pkgDir) } return root, nil } // pkgDir returns the absolute path in filesystem for a package given its import path // and the root of the subtree dependencies. func (interp *Interpreter) pkgDir(goPath string, root, importPath string) (string, string, error) { rPath := filepath.Join(root, "vendor") dir := filepath.Join(goPath, "src", rPath, importPath) if _, err := fs.Stat(interp.opt.filesystem, dir); err == nil { return dir, rPath, nil // found! } dir = filepath.Join(goPath, "src", effectivePkg(root, importPath)) if _, err := fs.Stat(interp.opt.filesystem, dir); err == nil { return dir, root, nil // found! } if root == "" { if interp.context.GOPATH == "" { return "", "", fmt.Errorf("unable to find source related to: %q. Either the GOPATH environment variable, or the Interpreter.Options.GoPath needs to be set", importPath) } return "", "", fmt.Errorf("unable to find source related to: %q", importPath) } rootPath := filepath.Join(goPath, "src", root) prevRoot, err := previousRoot(interp.opt.filesystem, rootPath, root) if err != nil { return "", "", err } return interp.pkgDir(goPath, prevRoot, importPath) } const vendor = "vendor" // Find the previous source root (vendor > vendor > ... > GOPATH). func previousRoot(filesystem fs.FS, rootPath, root string) (string, error) { rootPath = filepath.Clean(rootPath) parent, final := filepath.Split(rootPath) parent = filepath.Clean(parent) // TODO(mpl): maybe it works for the special case main, but can't be bothered for now. if root != mainID && final != vendor { root = strings.TrimSuffix(root, string(filepath.Separator)) prefix := strings.TrimSuffix(strings.TrimSuffix(rootPath, root), string(filepath.Separator)) // look for the closest vendor in one of our direct ancestors, as it takes priority. var vendored string for { fi, err := fs.Stat(filesystem, filepath.Join(parent, vendor)) if err == nil && fi.IsDir() { vendored = strings.TrimPrefix(strings.TrimPrefix(parent, prefix), string(filepath.Separator)) break } if !errors.Is(err, fs.ErrNotExist) { return "", err } // stop when we reach GOPATH/src if parent == prefix { break } // stop when we reach GOPATH/src/blah parent = filepath.Dir(parent) if parent == prefix { break } // just an additional failsafe, stop if we reach the filesystem root, or dot (if // we are dealing with relative paths). // TODO(mpl): It should probably be a critical error actually, // as we shouldn't have gone that high up in the tree. // TODO(dennwc): This partially fails on Windows, since it cannot recognize drive letters as "root". if parent == string(filepath.Separator) || parent == "." || parent == "" { break } } if vendored != "" { return vendored, nil } } // TODO(mpl): the algorithm below might be redundant with the one above, // but keeping it for now. Investigate/simplify/remove later. splitRoot := strings.Split(root, string(filepath.Separator)) var index int for i := len(splitRoot) - 1; i >= 0; i-- { if splitRoot[i] == "vendor" { index = i break } } if index == 0 { return "", nil } return filepath.Join(splitRoot[:index]...), nil } func effectivePkg(root, path string) string { splitRoot := strings.Split(root, string(filepath.Separator)) splitPath := strings.Split(path, string(filepath.Separator)) var result []string rootIndex := 0 prevRootIndex := 0 for i := 0; i < len(splitPath); i++ { part := splitPath[len(splitPath)-1-i] index := len(splitRoot) - 1 - rootIndex if index > 0 && part == splitRoot[index] && i != 0 { prevRootIndex = rootIndex rootIndex++ } else if prevRootIndex == rootIndex { result = append(result, part) } } var frag string for i := len(result) - 1; i >= 0; i-- { frag = filepath.Join(frag, result[i]) } return filepath.Join(root, frag) } // isPathRelative returns true if path starts with "./" or "../". // It is intended for use on import paths, where "/" is always the directory separator. func isPathRelative(s string) bool { return strings.HasPrefix(s, "./") || strings.HasPrefix(s, "../") } yaegi-0.16.1/interp/src_test.go000066400000000000000000000150771460330105400163610ustar00rootroot00000000000000package interp import ( "os" "path/filepath" "testing" ) func Test_effectivePkg(t *testing.T) { testCases := []struct { desc string root string path string expected string }{ { desc: "path is a subpackage", root: "github.com/foo/plugin/vendor/guthib.com/traefik/fromage", path: "guthib.com/traefik/fromage/couteau/lol", expected: "github.com/foo/plugin/vendor/guthib.com/traefik/fromage/couteau/lol", }, { desc: "path is a vendored package", root: "github.com/foo/plugin/vendor/guthib.com/traefik/fromage", path: "vendor/guthib.com/traefik/vin", expected: "github.com/foo/plugin/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/vin", }, { desc: "path is non-existent", root: "foo", path: "githib.com/foo/app", expected: "foo/githib.com/foo/app", }, } for _, test := range testCases { test := test t.Run(test.desc, func(t *testing.T) { t.Parallel() pkg := effectivePkg(test.root, test.path) if pkg != test.expected { t.Errorf("Got %s, want %s", pkg, test.expected) } }) } } func Test_pkgDir(t *testing.T) { // create GOPATH goPath := t.TempDir() // Create project project := filepath.Join(goPath, "src", "guthib.com", "foo", "root") if err := os.MkdirAll(project, 0o700); err != nil { t.Fatal(err) } type expected struct { dir string rpath string } testCases := []struct { desc string path string root string setup func() error expected expected }{ { desc: "GOPATH only", path: "guthib.com/foo/bar", root: "", setup: func() error { return os.MkdirAll(filepath.Join(goPath, "src", "guthib.com", "foo", "bar"), 0o700) }, expected: expected{ dir: filepath.Join(goPath, "src", "guthib.com", "foo", "bar"), rpath: "", }, }, { desc: "vendor", path: "guthib.com/foo/bar", root: filepath.Join("guthib.com", "foo", "root"), setup: func() error { return os.MkdirAll(filepath.Join(project, "vendor", "guthib.com", "foo", "bar"), 0o700) }, expected: expected{ dir: filepath.Join(goPath, "src", "guthib.com", "foo", "root", "vendor", "guthib.com", "foo", "bar"), rpath: filepath.Join("guthib.com", "foo", "root", "vendor"), }, }, { desc: "GOPATH flat", path: "guthib.com/foo/bar", root: filepath.Join("guthib.com", "foo", "root"), setup: func() error { return os.MkdirAll(filepath.Join(goPath, "src", "guthib.com", "foo", "bar"), 0o700) }, expected: expected{ dir: filepath.Join(goPath, "src", "guthib.com", "foo", "bar"), rpath: "", }, }, { desc: "vendor flat", path: "guthib.com/foo/bar", root: filepath.Join("guthib.com", "foo", "root", "vendor", "guthib.com", "foo", "bir"), setup: func() error { if err := os.MkdirAll(filepath.Join(project, "vendor", "guthib.com", "foo", "bar"), 0o700); err != nil { return err } return os.MkdirAll(filepath.Join(project, "vendor", "guthib.com", "foo", "bir"), 0o700) }, expected: expected{ dir: filepath.Join(goPath, "src", "guthib.com", "foo", "root", "vendor", "guthib.com", "foo", "bar"), rpath: filepath.Join("guthib.com", "foo", "root", "vendor"), }, }, { desc: "fallback to GOPATH", path: "guthib.com/foo/bar", root: filepath.Join("guthib.com", "foo", "root", "vendor", "guthib.com", "foo", "bir"), setup: func() error { if err := os.MkdirAll(filepath.Join(goPath, "src", "guthib.com", "foo", "bar"), 0o700); err != nil { return err } return os.MkdirAll(filepath.Join(project, "vendor", "guthib.com", "foo", "bir"), 0o700) }, expected: expected{ dir: filepath.Join(goPath, "src", "guthib.com", "foo", "bar"), rpath: "", }, }, { desc: "vendor recursive", path: "guthib.com/foo/bar", root: filepath.Join("guthib.com", "foo", "root", "vendor", "guthib.com", "foo", "bir", "vendor", "guthib.com", "foo", "bur"), setup: func() error { if err := os.MkdirAll( filepath.Join(goPath, "src", "guthib.com", "foo", "root", "vendor", "guthib.com", "foo", "bir", "vendor", "guthib.com", "foo", "bur"), 0o700); err != nil { return err } return os.MkdirAll(filepath.Join(project, "vendor", "guthib.com", "foo", "bar"), 0o700) }, expected: expected{ dir: filepath.Join(project, "vendor", "guthib.com", "foo", "bar"), rpath: filepath.Join("guthib.com", "foo", "root", "vendor"), }, }, } interp := &Interpreter{ opt: opt{ filesystem: &realFS{}, }, } for _, test := range testCases { test := test t.Run(test.desc, func(t *testing.T) { if err := os.RemoveAll(goPath); err != nil { t.Fatal(err) } if err := os.MkdirAll(goPath, 0o700); err != nil { t.Fatal(err) } if test.setup != nil { err := test.setup() if err != nil { t.Fatal(err) } } dir, rPath, err := interp.pkgDir(goPath, test.root, test.path) if err != nil { t.Fatal(err) } if dir != test.expected.dir { t.Errorf("[dir] got: %s, want: %s", dir, test.expected.dir) } if rPath != test.expected.rpath { t.Errorf(" [rpath] got: %s, want: %s", rPath, test.expected.rpath) } }) } } func Test_previousRoot(t *testing.T) { testCases := []struct { desc string root string rootPathSuffix string expected string }{ { desc: "GOPATH", root: "github.com/foo/pkg/", expected: "", }, { desc: "vendor level 1", root: "github.com/foo/pkg/vendor/guthib.com/traefik/fromage", expected: "github.com/foo/pkg", }, { desc: "vendor level 2", root: "github.com/foo/pkg/vendor/guthib.com/traefik/fromage/vendor/guthib.com/traefik/fuu", expected: "github.com/foo/pkg/vendor/guthib.com/traefik/fromage", }, { desc: "vendor is sibling", root: "github.com/foo/bar", rootPathSuffix: "testdata/src/github.com/foo/bar", expected: "github.com/foo", }, { desc: "vendor is uncle", root: "github.com/foo/bar/baz", rootPathSuffix: "testdata/src/github.com/foo/bar/baz", expected: "github.com/foo", }, } for _, test := range testCases { test := test t.Run(test.desc, func(t *testing.T) { t.Parallel() var rootPath string if test.rootPathSuffix != "" { wd, err := os.Getwd() if err != nil { t.Fatal(err) } rootPath = filepath.Join(wd, test.rootPathSuffix) } else { rootPath = vendor } p, err := previousRoot(&realFS{}, rootPath, test.root) if err != nil { t.Error(err) } if p != test.expected { t.Errorf("got: %s, want: %s", p, test.expected) } }) } } yaegi-0.16.1/interp/testdata/000077500000000000000000000000001460330105400160035ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/concurrent/000077500000000000000000000000001460330105400201655ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/concurrent/composite/000077500000000000000000000000001460330105400221675ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/concurrent/composite/composite_lit.go000066400000000000000000000003001460330105400253610ustar00rootroot00000000000000package main import ( "time" ) type foo struct { bar string } func main() { for i := 0; i < 2; i++ { go func() { a := foo{"hello"} println(a) }() } time.Sleep(time.Second) } yaegi-0.16.1/interp/testdata/concurrent/composite/composite_sparse.go000066400000000000000000000003051460330105400260730ustar00rootroot00000000000000package main import ( "time" ) type foo struct { bar string } func main() { for i := 0; i < 2; i++ { go func() { a := foo{bar: "hello"} println(a) }() } time.Sleep(time.Second) } yaegi-0.16.1/interp/testdata/concurrent/hello1.go000066400000000000000000000001671460330105400217040ustar00rootroot00000000000000package main import "time" func main() { go func() { time.Sleep(3 * time.Second) println("hello world1") }() } yaegi-0.16.1/interp/testdata/concurrent/hello2.go000066400000000000000000000001671460330105400217050ustar00rootroot00000000000000package main import "time" func main() { go func() { time.Sleep(3 * time.Second) println("hello world2") }() } yaegi-0.16.1/interp/testdata/multi/000077500000000000000000000000001460330105400171355ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/multi/731/000077500000000000000000000000001460330105400174475ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/multi/731/sample1.go000066400000000000000000000001021460330105400213310ustar00rootroot00000000000000package subpkg import "fmt" func PrintA() { fmt.Println("A") } yaegi-0.16.1/interp/testdata/multi/731/sample2.go000066400000000000000000000001021460330105400213320ustar00rootroot00000000000000package subpkg import "fmt" func PrintB() { fmt.Println("B") } yaegi-0.16.1/interp/testdata/multi/731/sample3.go000066400000000000000000000001211460330105400213340ustar00rootroot00000000000000package main import "subpkg" func main() { subpkg.PrintA() subpkg.PrintB() } yaegi-0.16.1/interp/testdata/src/000077500000000000000000000000001460330105400165725ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/000077500000000000000000000000001460330105400206315ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/foo/000077500000000000000000000000001460330105400214145ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/foo/bar/000077500000000000000000000000001460330105400221605ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/foo/bar/baz/000077500000000000000000000000001460330105400227345ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/foo/bar/baz/baz.go000066400000000000000000000000141460330105400240320ustar00rootroot00000000000000package baz yaegi-0.16.1/interp/testdata/src/github.com/foo/vendor/000077500000000000000000000000001460330105400227115ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/foo/vendor/whatever/000077500000000000000000000000001460330105400245365ustar00rootroot00000000000000yaegi-0.16.1/interp/testdata/src/github.com/foo/vendor/whatever/whatever.go000066400000000000000000000000211460330105400267030ustar00rootroot00000000000000package whatever yaegi-0.16.1/interp/type.go000066400000000000000000001776141460330105400155220ustar00rootroot00000000000000package interp import ( "fmt" "go/constant" "path/filepath" "reflect" "strconv" "strings" "github.com/traefik/yaegi/internal/unsafe2" ) // tcat defines interpreter type categories. type tcat uint // Types for go language. const ( nilT tcat = iota arrayT binT binPkgT boolT builtinT chanT chanSendT chanRecvT comparableT complex64T complex128T constraintT errorT float32T float64T funcT genericT interfaceT intT int8T int16T int32T int64T linkedT mapT ptrT sliceT srcPkgT stringT structT uintT uint8T uint16T uint32T uint64T uintptrT valueT variadicT maxT ) var cats = [...]string{ nilT: "nilT", arrayT: "arrayT", binT: "binT", binPkgT: "binPkgT", boolT: "boolT", builtinT: "builtinT", chanT: "chanT", comparableT: "comparableT", complex64T: "complex64T", complex128T: "complex128T", constraintT: "constraintT", errorT: "errorT", float32T: "float32", float64T: "float64T", funcT: "funcT", genericT: "genericT", interfaceT: "interfaceT", intT: "intT", int8T: "int8T", int16T: "int16T", int32T: "int32T", int64T: "int64T", linkedT: "linkedT", mapT: "mapT", ptrT: "ptrT", sliceT: "sliceT", srcPkgT: "srcPkgT", stringT: "stringT", structT: "structT", uintT: "uintT", uint8T: "uint8T", uint16T: "uint16T", uint32T: "uint32T", uint64T: "uint64T", uintptrT: "uintptrT", valueT: "valueT", variadicT: "variadicT", } func (c tcat) String() string { if c < tcat(len(cats)) { return cats[c] } return "Cat(" + strconv.Itoa(int(c)) + ")" } // structField type defines a field in a struct. type structField struct { name string tag string embed bool typ *itype } // itype defines the internal representation of types in the interpreter. type itype struct { cat tcat // Type category field []structField // Array of struct fields if structT or interfaceT key *itype // Type of key element if MapT or nil val *itype // Type of value element if chanT, chanSendT, chanRecvT, mapT, ptrT, linkedT, arrayT, sliceT, variadicT or genericT recv *itype // Receiver type for funcT or nil arg []*itype // Argument types if funcT or nil ret []*itype // Return types if funcT or nil ptr *itype // Pointer to this type. Might be nil method []*node // Associated methods or nil constraint []*itype // For interfaceT: list of types part of interface set ulconstraint []*itype // For interfaceT: list of underlying types part of interface set instance []*itype // For genericT: list of instantiated types name string // name of type within its package for a defined type path string // for a defined type, the package import path length int // length of array if ArrayT rtype reflect.Type // Reflection type if ValueT, or nil node *node // root AST node of type definition scope *scope // type declaration scope (in case of re-parse incomplete type) str string // String representation of the type incomplete bool // true if type must be parsed again (out of order declarations) untyped bool // true for a literal value (string or number) isBinMethod bool // true if the type refers to a bin method function } type generic struct{} func untypedBool(n *node) *itype { return &itype{cat: boolT, name: "bool", untyped: true, str: "untyped bool", node: n} } func untypedString(n *node) *itype { return &itype{cat: stringT, name: "string", untyped: true, str: "untyped string", node: n} } func untypedRune(n *node) *itype { return &itype{cat: int32T, name: "int32", untyped: true, str: "untyped rune", node: n} } func untypedInt(n *node) *itype { return &itype{cat: intT, name: "int", untyped: true, str: "untyped int", node: n} } func untypedFloat(n *node) *itype { return &itype{cat: float64T, name: "float64", untyped: true, str: "untyped float", node: n} } func untypedComplex(n *node) *itype { return &itype{cat: complex128T, name: "complex128", untyped: true, str: "untyped complex", node: n} } func errorMethodType(sc *scope) *itype { return &itype{cat: funcT, ret: []*itype{sc.getType("string")}, str: "func() string"} } type itypeOption func(*itype) func isBinMethod() itypeOption { return func(t *itype) { t.isBinMethod = true } } func withRecv(typ *itype) itypeOption { return func(t *itype) { t.recv = typ } } func withNode(n *node) itypeOption { return func(t *itype) { t.node = n } } func withScope(sc *scope) itypeOption { return func(t *itype) { t.scope = sc } } func withUntyped(b bool) itypeOption { return func(t *itype) { t.untyped = b } } // valueTOf returns a valueT itype. func valueTOf(rtype reflect.Type, opts ...itypeOption) *itype { t := &itype{cat: valueT, rtype: rtype, str: rtype.String()} for _, opt := range opts { opt(t) } if t.untyped { t.str = "untyped " + t.str } return t } // wrapperValueTOf returns a valueT itype wrapping an itype. func wrapperValueTOf(rtype reflect.Type, val *itype, opts ...itypeOption) *itype { t := &itype{cat: valueT, rtype: rtype, val: val, str: rtype.String()} for _, opt := range opts { opt(t) } return t } func variadicOf(val *itype, opts ...itypeOption) *itype { t := &itype{cat: variadicT, val: val, str: "..." + val.str} for _, opt := range opts { opt(t) } return t } // ptrOf returns a pointer to t. func ptrOf(val *itype, opts ...itypeOption) *itype { if val.ptr != nil { return val.ptr } t := &itype{cat: ptrT, val: val, str: "*" + val.str} for _, opt := range opts { opt(t) } val.ptr = t return t } // namedOf returns a named type of val. func namedOf(val *itype, path, name string, opts ...itypeOption) *itype { str := name if path != "" { str = path + "." + name } t := &itype{cat: linkedT, val: val, path: path, name: name, str: str} for _, opt := range opts { opt(t) } return t } // funcOf returns a function type with the given args and returns. func funcOf(args []*itype, ret []*itype, opts ...itypeOption) *itype { b := []byte{} b = append(b, "func("...) b = append(b, paramsTypeString(args)...) b = append(b, ')') if len(ret) != 0 { b = append(b, ' ') if len(ret) > 1 { b = append(b, '(') } b = append(b, paramsTypeString(ret)...) if len(ret) > 1 { b = append(b, ')') } } t := &itype{cat: funcT, arg: args, ret: ret, str: string(b)} for _, opt := range opts { opt(t) } return t } type chanDir uint8 const ( chanSendRecv chanDir = iota chanSend chanRecv ) // chanOf returns a channel of the underlying type val. func chanOf(val *itype, dir chanDir, opts ...itypeOption) *itype { cat := chanT str := "chan " switch dir { case chanSend: cat = chanSendT str = "chan<- " case chanRecv: cat = chanRecvT str = "<-chan " } t := &itype{cat: cat, val: val, str: str + val.str} for _, opt := range opts { opt(t) } return t } // arrayOf returns am array type of the underlying val with the given length. func arrayOf(val *itype, l int, opts ...itypeOption) *itype { lstr := strconv.Itoa(l) t := &itype{cat: arrayT, val: val, length: l, str: "[" + lstr + "]" + val.str} for _, opt := range opts { opt(t) } return t } // sliceOf returns a slice type of the underlying val. func sliceOf(val *itype, opts ...itypeOption) *itype { t := &itype{cat: sliceT, val: val, str: "[]" + val.str} for _, opt := range opts { opt(t) } return t } // mapOf returns a map type of the underlying key and val. func mapOf(key, val *itype, opts ...itypeOption) *itype { t := &itype{cat: mapT, key: key, val: val, str: "map[" + key.str + "]" + val.str} for _, opt := range opts { opt(t) } return t } // interfaceOf returns an interface type with the given fields. func interfaceOf(t *itype, fields []structField, constraint, ulconstraint []*itype, opts ...itypeOption) *itype { str := "interface{}" if len(fields) > 0 { str = "interface { " + methodsTypeString(fields) + "}" } if t == nil { t = &itype{} } t.cat = interfaceT t.field = fields t.constraint = constraint t.ulconstraint = ulconstraint t.str = str for _, opt := range opts { opt(t) } return t } // structOf returns a struct type with the given fields. func structOf(t *itype, fields []structField, opts ...itypeOption) *itype { str := "struct {}" if len(fields) > 0 { str = "struct { " + fieldsTypeString(fields) + "}" } if t == nil { t = &itype{} } t.cat = structT t.field = fields t.str = str for _, opt := range opts { opt(t) } return t } // genericOf returns a generic type. func genericOf(val *itype, name, path string, opts ...itypeOption) *itype { t := &itype{cat: genericT, name: name, path: path, str: name, val: val} for _, opt := range opts { opt(t) } return t } // seenNode determines if a node has been seen. // // seenNode treats the slice of nodes as the path traveled down a node // tree. func seenNode(ns []*node, n *node) bool { for _, nn := range ns { if nn == n { return true } } return false } // nodeType returns a type definition for the corresponding AST subtree. func nodeType(interp *Interpreter, sc *scope, n *node) (*itype, error) { return nodeType2(interp, sc, n, nil) } func nodeType2(interp *Interpreter, sc *scope, n *node, seen []*node) (t *itype, err error) { if n.typ != nil && !n.typ.incomplete { return n.typ, nil } if sname := typeName(n); sname != "" { sym, _, found := sc.lookup(sname) if found && sym.kind == typeSym && sym.typ != nil { if sym.typ.isComplete() { return sym.typ, nil } if seenNode(seen, n) { // We have seen this node in our tree, so it must be recursive. sym.typ.incomplete = false return sym.typ, nil } } } seen = append(seen, n) defer func() { seen = seen[:len(seen)-1] }() switch n.kind { case addressExpr, starExpr: val, err := nodeType2(interp, sc, n.child[0], seen) if err != nil { return nil, err } t = ptrOf(val, withNode(n), withScope(sc)) t.incomplete = val.incomplete case arrayType: c0 := n.child[0] if len(n.child) == 1 { val, err := nodeType2(interp, sc, c0, seen) if err != nil { return nil, err } t = sliceOf(val, withNode(n), withScope(sc)) t.incomplete = val.incomplete break } // Array size is defined. var ( length int incomplete bool ) switch v := c0.rval; { case v.IsValid(): // Size if defined by a constant literal value. if isConstantValue(v.Type()) { c := v.Interface().(constant.Value) length = constToInt(c) } else { switch v.Type().Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: length = int(v.Int()) case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: length = int(v.Uint()) default: return nil, c0.cfgErrorf("non integer constant %v", v) } } case c0.kind == ellipsisExpr: // [...]T expression, get size from the length of composite array. length, err = arrayTypeLen(n.anc, sc) if err != nil { incomplete = true } case c0.kind == identExpr: sym, _, ok := sc.lookup(c0.ident) if !ok { incomplete = true break } // Size is defined by a symbol which must be a constant integer. if sym.kind != constSym { return nil, c0.cfgErrorf("non-constant array bound %q", c0.ident) } if sym.typ == nil || !isInt(sym.typ.TypeOf()) || !sym.rval.IsValid() { incomplete = true break } length = int(vInt(sym.rval)) default: // Size is defined by a numeric constant expression. var ok bool if _, err := interp.cfg(c0, sc, sc.pkgID, sc.pkgName); err != nil { if strings.Contains(err.Error(), " undefined: ") { incomplete = true break } return nil, err } if !c0.rval.IsValid() { return nil, c0.cfgErrorf("undefined array size") } if length, ok = c0.rval.Interface().(int); !ok { v, ok := c0.rval.Interface().(constant.Value) if !ok { incomplete = true break } length = constToInt(v) } } val, err := nodeType2(interp, sc, n.child[1], seen) if err != nil { return nil, err } t = arrayOf(val, length, withNode(n), withScope(sc)) t.incomplete = incomplete || val.incomplete case basicLit: switch v := n.rval.Interface().(type) { case bool: n.rval = reflect.ValueOf(constant.MakeBool(v)) t = untypedBool(n) case rune: // It is impossible to work out rune const literals in AST // with the correct type so we must make the const type here. n.rval = reflect.ValueOf(constant.MakeInt64(int64(v))) t = untypedRune(n) case constant.Value: switch v.Kind() { case constant.Bool: t = untypedBool(n) case constant.String: t = untypedString(n) case constant.Int: t = untypedInt(n) case constant.Float: t = untypedFloat(n) case constant.Complex: t = untypedComplex(n) default: err = n.cfgErrorf("missing support for type %v", n.rval) } default: err = n.cfgErrorf("missing support for type %T: %v", v, n.rval) } case unaryExpr: // In interfaceType, we process an underlying type constraint definition. if isInInterfaceType(n) { t1, err := nodeType2(interp, sc, n.child[0], seen) if err != nil { return nil, err } t = &itype{cat: constraintT, ulconstraint: []*itype{t1}} break } t, err = nodeType2(interp, sc, n.child[0], seen) case binaryExpr: // In interfaceType, we process a type constraint union definition. if isInInterfaceType(n) { t = &itype{cat: constraintT, constraint: []*itype{}, ulconstraint: []*itype{}} for _, c := range n.child { t1, err := nodeType2(interp, sc, c, seen) if err != nil { return nil, err } switch t1.cat { case constraintT: t.constraint = append(t.constraint, t1.constraint...) t.ulconstraint = append(t.ulconstraint, t1.ulconstraint...) default: t.constraint = append(t.constraint, t1) } } break } // Get type of first operand. if t, err = nodeType2(interp, sc, n.child[0], seen); err != nil { return nil, err } // For operators other than shift, get the type from the 2nd operand if the first is untyped. if t.untyped && !isShiftNode(n) { var t1 *itype t1, err = nodeType2(interp, sc, n.child[1], seen) if !(t1.untyped && isInt(t1.TypeOf()) && isFloat(t.TypeOf())) { t = t1 } } // If the node is to be assigned or returned, the node type is the destination type. dt := t switch a := n.anc; { case a.kind == assignStmt && isEmptyInterface(a.child[0].typ): // Because an empty interface concrete type "mutates" as different values are // assigned to it, we need to make a new itype from scratch everytime a new // assignment is made, and not let different nodes (of the same variable) share the // same itype. Otherwise they would overwrite each other. a.child[0].typ = &itype{cat: interfaceT, val: dt, str: "interface{}"} case a.kind == defineStmt && len(a.child) > a.nleft+a.nright: if dt, err = nodeType2(interp, sc, a.child[a.nleft], seen); err != nil { return nil, err } case a.kind == returnStmt: dt = sc.def.typ.ret[childPos(n)] } if isInterfaceSrc(dt) { // Set a new interface type preserving the concrete type (.val field). t2 := *dt t2.val = t dt = &t2 } t = dt case callExpr: if isBuiltinCall(n, sc) { // Builtin types are special and may depend from their input arguments. switch n.child[0].ident { case bltnComplex: var nt0, nt1 *itype if nt0, err = nodeType2(interp, sc, n.child[1], seen); err != nil { return nil, err } if nt1, err = nodeType2(interp, sc, n.child[2], seen); err != nil { return nil, err } if nt0.incomplete || nt1.incomplete { t.incomplete = true } else { switch t0, t1 := nt0.TypeOf(), nt1.TypeOf(); { case isFloat32(t0) && isFloat32(t1): t = sc.getType("complex64") case isFloat64(t0) && isFloat64(t1): t = sc.getType("complex128") case nt0.untyped && isNumber(t0) && nt1.untyped && isNumber(t1): t = untypedComplex(n) case nt0.untyped && isFloat32(t1) || nt1.untyped && isFloat32(t0): t = sc.getType("complex64") case nt0.untyped && isFloat64(t1) || nt1.untyped && isFloat64(t0): t = sc.getType("complex128") default: err = n.cfgErrorf("invalid types %s and %s", t0.Kind(), t1.Kind()) } if nt0.untyped && nt1.untyped { t = untypedComplex(n) } } case bltnReal, bltnImag: if t, err = nodeType2(interp, sc, n.child[1], seen); err != nil { return nil, err } if !t.incomplete { switch k := t.TypeOf().Kind(); { case t.untyped && isNumber(t.TypeOf()): t = untypedFloat(n) case k == reflect.Complex64: t = sc.getType("float32") case k == reflect.Complex128: t = sc.getType("float64") default: err = n.cfgErrorf("invalid complex type %s", k) } } case bltnCap, bltnCopy, bltnLen: t = sc.getType("int") case bltnAppend, bltnMake: t, err = nodeType2(interp, sc, n.child[1], seen) case bltnNew: t, err = nodeType2(interp, sc, n.child[1], seen) incomplete := t.incomplete t = ptrOf(t, withScope(sc)) t.incomplete = incomplete case bltnRecover: t = sc.getType("interface{}") default: t = &itype{cat: builtinT} } if err != nil { return nil, err } } else { if t, err = nodeType2(interp, sc, n.child[0], seen); err != nil || t == nil { return nil, err } switch t.cat { case valueT: if rt := t.rtype; rt.Kind() == reflect.Func && rt.NumOut() == 1 { t = valueTOf(rt.Out(0), withScope(sc)) } default: if len(t.ret) == 1 { t = t.ret[0] } } } case compositeLitExpr: t, err = nodeType2(interp, sc, n.child[0], seen) case chanType, chanTypeRecv, chanTypeSend: dir := chanSendRecv switch n.kind { case chanTypeRecv: dir = chanRecv case chanTypeSend: dir = chanSend } val, err := nodeType2(interp, sc, n.child[0], seen) if err != nil { return nil, err } t = chanOf(val, dir, withNode(n), withScope(sc)) t.incomplete = val.incomplete case ellipsisExpr: val, err := nodeType2(interp, sc, n.child[0], seen) if err != nil { return nil, err } t = variadicOf(val, withNode(n), withScope(sc)) t.incomplete = t.val.incomplete case funcLit: t, err = nodeType2(interp, sc, n.child[2], seen) case funcType: var incomplete bool // Handle type parameters. for _, arg := range n.child[0].child { cl := len(arg.child) - 1 typ, err := nodeType2(interp, sc, arg.child[cl], seen) if err != nil { return nil, err } for _, c := range arg.child[:cl] { sc.sym[c.ident] = &symbol{index: -1, kind: varTypeSym, typ: typ} } incomplete = incomplete || typ.incomplete } // Handle input parameters. args := make([]*itype, 0, len(n.child[1].child)) for _, arg := range n.child[1].child { cl := len(arg.child) - 1 typ, err := nodeType2(interp, sc, arg.child[cl], seen) if err != nil { return nil, err } args = append(args, typ) // Several arguments may be factorized on the same field type. for i := 1; i < cl; i++ { args = append(args, typ) } incomplete = incomplete || typ.incomplete } // Handle returned values. var rets []*itype if len(n.child) == 3 { for _, ret := range n.child[2].child { cl := len(ret.child) - 1 typ, err := nodeType2(interp, sc, ret.child[cl], seen) if err != nil { return nil, err } rets = append(rets, typ) // Several arguments may be factorized on the same field type. for i := 1; i < cl; i++ { rets = append(rets, typ) } incomplete = incomplete || typ.incomplete } } t = funcOf(args, rets, withNode(n), withScope(sc)) t.incomplete = incomplete case identExpr: sym, _, found := sc.lookup(n.ident) if !found { // retry with the filename, in case ident is a package name. baseName := filepath.Base(interp.fset.Position(n.pos).Filename) ident := filepath.Join(n.ident, baseName) sym, _, found = sc.lookup(ident) if !found { t = &itype{name: n.ident, path: sc.pkgName, node: n, incomplete: true, scope: sc} sc.sym[n.ident] = &symbol{kind: typeSym, typ: t} break } } if sym.kind == varTypeSym { t = genericOf(sym.typ, n.ident, sc.pkgName, withNode(n), withScope(sc)) } else { t = sym.typ } if t == nil { if t, err = nodeType2(interp, sc, sym.node, seen); err != nil { return nil, err } } if t.incomplete && t.cat == linkedT && t.val != nil && t.val.cat != nilT { t.incomplete = false } if t.incomplete && t.node != n { m := t.method if t, err = nodeType2(interp, sc, t.node, seen); err != nil { return nil, err } t.method = m sym.typ = t } if t.node == nil { t.node = n } case indexExpr: var lt *itype if lt, err = nodeType2(interp, sc, n.child[0], seen); err != nil { return nil, err } if lt.incomplete { if t == nil { t = lt } else { t.incomplete = true } break } switch lt.cat { case arrayT, mapT, sliceT, variadicT: t = lt.val case genericT: t1, err := nodeType2(interp, sc, n.child[1], seen) if err != nil { return nil, err } if t1.cat == genericT || t1.incomplete { t = lt break } name := lt.id() + "[" + t1.id() + "]" if sym, _, found := sc.lookup(name); found { t = sym.typ break } // A generic type is being instantiated. Generate it. t, err = genType(interp, sc, name, lt, []*itype{t1}, seen) if err != nil { return nil, err } } case indexListExpr: // Similar to above indexExpr for generic types, but handle multiple type parameters. var lt *itype if lt, err = nodeType2(interp, sc, n.child[0], seen); err != nil { return nil, err } if lt.incomplete { if t == nil { t = lt } else { t.incomplete = true } break } // Index list expressions can be used only in context of generic types. if lt.cat != genericT { err = n.cfgErrorf("not a generic type: %s", lt.id()) return nil, err } name := lt.id() + "[" out := false types := []*itype{} for _, c := range n.child[1:] { t1, err := nodeType2(interp, sc, c, seen) if err != nil { return nil, err } if t1.cat == genericT || t1.incomplete { t = lt out = true break } types = append(types, t1) name += t1.id() + "," } if out { break } name = strings.TrimSuffix(name, ",") + "]" if sym, _, found := sc.lookup(name); found { t = sym.typ break } // A generic type is being instantiated. Generate it. t, err = genType(interp, sc, name, lt, types, seen) case interfaceType: if sname := typeName(n); sname != "" { if sym, _, found := sc.lookup(sname); found && sym.kind == typeSym { t = interfaceOf(sym.typ, sym.typ.field, sym.typ.constraint, sym.typ.ulconstraint, withNode(n), withScope(sc)) } } var incomplete bool fields := []structField{} constraint := []*itype{} ulconstraint := []*itype{} for _, c := range n.child[0].child { c0 := c.child[0] if len(c.child) == 1 { if c0.ident == "error" { // Unwrap error interface inplace rather than embedding it, because // "error" is lower case which may cause problems with reflect for method lookup. typ := errorMethodType(sc) fields = append(fields, structField{name: "Error", typ: typ}) continue } typ, err := nodeType2(interp, sc, c0, seen) if err != nil { return nil, err } incomplete = incomplete || typ.incomplete if typ.cat == constraintT { constraint = append(constraint, typ.constraint...) ulconstraint = append(ulconstraint, typ.ulconstraint...) continue } fields = append(fields, structField{name: fieldName(c0), embed: true, typ: typ}) continue } typ, err := nodeType2(interp, sc, c.child[1], seen) if err != nil { return nil, err } fields = append(fields, structField{name: c0.ident, typ: typ}) incomplete = incomplete || typ.incomplete } t = interfaceOf(t, fields, constraint, ulconstraint, withNode(n), withScope(sc)) t.incomplete = incomplete case landExpr, lorExpr: t = sc.getType("bool") case mapType: key, err := nodeType2(interp, sc, n.child[0], seen) if err != nil { return nil, err } val, err := nodeType2(interp, sc, n.child[1], seen) if err != nil { return nil, err } t = mapOf(key, val, withNode(n), withScope(sc)) t.incomplete = key.incomplete || val.incomplete case parenExpr: t, err = nodeType2(interp, sc, n.child[0], seen) case selectorExpr: // Resolve the left part of selector, then lookup the right part on it var lt *itype // Lookup the package symbol first if we are in a field expression as // a previous parameter has the same name as the package, we need to // prioritize the package type. if n.anc.kind == fieldExpr { lt = findPackageType(interp, sc, n.child[0]) } if lt == nil { // No package was found or we are not in a field expression, we are looking for a variable. if lt, err = nodeType2(interp, sc, n.child[0], seen); err != nil { return nil, err } } if lt.incomplete { break } name := n.child[1].ident switch lt.cat { case binPkgT: pkg := interp.binPkg[lt.path] if v, ok := pkg[name]; ok { rtype := v.Type() if isBinType(v) { // A bin type is encoded as a pointer on a typed nil value. rtype = rtype.Elem() } t = valueTOf(rtype, withNode(n), withScope(sc)) break } // Continue search in source package, as it may exist if package contains generics. fallthrough case srcPkgT: if pkg, ok := interp.srcPkg[lt.path]; ok { if s, ok := pkg[name]; ok { t = s.typ break } } err = n.cfgErrorf("undefined selector %s.%s", lt.path, name) default: if m, _ := lt.lookupMethod(name); m != nil { t, err = nodeType2(interp, sc, m.child[2], seen) } else if bm, _, _, ok := lt.lookupBinMethod(name); ok { t = valueTOf(bm.Type, isBinMethod(), withRecv(lt), withScope(sc)) } else if ti := lt.lookupField(name); len(ti) > 0 { t = lt.fieldSeq(ti) } else if bs, _, ok := lt.lookupBinField(name); ok { t = valueTOf(bs.Type, withScope(sc)) } else { err = lt.node.cfgErrorf("undefined selector %s", name) } } case sliceExpr: t, err = nodeType2(interp, sc, n.child[0], seen) if err != nil { return nil, err } if t.cat == valueT { switch t.rtype.Kind() { case reflect.Array, reflect.Ptr: t = valueTOf(reflect.SliceOf(t.rtype.Elem()), withScope(sc)) } break } if t.cat == ptrT { t = t.val } if t.cat == arrayT { incomplete := t.incomplete t = sliceOf(t.val, withNode(n), withScope(sc)) t.incomplete = incomplete } case structType: var sym *symbol var found bool sname := structName(n) if sname != "" { sym, _, found = sc.lookup(sname) if found && sym.kind == typeSym && sym.typ != nil { t = structOf(sym.typ, sym.typ.field, withNode(n), withScope(sc)) } else { t = structOf(nil, nil, withNode(n), withScope(sc)) sc.sym[sname] = &symbol{index: -1, kind: typeSym, typ: t, node: n} } } var incomplete bool fields := make([]structField, 0, len(n.child[0].child)) for _, c := range n.child[0].child { switch { case len(c.child) == 1: typ, err := nodeType2(interp, sc, c.child[0], seen) if err != nil { return nil, err } fields = append(fields, structField{name: fieldName(c.child[0]), embed: true, typ: typ}) incomplete = incomplete || typ.incomplete case len(c.child) == 2 && c.child[1].kind == basicLit: tag := vString(c.child[1].rval) typ, err := nodeType2(interp, sc, c.child[0], seen) if err != nil { return nil, err } fields = append(fields, structField{name: fieldName(c.child[0]), embed: true, typ: typ, tag: tag}) incomplete = incomplete || typ.incomplete default: var tag string l := len(c.child) if c.lastChild().kind == basicLit { tag = vString(c.lastChild().rval) l-- } typ, err := nodeType2(interp, sc, c.child[l-1], seen) if err != nil { return nil, err } incomplete = incomplete || typ.incomplete for _, d := range c.child[:l-1] { fields = append(fields, structField{name: d.ident, typ: typ, tag: tag}) } } } t = structOf(t, fields, withNode(n), withScope(sc)) t.incomplete = incomplete if sname != "" { if sc.sym[sname] == nil { sc.sym[sname] = &symbol{index: -1, kind: typeSym, node: n} } sc.sym[sname].typ = t } case typeAssertExpr: t, err = nodeType2(interp, sc, n.child[1], seen) default: err = n.cfgErrorf("type definition not implemented: %s", n.kind) } if err == nil && t != nil && t.cat == nilT && !t.incomplete { err = n.cfgErrorf("use of untyped nil %s", t.name) } // The existing symbol data needs to be recovered, but not in the // case where we are aliasing another type. if n.anc.kind == typeSpec && n.kind != selectorExpr && n.kind != identExpr { name := n.anc.child[0].ident if sym := sc.sym[name]; sym != nil { t.path = sc.pkgName t.name = name } } switch { case t == nil: case t.name != "" && t.path != "": t.str = t.path + "." + t.name case t.cat == nilT: t.str = "nil" } return t, err } func genType(interp *Interpreter, sc *scope, name string, lt *itype, types []*itype, seen []*node) (t *itype, err error) { // A generic type is being instantiated. Generate it. g, _, err := genAST(sc, lt.node.anc, types) if err != nil { return nil, err } t, err = nodeType2(interp, sc, g.lastChild(), seen) if err != nil { return nil, err } lt.instance = append(lt.instance, t) // Add generated symbol in the scope of generic source and user. sc.sym[name] = &symbol{index: -1, kind: typeSym, typ: t, node: g} if lt.scope.sym[name] == nil { lt.scope.sym[name] = sc.sym[name] } for _, nod := range lt.method { if err := genMethod(interp, sc, t, nod, types); err != nil { return nil, err } } return t, err } func genMethod(interp *Interpreter, sc *scope, t *itype, nod *node, types []*itype) error { gm, _, err := genAST(sc, nod, types) if err != nil { return err } if gm.typ, err = nodeType(interp, sc, gm.child[2]); err != nil { return err } t.addMethod(gm) // If the receiver is a pointer to a generic type, generate also the pointer type. if rtn := gm.child[0].child[0].lastChild(); rtn != nil && rtn.kind == starExpr { pt := ptrOf(t, withNode(t.node), withScope(sc)) pt.addMethod(gm) rtn.typ = pt } // Compile the method AST in the scope of the generic type. scop := nod.typ.scope if _, err = interp.cfg(gm, scop, scop.pkgID, scop.pkgName); err != nil { return err } // Generate closures for function body. return genRun(gm) } // findPackageType searches the top level scope for a package type. func findPackageType(interp *Interpreter, sc *scope, n *node) *itype { // Find the root scope, the package symbols will exist there. for { if sc.level == 0 { break } sc = sc.anc } baseName := filepath.Base(interp.fset.Position(n.pos).Filename) sym, _, found := sc.lookup(filepath.Join(n.ident, baseName)) if !found || sym.typ == nil && sym.typ.cat != srcPkgT && sym.typ.cat != binPkgT { return nil } return sym.typ } func isBuiltinCall(n *node, sc *scope) bool { if n.kind != callExpr { return false } s := n.child[0].sym if s == nil { if sym, _, found := sc.lookup(n.child[0].ident); found { s = sym } } return s != nil && s.kind == bltnSym } // struct name returns the name of a struct type. func typeName(n *node) string { if n.anc.kind == typeSpec && len(n.anc.child) == 2 { return n.anc.child[0].ident } return "" } func structName(n *node) string { if n.anc.kind == typeSpec { return n.anc.child[0].ident } return "" } // fieldName returns an implicit struct field name according to node kind. func fieldName(n *node) string { switch n.kind { case selectorExpr: return fieldName(n.child[1]) case starExpr: return fieldName(n.child[0]) case indexExpr: return fieldName(n.child[0]) case identExpr: return n.ident default: return "" } } var zeroValues [maxT]reflect.Value func init() { zeroValues[boolT] = reflect.ValueOf(false) zeroValues[complex64T] = reflect.ValueOf(complex64(0)) zeroValues[complex128T] = reflect.ValueOf(complex128(0)) zeroValues[errorT] = reflect.ValueOf(new(error)).Elem() zeroValues[float32T] = reflect.ValueOf(float32(0)) zeroValues[float64T] = reflect.ValueOf(float64(0)) zeroValues[intT] = reflect.ValueOf(int(0)) zeroValues[int8T] = reflect.ValueOf(int8(0)) zeroValues[int16T] = reflect.ValueOf(int16(0)) zeroValues[int32T] = reflect.ValueOf(int32(0)) zeroValues[int64T] = reflect.ValueOf(int64(0)) zeroValues[stringT] = reflect.ValueOf("") zeroValues[uintT] = reflect.ValueOf(uint(0)) zeroValues[uint8T] = reflect.ValueOf(uint8(0)) zeroValues[uint16T] = reflect.ValueOf(uint16(0)) zeroValues[uint32T] = reflect.ValueOf(uint32(0)) zeroValues[uint64T] = reflect.ValueOf(uint64(0)) zeroValues[uintptrT] = reflect.ValueOf(uintptr(0)) } // Finalize returns a type pointer and error. It reparses a type from the // partial AST if necessary (after missing dependecy data is available). // If error is nil, the type is guarranteed to be completely defined and // usable for CFG. func (t *itype) finalize() (*itype, error) { var err error if t.incomplete { sym, _, found := t.scope.lookup(t.name) if found && !sym.typ.incomplete { sym.typ.method = append(sym.typ.method, t.method...) t.method = sym.typ.method t.incomplete = false return sym.typ, nil } m := t.method if t, err = nodeType(t.node.interp, t.scope, t.node); err != nil { return nil, err } if t.incomplete { return nil, t.node.cfgErrorf("incomplete type %s", t.name) } t.method = m t.node.typ = t if sym != nil { sym.typ = t } } return t, err } func (t *itype) addMethod(n *node) { for _, m := range t.method { if m == n { return } } t.method = append(t.method, n) } func (t *itype) numIn() int { switch t.cat { case funcT: return len(t.arg) case valueT: if t.rtype.Kind() != reflect.Func { return 0 } in := t.rtype.NumIn() if t.recv != nil { in-- } return in } return 0 } func (t *itype) in(i int) *itype { switch t.cat { case funcT: return t.arg[i] case valueT: if t.rtype.Kind() == reflect.Func { if t.recv != nil && !isInterface(t.recv) { i++ } if t.rtype.IsVariadic() && i == t.rtype.NumIn()-1 { val := valueTOf(t.rtype.In(i).Elem()) return &itype{cat: variadicT, val: val, str: "..." + val.str} } return valueTOf(t.rtype.In(i)) } } return nil } func (t *itype) numOut() int { switch t.cat { case funcT: return len(t.ret) case valueT: if t.rtype.Kind() == reflect.Func { return t.rtype.NumOut() } case builtinT: switch t.name { case "append", "cap", "complex", "copy", "imag", "len", "make", "new", "real", "recover", "unsafe.Alignof", "unsafe.Offsetof", "unsafe.Sizeof": return 1 } } return 0 } func (t *itype) out(i int) *itype { switch t.cat { case funcT: return t.ret[i] case valueT: if t.rtype.Kind() == reflect.Func { return valueTOf(t.rtype.Out(i)) } } return nil } func (t *itype) concrete() *itype { if isInterface(t) && t.val != nil { return t.val.concrete() } return t } func (t *itype) underlying() *itype { if t.cat == linkedT { return t.val.underlying() } return t } // typeDefined returns true if type t1 is defined from type t2 or t2 from t1. func typeDefined(t1, t2 *itype) bool { if t1.cat == linkedT && t1.val == t2 { return true } if t2.cat == linkedT && t2.val == t1 { return true } return false } // isVariadic returns true if the function type is variadic. // If the type is not a function or is not variadic, it will // return false. func (t *itype) isVariadic() bool { switch t.cat { case funcT: return len(t.arg) > 0 && t.arg[len(t.arg)-1].cat == variadicT case valueT: if t.rtype.Kind() == reflect.Func { return t.rtype.IsVariadic() } } return false } // isComplete returns true if type definition is complete. func (t *itype) isComplete() bool { return isComplete(t, map[string]bool{}) } func isComplete(t *itype, visited map[string]bool) bool { if t.incomplete { return false } name := t.path + "/" + t.name if visited[name] { return true } if t.name != "" { visited[name] = true } switch t.cat { case linkedT: if t.val != nil && t.val.cat != nilT { // A type aliased to a partially defined type is considered complete, to allow recursivity. return true } fallthrough case arrayT, chanT, chanRecvT, chanSendT, ptrT, sliceT, variadicT: return isComplete(t.val, visited) case funcT: complete := true for _, a := range t.arg { complete = complete && isComplete(a, visited) } for _, a := range t.ret { complete = complete && isComplete(a, visited) } return complete case interfaceT, structT: complete := true for _, f := range t.field { // Field implicit type names must be marked as visited, to break false circles. visited[f.typ.path+"/"+f.typ.name] = true complete = complete && isComplete(f.typ, visited) } return complete case mapT: return isComplete(t.key, visited) && isComplete(t.val, visited) case nilT: return false } return true } // comparable returns true if the type is comparable. func (t *itype) comparable() bool { typ := t.TypeOf() return t.cat == nilT || typ != nil && typ.Comparable() } func (t *itype) assignableTo(o *itype) bool { if t.equals(o) { return true } if t.cat == linkedT && o.cat == linkedT && (t.underlying().id() != o.underlying().id() || !typeDefined(t, o)) { return false } if t.isNil() && o.hasNil() || o.isNil() && t.hasNil() { return true } if t.TypeOf().AssignableTo(o.TypeOf()) { return true } if isInterface(o) && t.implements(o) { return true } if t.cat == sliceT && o.cat == sliceT { return t.val.assignableTo(o.val) } if t.isBinMethod && isFunc(o) { // TODO (marc): check that t without receiver as first parameter is equivalent to o. return true } if t.untyped && isNumber(t.TypeOf()) && isNumber(o.TypeOf()) { // Assignability depends on constant numeric value (overflow check), to be tested elsewhere. return true } n := t.node if n == nil || !n.rval.IsValid() { return false } con, ok := n.rval.Interface().(constant.Value) if !ok { return false } if con == nil || !isConstType(o) { return false } return representableConst(con, o.TypeOf()) } // convertibleTo returns true if t is convertible to o. func (t *itype) convertibleTo(o *itype) bool { if t.assignableTo(o) { return true } // unsafe checks tt, ot := t.TypeOf(), o.TypeOf() if (tt.Kind() == reflect.Ptr || tt.Kind() == reflect.Uintptr) && ot.Kind() == reflect.UnsafePointer { return true } if tt.Kind() == reflect.UnsafePointer && (ot.Kind() == reflect.Ptr || ot.Kind() == reflect.Uintptr) { return true } return t.TypeOf().ConvertibleTo(o.TypeOf()) } // ordered returns true if the type is ordered. func (t *itype) ordered() bool { typ := t.TypeOf() return isInt(typ) || isFloat(typ) || isString(typ) } // equals returns true if the given type is identical to the receiver one. func (t *itype) equals(o *itype) bool { switch ti, oi := isInterface(t), isInterface(o); { case ti && oi: return t.methods().equals(o.methods()) case ti && !oi: return o.methods().contains(t.methods()) case oi && !ti: return t.methods().contains(o.methods()) default: return t.id() == o.id() } } // matchDefault returns true if the receiver default type is the same as the given one. func (t *itype) matchDefault(o *itype) bool { return t.untyped && t.id() == "untyped "+o.id() } // MethodSet defines the set of methods signatures as strings, indexed per method name. type methodSet map[string]string // Contains returns true if the method set m contains the method set n. func (m methodSet) contains(n methodSet) bool { for k := range n { // Only check the presence of method, not its complete signature, // as the receiver may be part of the arguments, which makes a // robust check complex. if _, ok := m[k]; !ok { return false } } return true } // Equal returns true if the method set m is equal to the method set n. func (m methodSet) equals(n methodSet) bool { return m.contains(n) && n.contains(m) } // Methods returns a map of method type strings, indexed by method names. func (t *itype) methods() methodSet { seen := map[*itype]bool{} var getMethods func(typ *itype) methodSet getMethods = func(typ *itype) methodSet { res := make(methodSet) if seen[typ] { // Stop the recursion, we have seen this type. return res } seen[typ] = true switch typ.cat { case linkedT: for k, v := range getMethods(typ.val) { res[k] = v } case interfaceT: // Get methods from recursive analysis of interface fields. for _, f := range typ.field { if f.typ.cat == funcT { res[f.name] = f.typ.TypeOf().String() } else { for k, v := range getMethods(f.typ) { res[k] = v } } } case valueT, errorT: // Get method from corresponding reflect.Type. for i := typ.TypeOf().NumMethod() - 1; i >= 0; i-- { m := typ.rtype.Method(i) res[m.Name] = m.Type.String() } case ptrT: if typ.val.cat == valueT { // Ptr receiver methods need to be found with the ptr type. typ.TypeOf() // Ensure the rtype exists. for i := typ.rtype.NumMethod() - 1; i >= 0; i-- { m := typ.rtype.Method(i) res[m.Name] = m.Type.String() } } for k, v := range getMethods(typ.val) { res[k] = v } case structT: for _, f := range typ.field { if !f.embed { continue } for k, v := range getMethods(f.typ) { res[k] = v } } } // Get all methods defined on this type. for _, m := range typ.method { res[m.ident] = m.typ.TypeOf().String() } return res } return getMethods(t) } // id returns a unique type identificator string. func (t *itype) id() (res string) { // Prefer the wrapped type string over the rtype string. if t.cat == valueT && t.val != nil { return t.val.str } return t.str } // fixPossibleConstType returns the input type if it not a constant value, // otherwise, it returns the default Go type corresponding to the // constant.Value. func fixPossibleConstType(t reflect.Type) (r reflect.Type) { cv, ok := reflect.New(t).Elem().Interface().(constant.Value) if !ok { return t } switch cv.Kind() { case constant.Bool: r = reflect.TypeOf(true) case constant.Int: r = reflect.TypeOf(0) case constant.String: r = reflect.TypeOf("") case constant.Float: r = reflect.TypeOf(float64(0)) case constant.Complex: r = reflect.TypeOf(complex128(0)) } return r } // zero instantiates and return a zero value object for the given type during execution. func (t *itype) zero() (v reflect.Value, err error) { if t, err = t.finalize(); err != nil { return v, err } switch t.cat { case linkedT: v, err = t.val.zero() case arrayT, ptrT, structT, sliceT: v = reflect.New(t.frameType()).Elem() case valueT: v = reflect.New(t.rtype).Elem() default: v = zeroValues[t.cat] } return v, err } // fieldIndex returns the field index from name in a struct, or -1 if not found. func (t *itype) fieldIndex(name string) int { switch t.cat { case linkedT, ptrT: return t.val.fieldIndex(name) } for i, field := range t.field { if name == field.name { return i } } return -1 } // fieldSeq returns the field type from the list of field indexes. func (t *itype) fieldSeq(seq []int) *itype { ft := t for _, i := range seq { if ft.cat == ptrT { ft = ft.val } ft = ft.field[i].typ } return ft } // lookupField returns a list of indices, i.e. a path to access a field in a struct object. func (t *itype) lookupField(name string) []int { seen := map[*itype]bool{} var lookup func(*itype) []int tias := isStruct(t) lookup = func(typ *itype) []int { if seen[typ] { return nil } seen[typ] = true switch typ.cat { case linkedT, ptrT: return lookup(typ.val) } if fi := typ.fieldIndex(name); fi >= 0 { return []int{fi} } for i, f := range typ.field { switch f.typ.cat { case ptrT, structT, interfaceT, linkedT: if tias != isStruct(f.typ) { // Interface fields are not valid embedded struct fields. // Struct fields are not valid interface fields. break } if index2 := lookup(f.typ); len(index2) > 0 { return append([]int{i}, index2...) } } } return nil } return lookup(t) } // lookupBinField returns a structfield and a path to access an embedded binary field in a struct object. func (t *itype) lookupBinField(name string) (s reflect.StructField, index []int, ok bool) { if t.cat == ptrT { return t.val.lookupBinField(name) } if !isStruct(t) { return } rt := t.TypeOf() for t.cat == valueT && rt.Kind() == reflect.Ptr { rt = rt.Elem() } if rt.Kind() != reflect.Struct { return } s, ok = rt.FieldByName(name) if !ok { for i, f := range t.field { if f.embed { if s2, index2, ok2 := f.typ.lookupBinField(name); ok2 { index = append([]int{i}, index2...) return s2, index, ok2 } } } } return s, index, ok } // MethodCallType returns a method function type without the receiver defined. // The input type must be a method function type with the receiver as the first input argument. func (t *itype) methodCallType() reflect.Type { it := []reflect.Type{} ni := t.rtype.NumIn() for i := 1; i < ni; i++ { it = append(it, t.rtype.In(i)) } ot := []reflect.Type{} no := t.rtype.NumOut() for i := 0; i < no; i++ { ot = append(ot, t.rtype.Out(i)) } return reflect.FuncOf(it, ot, t.rtype.IsVariadic()) } func (t *itype) resolveAlias() *itype { for t.cat == linkedT { t = t.val } return t } // GetMethod returns a pointer to the method definition. func (t *itype) getMethod(name string) *node { for _, m := range t.method { if name == m.ident { return m } } return nil } // LookupMethod returns a pointer to method definition associated to type t // and the list of indices to access the right struct field, in case of an embedded method. func (t *itype) lookupMethod(name string) (*node, []int) { return t.lookupMethod2(name, nil) } func (t *itype) lookupMethod2(name string, seen map[*itype]bool) (*node, []int) { if seen == nil { seen = map[*itype]bool{} } if seen[t] { return nil, nil } seen[t] = true if t.cat == ptrT { return t.val.lookupMethod2(name, seen) } var index []int m := t.getMethod(name) if m == nil { for i, f := range t.field { if f.embed { if n, index2 := f.typ.lookupMethod2(name, seen); n != nil { index = append([]int{i}, index2...) return n, index } } } if t.cat == linkedT || isInterfaceSrc(t) && t.val != nil { return t.val.lookupMethod2(name, seen) } } return m, index } // interfaceMethod returns type of method matching an interface method name (not as a concrete method). func (t *itype) interfaceMethod(name string) *itype { return t.interfaceMethod2(name, nil) } func (t *itype) interfaceMethod2(name string, seen map[*itype]bool) *itype { if seen == nil { seen = map[*itype]bool{} } if seen[t] { return nil } seen[t] = true if t.cat == ptrT { return t.val.interfaceMethod2(name, seen) } for _, f := range t.field { if f.name == name && isInterface(t) { return f.typ } if !f.embed { continue } if typ := f.typ.interfaceMethod2(name, seen); typ != nil { return typ } } if t.cat == linkedT || isInterfaceSrc(t) && t.val != nil { return t.val.interfaceMethod2(name, seen) } return nil } // methodDepth returns a depth greater or equal to 0, or -1 if no match. func (t *itype) methodDepth(name string) int { if m, lint := t.lookupMethod(name); m != nil { return len(lint) } if _, lint, _, ok := t.lookupBinMethod(name); ok { return len(lint) } return -1 } // LookupBinMethod returns a method and a path to access a field in a struct object (the receiver). func (t *itype) lookupBinMethod(name string) (m reflect.Method, index []int, isPtr, ok bool) { return t.lookupBinMethod2(name, nil) } func (t *itype) lookupBinMethod2(name string, seen map[*itype]bool) (m reflect.Method, index []int, isPtr, ok bool) { if seen == nil { seen = map[*itype]bool{} } if seen[t] { return } seen[t] = true if t.cat == ptrT { return t.val.lookupBinMethod2(name, seen) } for i, f := range t.field { if f.embed { if m2, index2, isPtr2, ok2 := f.typ.lookupBinMethod2(name, seen); ok2 { index = append([]int{i}, index2...) return m2, index, isPtr2, ok2 } } } m, ok = t.TypeOf().MethodByName(name) if !ok { m, ok = reflect.PtrTo(t.TypeOf()).MethodByName(name) isPtr = ok } return m, index, isPtr, ok } func lookupFieldOrMethod(t *itype, name string) *itype { switch { case t.cat == valueT || t.cat == ptrT && t.val.cat == valueT: m, _, isPtr, ok := t.lookupBinMethod(name) if !ok { return nil } var recv *itype if t.rtype.Kind() != reflect.Interface { recv = t if isPtr && t.cat != ptrT && t.rtype.Kind() != reflect.Ptr { recv = ptrOf(t) } } return valueTOf(m.Type, withRecv(recv)) case t.cat == interfaceT: seq := t.lookupField(name) if seq == nil { return nil } return t.fieldSeq(seq) default: n, _ := t.lookupMethod(name) if n == nil { return nil } return n.typ } } func exportName(s string) string { if canExport(s) { return s } return "X" + s } var ( // TODO(mpl): generators. emptyInterfaceType = reflect.TypeOf((*interface{})(nil)).Elem() valueInterfaceType = reflect.TypeOf((*valueInterface)(nil)).Elem() constVal = reflect.TypeOf((*constant.Value)(nil)).Elem() ) type refTypeContext struct { defined map[string]*itype // refs keeps track of all the places (in the same type recursion) where the // type name (as key) is used as a field of another (or possibly the same) struct // type. Each of these fields will then live as an unsafe2.dummy type until the // whole recursion is fully resolved, and the type is fixed. refs map[string][]*itype // When we detect for the first time that we are in a recursive type (thanks to // defined), we keep track of the first occurrence of the type where the recursion // started, so we can restart the last step that fixes all the types from the same // "top-level" point. rect *itype rebuilding bool slevel int } // Clone creates a copy of the ref type context. func (c *refTypeContext) Clone() *refTypeContext { return &refTypeContext{defined: c.defined, refs: c.refs, rebuilding: c.rebuilding} } func (c *refTypeContext) isComplete() bool { for _, t := range c.defined { if t.rtype == nil { return false } } return true } func (t *itype) fixDummy(typ reflect.Type) reflect.Type { if typ == unsafe2.DummyType { return t.rtype } switch typ.Kind() { case reflect.Array: return reflect.ArrayOf(typ.Len(), t.fixDummy(typ.Elem())) case reflect.Chan: return reflect.ChanOf(typ.ChanDir(), t.fixDummy(typ.Elem())) case reflect.Func: in := make([]reflect.Type, typ.NumIn()) for i := range in { in[i] = t.fixDummy(typ.In(i)) } out := make([]reflect.Type, typ.NumOut()) for i := range out { out[i] = t.fixDummy(typ.Out(i)) } return reflect.FuncOf(in, out, typ.IsVariadic()) case reflect.Map: return reflect.MapOf(t.fixDummy(typ.Key()), t.fixDummy(typ.Elem())) case reflect.Ptr: return reflect.PtrTo(t.fixDummy(typ.Elem())) case reflect.Slice: return reflect.SliceOf(t.fixDummy(typ.Elem())) case reflect.Struct: fields := make([]reflect.StructField, typ.NumField()) for i := range fields { fields[i] = typ.Field(i) fields[i].Type = t.fixDummy(fields[i].Type) } return reflect.StructOf(fields) } return typ } // RefType returns a reflect.Type representation from an interpreter type. // In simple cases, reflect types are directly mapped from the interpreter // counterpart. // For recursive named struct or interfaces, as reflect does not permit to // create a recursive named struct, a dummy type is set temporarily for each recursive // field. When done, the dummy type fields are updated with the original reflect type // pointer using unsafe. We thus obtain a usable recursive type definition, except // for string representation, as created reflect types are still unnamed. func (t *itype) refType(ctx *refTypeContext) reflect.Type { if ctx == nil { ctx = &refTypeContext{ defined: map[string]*itype{}, refs: map[string][]*itype{}, } } if t.incomplete || t.cat == nilT { var err error if t, err = t.finalize(); err != nil { panic(err) } } name := t.path + "/" + t.name if t.rtype != nil && !ctx.rebuilding { return t.rtype } if dt := ctx.defined[name]; dt != nil { // We get here when we are a struct field, and our type name has already been // seen at least once in one of our englobing structs. i.e. there's at least one // level of type recursion. if dt.rtype != nil { t.rtype = dt.rtype return dt.rtype } // The recursion has not been fully resolved yet. // To indicate that a rebuild is needed on the englobing struct, // return a dummy field type and create an empty entry. flds := ctx.refs[name] ctx.rect = dt // We know we are used as a field by someone, but we don't know by who // at this point in the code, so we just mark it as an empty *itype for now. // We'll complete the *itype in the caller. ctx.refs[name] = append(flds, (*itype)(nil)) return unsafe2.DummyType } if isGeneric(t) { return reflect.TypeOf((*generic)(nil)).Elem() } switch t.cat { case linkedT: t.rtype = t.val.refType(ctx) case arrayT: t.rtype = reflect.ArrayOf(t.length, t.val.refType(ctx)) case sliceT, variadicT: t.rtype = reflect.SliceOf(t.val.refType(ctx)) case chanT: t.rtype = reflect.ChanOf(reflect.BothDir, t.val.refType(ctx)) case chanRecvT: t.rtype = reflect.ChanOf(reflect.RecvDir, t.val.refType(ctx)) case chanSendT: t.rtype = reflect.ChanOf(reflect.SendDir, t.val.refType(ctx)) case errorT: t.rtype = reflect.TypeOf(new(error)).Elem() case funcT: variadic := false in := make([]reflect.Type, len(t.arg)) out := make([]reflect.Type, len(t.ret)) for i, v := range t.arg { in[i] = v.refType(ctx) variadic = v.cat == variadicT } for i, v := range t.ret { out[i] = v.refType(ctx) } t.rtype = reflect.FuncOf(in, out, variadic) case interfaceT: if len(t.field) == 0 { // empty interface, do not wrap it t.rtype = emptyInterfaceType break } t.rtype = valueInterfaceType case mapT: t.rtype = reflect.MapOf(t.key.refType(ctx), t.val.refType(ctx)) case ptrT: rt := t.val.refType(ctx) if rt == unsafe2.DummyType && ctx.slevel > 1 { // We have a pointer to a recursive struct which is not yet fully computed. // Return it but do not yet store it in rtype, so the complete version can // be stored in future. return reflect.PtrTo(rt) } t.rtype = reflect.PtrTo(rt) case structT: if t.name != "" { ctx.defined[name] = t } ctx.slevel++ var fields []reflect.StructField for _, f := range t.field { field := reflect.StructField{ Name: exportName(f.name), Type: f.typ.refType(ctx), Tag: reflect.StructTag(f.tag), } if len(t.field) == 1 && f.embed { // Mark the field as embedded (anonymous) only if it is the // only one, to avoid a panic due to golang/go#15924 issue. field.Anonymous = true } fields = append(fields, field) // Find any nil type refs that indicates a rebuild is needed on this field. for _, flds := range ctx.refs { for j, fld := range flds { if fld == nil { flds[j] = t } } } } ctx.slevel-- type fixStructField struct { name string index int } fieldFix := []fixStructField{} // Slice of field indices to fix for recursivity. t.rtype = reflect.StructOf(fields) if ctx.isComplete() { for _, s := range ctx.defined { for i := 0; i < s.rtype.NumField(); i++ { f := s.rtype.Field(i) if strings.HasSuffix(f.Type.String(), "unsafe2.dummy") { unsafe2.SetFieldType(s.rtype, i, ctx.rect.fixDummy(s.rtype.Field(i).Type)) if name == s.path+"/"+s.name { fieldFix = append(fieldFix, fixStructField{s.name, i}) } continue } if f.Type.Kind() == reflect.Func && strings.Contains(f.Type.String(), "unsafe2.dummy") { fieldFix = append(fieldFix, fixStructField{s.name, i}) } } } } // The rtype has now been built, we can go back and rebuild // all the recursive types that relied on this type. // However, as we are keyed by type name, if two or more (recursive) fields at // the same depth level are of the same type, or a "variation" of the same type // (slice of, map of, etc), they "mask" each other, and only one // of them is in ctx.refs. That is why the code around here is a bit convoluted, // and we need both the loop above, around all the struct fields, and the loop // below, around the ctx.refs. for _, f := range ctx.refs[name] { for _, ff := range fieldFix { if ff.name == f.name { ftyp := f.field[ff.index].typ.refType(&refTypeContext{defined: ctx.defined, rebuilding: true}) unsafe2.SetFieldType(f.rtype, ff.index, ftyp) } } } default: if z, _ := t.zero(); z.IsValid() { t.rtype = z.Type() } } return t.rtype } // TypeOf returns the reflection type of dynamic interpreter type t. func (t *itype) TypeOf() reflect.Type { return t.refType(nil) } func (t *itype) frameType() (r reflect.Type) { var err error if t, err = t.finalize(); err != nil { panic(err) } switch t.cat { case linkedT: r = t.val.frameType() case arrayT: r = reflect.ArrayOf(t.length, t.val.frameType()) case sliceT, variadicT: r = reflect.SliceOf(t.val.frameType()) case interfaceT: if len(t.field) == 0 { // empty interface, do not wrap it r = emptyInterfaceType break } r = valueInterfaceType case mapT: r = reflect.MapOf(t.key.frameType(), t.val.frameType()) case ptrT: r = reflect.PtrTo(t.val.frameType()) default: r = t.TypeOf() } return r } func (t *itype) implements(it *itype) bool { if isBin(t) { // Note: in case of a valueInterfaceType, we // miss required data which will be available // later, so we optimistically return true to progress, // and additional checks will be hopefully performed at // runtime. if rt := it.TypeOf(); rt == valueInterfaceType { return true } return t.TypeOf().Implements(it.TypeOf()) } return t.methods().contains(it.methods()) } // defaultType returns the default type of an untyped type. func (t *itype) defaultType(v reflect.Value, sc *scope) *itype { if !t.untyped { return t } typ := t // The default type can also be derived from a constant value. if v.IsValid() && v.Type().Implements(constVal) { switch v.Interface().(constant.Value).Kind() { case constant.String: typ = sc.getType("string") case constant.Bool: typ = sc.getType("bool") case constant.Int: switch t.cat { case int32T: typ = sc.getType("int32") default: typ = sc.getType("int") } case constant.Float: typ = sc.getType("float64") case constant.Complex: typ = sc.getType("complex128") } } if typ.untyped { switch t.cat { case stringT: typ = sc.getType("string") case boolT: typ = sc.getType("bool") case intT: typ = sc.getType("int") case float64T: typ = sc.getType("float64") case complex128T: typ = sc.getType("complex128") default: *typ = *t typ.untyped = false } } return typ } func (t *itype) isNil() bool { return t.cat == nilT } func (t *itype) hasNil() bool { switch rt := t.TypeOf(); rt.Kind() { case reflect.UnsafePointer: return true case reflect.Slice, reflect.Ptr, reflect.Func, reflect.Interface, reflect.Map, reflect.Chan: return true case reflect.Struct: if rt == valueInterfaceType { return true } } return false } func (t *itype) elem() *itype { if t.cat == valueT { return valueTOf(t.rtype.Elem()) } return t.val } func hasElem(t reflect.Type) bool { switch t.Kind() { case reflect.Array, reflect.Chan, reflect.Map, reflect.Ptr, reflect.Slice: return true } return false } func constToInt(c constant.Value) int { if constant.BitLen(c) > 64 { panic(fmt.Sprintf("constant %s overflows int64", c.ExactString())) } i, _ := constant.Int64Val(c) return int(i) } func constToString(v reflect.Value) string { c := v.Interface().(constant.Value) return constant.StringVal(c) } func wrappedType(n *node) *itype { if n.typ.cat != valueT { return nil } return n.typ.val } func isShiftNode(n *node) bool { switch n.action { case aShl, aShr, aShlAssign, aShrAssign: return true } return false } // chanElement returns the channel element type. func chanElement(t *itype) *itype { switch t.cat { case linkedT: return chanElement(t.val) case chanT, chanSendT, chanRecvT: return t.val case valueT: return valueTOf(t.rtype.Elem(), withNode(t.node), withScope(t.scope)) } return nil } func isBool(t *itype) bool { return t.TypeOf().Kind() == reflect.Bool } func isChan(t *itype) bool { return t.TypeOf().Kind() == reflect.Chan } func isFunc(t *itype) bool { return t.TypeOf().Kind() == reflect.Func } func isMap(t *itype) bool { return t.TypeOf().Kind() == reflect.Map } func isPtr(t *itype) bool { return t.TypeOf().Kind() == reflect.Ptr } func isEmptyInterface(t *itype) bool { return t != nil && t.cat == interfaceT && len(t.field) == 0 } func isGeneric(t *itype) bool { return t.cat == funcT && t.node != nil && len(t.node.child) > 0 && len(t.node.child[0].child) > 0 } func isNamedFuncSrc(t *itype) bool { return isFuncSrc(t) && t.node.anc.kind == funcDecl } func isFuncSrc(t *itype) bool { return t.cat == funcT || (t.cat == linkedT && isFuncSrc(t.val)) } func isPtrSrc(t *itype) bool { return t.cat == ptrT || (t.cat == linkedT && isPtrSrc(t.val)) } func isSendChan(t *itype) bool { rt := t.TypeOf() return rt.Kind() == reflect.Chan && rt.ChanDir() == reflect.SendDir } func isArray(t *itype) bool { if t.cat == nilT { return false } k := t.TypeOf().Kind() return k == reflect.Array || k == reflect.Slice } func isInterfaceSrc(t *itype) bool { return t.cat == interfaceT || (t.cat == linkedT && isInterfaceSrc(t.val)) } func isInterfaceBin(t *itype) bool { return t.cat == valueT && t.rtype.Kind() == reflect.Interface || t.cat == errorT } func isInterface(t *itype) bool { return isInterfaceSrc(t) || t.TypeOf() == valueInterfaceType || t.TypeOf() != nil && t.TypeOf().Kind() == reflect.Interface } func isBin(t *itype) bool { switch t.cat { case valueT: return true case linkedT, ptrT: return isBin(t.val) default: return false } } func isStruct(t *itype) bool { // Test first for a struct category, because a recursive interpreter struct may be // represented by an interface{} at reflect level. switch t.cat { case structT: return true case linkedT, ptrT: return isStruct(t.val) case valueT: k := t.rtype.Kind() return k == reflect.Struct || (k == reflect.Ptr && t.rtype.Elem().Kind() == reflect.Struct) default: return false } } func isConstType(t *itype) bool { rt := t.TypeOf() return isBoolean(rt) || isString(rt) || isNumber(rt) } func isInt(t reflect.Type) bool { if t == nil { return false } switch t.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: return true } return false } func isUint(t reflect.Type) bool { if t == nil { return false } switch t.Kind() { case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: return true } return false } func isComplex(t reflect.Type) bool { if t == nil { return false } switch t.Kind() { case reflect.Complex64, reflect.Complex128: return true } return false } func isFloat(t reflect.Type) bool { if t == nil { return false } switch t.Kind() { case reflect.Float32, reflect.Float64: return true } return false } func isByteArray(t reflect.Type) bool { if t == nil { return false } k := t.Kind() return (k == reflect.Array || k == reflect.Slice) && t.Elem().Kind() == reflect.Uint8 } func isFloat32(t reflect.Type) bool { return t != nil && t.Kind() == reflect.Float32 } func isFloat64(t reflect.Type) bool { return t != nil && t.Kind() == reflect.Float64 } func isNumber(t reflect.Type) bool { return isInt(t) || isFloat(t) || isComplex(t) || isConstantValue(t) } func isBoolean(t reflect.Type) bool { return t != nil && t.Kind() == reflect.Bool } func isString(t reflect.Type) bool { return t != nil && t.Kind() == reflect.String } func isConstantValue(t reflect.Type) bool { return t != nil && t.Implements(constVal) } yaegi-0.16.1/interp/typecheck.go000066400000000000000000001012231460330105400164770ustar00rootroot00000000000000package interp import ( "errors" "go/constant" "go/token" "math" "reflect" ) type opPredicates map[action]func(reflect.Type) bool // typecheck handles all type checking following "go/types" logic. // // Due to variant type systems (itype vs reflect.Type) a single // type system should used, namely reflect.Type with exception // of the untyped flag on itype. type typecheck struct { scope *scope } // op type checks an expression against a set of expression predicates. func (check typecheck) op(p opPredicates, a action, n, c *node, t reflect.Type) error { if pred := p[a]; pred != nil { if !pred(t) { return n.cfgErrorf("invalid operation: operator %v not defined on %s", n.action, c.typ.id()) } } else { return n.cfgErrorf("invalid operation: unknown operator %v", n.action) } return nil } // assignment checks if n can be assigned to typ. // // Use typ == nil to indicate assignment to an untyped blank identifier. func (check typecheck) assignment(n *node, typ *itype, context string) error { if n.typ == nil { return n.cfgErrorf("invalid type in %s", context) } if n.typ.untyped { if typ == nil || isInterface(typ) { if typ == nil && n.typ.cat == nilT { return n.cfgErrorf("use of untyped nil in %s", context) } typ = n.typ.defaultType(n.rval, check.scope) } if err := check.convertUntyped(n, typ); err != nil { return err } } if typ == nil { return nil } if !n.typ.assignableTo(typ) && typ.str != "*unsafe2.dummy" { if context == "" { return n.cfgErrorf("cannot use type %s as type %s", n.typ.id(), typ.id()) } return n.cfgErrorf("cannot use type %s as type %s in %s", n.typ.id(), typ.id(), context) } return nil } // assignExpr type checks an assign expression. // // This is done per pair of assignments. func (check typecheck) assignExpr(n, dest, src *node) error { if n.action == aAssign { isConst := n.anc.kind == constDecl if !isConst { // var operations must be typed dest.typ = dest.typ.defaultType(src.rval, check.scope) } return check.assignment(src, dest.typ, "assignment") } // assignment operations. if n.nleft > 1 || n.nright > 1 { return n.cfgErrorf("assignment operation %s requires single-valued expressions", n.action) } return check.binaryExpr(n) } // addressExpr type checks a unary address expression. func (check typecheck) addressExpr(n *node) error { c0 := n.child[0] found := false for !found { switch c0.kind { case parenExpr: c0 = c0.child[0] continue case selectorExpr: c0 = c0.child[1] continue case starExpr: c0 = c0.child[0] continue case indexExpr, sliceExpr: c := c0.child[0] if isArray(c.typ) || isMap(c.typ) { c0 = c found = true continue } case compositeLitExpr, identExpr: found = true continue } return n.cfgErrorf("invalid operation: cannot take address of %s [kind: %s]", c0.typ.id(), kinds[c0.kind]) } return nil } // starExpr type checks a star expression on a variable. func (check typecheck) starExpr(n *node) error { if n.typ.TypeOf().Kind() != reflect.Ptr { return n.cfgErrorf("invalid operation: cannot indirect %q", n.name()) } return nil } var unaryOpPredicates = opPredicates{ aInc: isNumber, aDec: isNumber, aPos: isNumber, aNeg: isNumber, aBitNot: isInt, aNot: isBoolean, } // unaryExpr type checks a unary expression. func (check typecheck) unaryExpr(n *node) error { c0 := n.child[0] if isBlank(c0) { return n.cfgErrorf("cannot use _ as value") } t0 := c0.typ.TypeOf() if n.action == aRecv { if !isChan(c0.typ) { return n.cfgErrorf("invalid operation: cannot receive from non-channel %s", c0.typ.id()) } if isSendChan(c0.typ) { return n.cfgErrorf("invalid operation: cannot receive from send-only channel %s", c0.typ.id()) } return nil } return check.op(unaryOpPredicates, n.action, n, c0, t0) } // shift type checks a shift binary expression. func (check typecheck) shift(n *node) error { c0, c1 := n.child[0], n.child[1] t0, t1 := c0.typ.TypeOf(), c1.typ.TypeOf() var v0 constant.Value if c0.typ.untyped && c0.rval.IsValid() { v0 = constant.ToInt(c0.rval.Interface().(constant.Value)) c0.rval = reflect.ValueOf(v0) } if !(c0.typ.untyped && v0 != nil && v0.Kind() == constant.Int || isInt(t0)) { return n.cfgErrorf("invalid operation: shift of type %v", c0.typ.id()) } switch { case c1.typ.untyped: if err := check.convertUntyped(c1, check.scope.getType("uint")); err != nil { return n.cfgErrorf("invalid operation: shift count type %v, must be integer", c1.typ.id()) } case isInt(t1): // nothing to do default: return n.cfgErrorf("invalid operation: shift count type %v, must be integer", c1.typ.id()) } return nil } // comparison type checks a comparison binary expression. func (check typecheck) comparison(n *node) error { t0, t1 := n.child[0].typ, n.child[1].typ if !t0.assignableTo(t1) && !t1.assignableTo(t0) { return n.cfgErrorf("invalid operation: mismatched types %s and %s", t0.id(), t1.id()) } ok := false if !isInterface(t0) && !isInterface(t1) && !t0.isNil() && !t1.isNil() && t0.untyped == t1.untyped && t0.id() != t1.id() && !typeDefined(t0, t1) { // Non interface types must be really equals. return n.cfgErrorf("invalid operation: mismatched types %s and %s", t0.id(), t1.id()) } switch n.action { case aEqual, aNotEqual: ok = t0.comparable() && t1.comparable() || t0.isNil() && t1.hasNil() || t1.isNil() && t0.hasNil() case aLower, aLowerEqual, aGreater, aGreaterEqual: ok = t0.ordered() && t1.ordered() } if !ok { typ := t0 if typ.isNil() { typ = t1 } return n.cfgErrorf("invalid operation: operator %v not defined on %s", n.action, typ.id()) } return nil } var binaryOpPredicates = opPredicates{ aAdd: func(typ reflect.Type) bool { return isNumber(typ) || isString(typ) }, aSub: isNumber, aMul: isNumber, aQuo: isNumber, aRem: isInt, aAnd: isInt, aOr: isInt, aXor: isInt, aAndNot: isInt, aLand: isBoolean, aLor: isBoolean, } // binaryExpr type checks a binary expression. func (check typecheck) binaryExpr(n *node) error { c0, c1 := n.child[0], n.child[1] if isBlank(c0) || isBlank(c1) { return n.cfgErrorf("cannot use _ as value") } a := n.action if isAssignAction(a) { a-- } if isShiftAction(a) { return check.shift(n) } switch n.action { case aAdd: if n.typ == nil { break } // Catch mixing string and number for "+" operator use. k, k0, k1 := isNumber(n.typ.TypeOf()), isNumber(c0.typ.TypeOf()), isNumber(c1.typ.TypeOf()) if k != k0 || k != k1 { return n.cfgErrorf("cannot use type %s as type %s in assignment", c0.typ.id(), n.typ.id()) } case aRem: if zeroConst(c1) { return n.cfgErrorf("invalid operation: division by zero") } case aQuo: if zeroConst(c1) { return n.cfgErrorf("invalid operation: division by zero") } if c0.rval.IsValid() && c1.rval.IsValid() { // Avoid constant conversions below to ensure correct constant integer quotient. return nil } } _ = check.convertUntyped(c0, c1.typ) _ = check.convertUntyped(c1, c0.typ) if isComparisonAction(a) { return check.comparison(n) } if !c0.typ.equals(c1.typ) { return n.cfgErrorf("invalid operation: mismatched types %s and %s", c0.typ.id(), c1.typ.id()) } t0 := c0.typ.TypeOf() return check.op(binaryOpPredicates, a, n, c0, t0) } func zeroConst(n *node) bool { return n.typ.untyped && constant.Sign(n.rval.Interface().(constant.Value)) == 0 } func (check typecheck) index(n *node, max int) error { if err := check.convertUntyped(n, check.scope.getType("int")); err != nil { return err } if !isInt(n.typ.TypeOf()) { return n.cfgErrorf("index %s must be integer", n.typ.id()) } if !n.rval.IsValid() || max < 1 { return nil } if int(vInt(n.rval)) >= max { return n.cfgErrorf("index %s is out of bounds", n.typ.id()) } return nil } // arrayLitExpr type checks an array composite literal expression. func (check typecheck) arrayLitExpr(child []*node, typ *itype) error { cat := typ.cat length := typ.length typ = typ.val visited := make(map[int]bool, len(child)) index := 0 for _, c := range child { n := c switch { case c.kind == keyValueExpr: if err := check.index(c.child[0], length); err != nil { return c.cfgErrorf("index %s must be integer constant", c.child[0].typ.id()) } n = c.child[1] index = int(vInt(c.child[0].rval)) case cat == arrayT && index >= length: return c.cfgErrorf("index %d is out of bounds (>= %d)", index, length) } if visited[index] { return n.cfgErrorf("duplicate index %d in array or slice literal", index) } visited[index] = true index++ if err := check.assignment(n, typ, "array or slice literal"); err != nil { return err } } return nil } // mapLitExpr type checks an map composite literal expression. func (check typecheck) mapLitExpr(child []*node, ktyp, vtyp *itype) error { visited := make(map[interface{}]bool, len(child)) for _, c := range child { if c.kind != keyValueExpr { return c.cfgErrorf("missing key in map literal") } key, val := c.child[0], c.child[1] if err := check.assignment(key, ktyp, "map literal"); err != nil { return err } if key.rval.IsValid() { kval := key.rval.Interface() if visited[kval] { return c.cfgErrorf("duplicate key %s in map literal", kval) } visited[kval] = true } if err := check.assignment(val, vtyp, "map literal"); err != nil { return err } } return nil } // structLitExpr type checks a struct composite literal expression. func (check typecheck) structLitExpr(child []*node, typ *itype) error { if len(child) == 0 { return nil } if child[0].kind == keyValueExpr { // All children must be keyValueExpr visited := make([]bool, len(typ.field)) for _, c := range child { if c.kind != keyValueExpr { return c.cfgErrorf("mixture of field:value and value elements in struct literal") } key, val := c.child[0], c.child[1] name := key.ident if name == "" { return c.cfgErrorf("invalid field name %s in struct literal", key.typ.id()) } i := typ.fieldIndex(name) if i < 0 { return c.cfgErrorf("unknown field %s in struct literal", name) } field := typ.field[i] if err := check.assignment(val, field.typ, "struct literal"); err != nil { return err } if visited[i] { return c.cfgErrorf("duplicate field name %s in struct literal", name) } visited[i] = true } return nil } // No children can be keyValueExpr for i, c := range child { if c.kind == keyValueExpr { return c.cfgErrorf("mixture of field:value and value elements in struct literal") } if i >= len(typ.field) { return c.cfgErrorf("too many values in struct literal") } field := typ.field[i] // TODO(nick): check if this field is not exported and in a different package. if err := check.assignment(c, field.typ, "struct literal"); err != nil { return err } } if len(child) < len(typ.field) { return child[len(child)-1].cfgErrorf("too few values in struct literal") } return nil } // structBinLitExpr type checks a struct composite literal expression on a binary type. func (check typecheck) structBinLitExpr(child []*node, typ reflect.Type) error { if len(child) == 0 { return nil } if child[0].kind == keyValueExpr { // All children must be keyValueExpr visited := make(map[string]bool, typ.NumField()) for _, c := range child { if c.kind != keyValueExpr { return c.cfgErrorf("mixture of field:value and value elements in struct literal") } key, val := c.child[0], c.child[1] name := key.ident if name == "" { return c.cfgErrorf("invalid field name %s in struct literal", key.typ.id()) } field, ok := typ.FieldByName(name) if !ok { return c.cfgErrorf("unknown field %s in struct literal", name) } if err := check.assignment(val, valueTOf(field.Type), "struct literal"); err != nil { return err } if visited[field.Name] { return c.cfgErrorf("duplicate field name %s in struct literal", name) } visited[field.Name] = true } return nil } // No children can be keyValueExpr for i, c := range child { if c.kind == keyValueExpr { return c.cfgErrorf("mixture of field:value and value elements in struct literal") } if i >= typ.NumField() { return c.cfgErrorf("too many values in struct literal") } field := typ.Field(i) if !canExport(field.Name) { return c.cfgErrorf("implicit assignment to unexported field %s in %s literal", field.Name, typ) } if err := check.assignment(c, valueTOf(field.Type), "struct literal"); err != nil { return err } } if len(child) < typ.NumField() { return child[len(child)-1].cfgErrorf("too few values in struct literal") } return nil } // sliceExpr type checks a slice expression. func (check typecheck) sliceExpr(n *node) error { for _, c := range n.child { if isBlank(c) { return n.cfgErrorf("cannot use _ as value") } } c, child := n.child[0], n.child[1:] t := c.typ.TypeOf() var low, high, max *node if len(child) >= 1 { if n.action == aSlice { low = child[0] } else { high = child[0] } } if len(child) >= 2 { if n.action == aSlice { high = child[1] } else { max = child[1] } } if len(child) == 3 && n.action == aSlice { max = child[2] } l := -1 valid := false switch t.Kind() { case reflect.String: valid = true if c.rval.IsValid() { l = len(vString(c.rval)) } if max != nil { return max.cfgErrorf("invalid operation: 3-index slice of string") } case reflect.Array: valid = true l = t.Len() // TODO(marc): check addressable status of array object (i.e. composite arrays are not). case reflect.Slice: valid = true case reflect.Ptr: if t.Elem().Kind() == reflect.Array { valid = true l = t.Elem().Len() } } if !valid { return c.cfgErrorf("cannot slice type %s", c.typ.id()) } var ind [3]int64 for i, nod := range []*node{low, high, max} { x := int64(-1) switch { case nod != nil: max := -1 if l >= 0 { max = l + 1 } if err := check.index(nod, max); err != nil { return err } if nod.rval.IsValid() { x = vInt(nod.rval) } case i == 0: x = 0 case l >= 0: x = int64(l) } ind[i] = x } for i, x := range ind[:len(ind)-1] { if x <= 0 { continue } for _, y := range ind[i+1:] { if y < 0 || x <= y { continue } return n.cfgErrorf("invalid index values, must be low <= high <= max") } } return nil } // typeAssertionExpr type checks a type assert expression. func (check typecheck) typeAssertionExpr(n *node, typ *itype) error { // TODO(nick): This type check is not complete and should be revisited once // https://github.com/golang/go/issues/39717 lands. It is currently impractical to // type check Named types as they cannot be asserted. if rt := n.typ.TypeOf(); rt.Kind() != reflect.Interface && rt != valueInterfaceType { return n.cfgErrorf("invalid type assertion: non-interface type %s on left", n.typ.id()) } ims := n.typ.methods() if len(ims) == 0 { // Empty interface must be a dynamic check. return nil } if isInterface(typ) { // Asserting to an interface is a dynamic check as we must look to the // underlying struct. return nil } for name := range ims { im := lookupFieldOrMethod(n.typ, name) tm := lookupFieldOrMethod(typ, name) if im == nil { // This should not be possible. continue } if tm == nil { // Lookup for non-exported methods is impossible // for bin types, ignore them as they can't be used // directly by the interpreted programs. if !token.IsExported(name) && isBin(typ) { continue } return n.cfgErrorf("impossible type assertion: %s does not implement %s (missing %v method)", typ.id(), n.typ.id(), name) } if tm.recv != nil && tm.recv.TypeOf().Kind() == reflect.Ptr && typ.TypeOf().Kind() != reflect.Ptr { return n.cfgErrorf("impossible type assertion: %s does not implement %s as %q method has a pointer receiver", typ.id(), n.typ.id(), name) } if im.cat != funcT || tm.cat != funcT { // It only makes sense to compare in/out parameter types if both types are functions. continue } err := n.cfgErrorf("impossible type assertion: %s does not implement %s", typ.id(), n.typ.id()) if im.numIn() != tm.numIn() || im.numOut() != tm.numOut() { return err } for i := 0; i < im.numIn(); i++ { if !im.in(i).equals(tm.in(i)) { return err } } for i := 0; i < im.numOut(); i++ { if !im.out(i).equals(tm.out(i)) { return err } } } return nil } // conversion type checks the conversion of n to typ. func (check typecheck) conversion(n *node, typ *itype) error { var c constant.Value if n.rval.IsValid() { if con, ok := n.rval.Interface().(constant.Value); ok { c = con } } var ok bool switch { case c != nil && isConstType(typ): switch t := typ.TypeOf(); { case representableConst(c, t): ok = true case isInt(n.typ.TypeOf()) && isString(t): codepoint := int64(-1) if i, ok := constant.Int64Val(c); ok { codepoint = i } n.rval = reflect.ValueOf(constant.MakeString(string(rune(codepoint)))) ok = true } case n.typ.convertibleTo(typ): ok = true } if !ok { return n.cfgErrorf("cannot convert expression of type %s to type %s", n.typ.id(), typ.id()) } if !n.typ.untyped || c == nil { return nil } if isInterface(typ) || !isConstType(typ) { typ = n.typ.defaultType(n.rval, check.scope) } return check.convertUntyped(n, typ) } type param struct { nod *node typ *itype } func (p param) Type() *itype { if p.typ != nil { return p.typ } return p.nod.typ } // unpackParams unpacks child parameters into a slice of param. // If there is only 1 child and it is a callExpr with an n-value return, // the return types are returned, otherwise the original child nodes are // returned with nil typ. func (check typecheck) unpackParams(child []*node) (params []param) { if len(child) == 1 && isCall(child[0]) && child[0].child[0].typ.numOut() > 1 { c0 := child[0] ftyp := child[0].child[0].typ for i := 0; i < ftyp.numOut(); i++ { params = append(params, param{nod: c0, typ: ftyp.out(i)}) } return params } for _, c := range child { params = append(params, param{nod: c}) } return params } var builtinFuncs = map[string]struct { args int variadic bool }{ bltnAlignof: {args: 1, variadic: false}, bltnAppend: {args: 1, variadic: true}, bltnCap: {args: 1, variadic: false}, bltnClose: {args: 1, variadic: false}, bltnComplex: {args: 2, variadic: false}, bltnImag: {args: 1, variadic: false}, bltnCopy: {args: 2, variadic: false}, bltnDelete: {args: 2, variadic: false}, bltnLen: {args: 1, variadic: false}, bltnMake: {args: 1, variadic: true}, bltnNew: {args: 1, variadic: false}, bltnOffsetof: {args: 1, variadic: false}, bltnPanic: {args: 1, variadic: false}, bltnPrint: {args: 0, variadic: true}, bltnPrintln: {args: 0, variadic: true}, bltnReal: {args: 1, variadic: false}, bltnRecover: {args: 0, variadic: false}, bltnSizeof: {args: 1, variadic: false}, } func (check typecheck) builtin(name string, n *node, child []*node, ellipsis bool) error { fun := builtinFuncs[name] if ellipsis && name != bltnAppend { return n.cfgErrorf("invalid use of ... with builtin %s", name) } var params []param nparams := len(child) switch name { case bltnMake, bltnNew: // Special param handling default: params = check.unpackParams(child) nparams = len(params) } if nparams < fun.args { return n.cfgErrorf("not enough arguments in call to %s", name) } else if !fun.variadic && nparams > fun.args { return n.cfgErrorf("too many arguments for %s", name) } switch name { case bltnAppend: typ := params[0].Type() t := typ.TypeOf() if t == nil || t.Kind() != reflect.Slice { return params[0].nod.cfgErrorf("first argument to append must be slice; have %s", typ.id()) } if nparams == 1 { return nil } // Special case append([]byte, "test"...) is allowed. t1 := params[1].Type() if nparams == 2 && ellipsis && t.Elem().Kind() == reflect.Uint8 && t1.TypeOf().Kind() == reflect.String { if t1.untyped { return check.convertUntyped(params[1].nod, check.scope.getType("string")) } return nil } fun := &node{ typ: &itype{ cat: funcT, arg: []*itype{ typ, {cat: variadicT, val: valueTOf(t.Elem())}, }, ret: []*itype{typ}, }, ident: "append", } return check.arguments(n, child, fun, ellipsis) case bltnCap, bltnLen: typ := arrayDeref(params[0].Type()) ok := false switch typ.TypeOf().Kind() { case reflect.Array, reflect.Slice, reflect.Chan: ok = true case reflect.String, reflect.Map: ok = name == bltnLen } if !ok { return params[0].nod.cfgErrorf("invalid argument for %s", name) } case bltnClose: p := params[0] typ := p.Type() t := typ.TypeOf() if t.Kind() != reflect.Chan { return p.nod.cfgErrorf("invalid operation: non-chan type %s", p.nod.typ.id()) } if t.ChanDir() == reflect.RecvDir { return p.nod.cfgErrorf("invalid operation: cannot close receive-only channel") } case bltnComplex: var err error p0, p1 := params[0], params[1] typ0, typ1 := p0.Type(), p1.Type() switch { case typ0.untyped && !typ1.untyped: err = check.convertUntyped(p0.nod, typ1) case !typ0.untyped && typ1.untyped: err = check.convertUntyped(p1.nod, typ0) case typ0.untyped && typ1.untyped: fltType := untypedFloat(nil) err = check.convertUntyped(p0.nod, fltType) if err != nil { break } err = check.convertUntyped(p1.nod, fltType) } if err != nil { return err } // check we have the correct types after conversion. typ0, typ1 = p0.Type(), p1.Type() if !typ0.equals(typ1) { return n.cfgErrorf("invalid operation: mismatched types %s and %s", typ0.id(), typ1.id()) } if !isFloat(typ0.TypeOf()) { return n.cfgErrorf("invalid operation: arguments have type %s, expected floating-point", typ0.id()) } case bltnImag, bltnReal: p := params[0] typ := p.Type() if typ.untyped { if err := check.convertUntyped(p.nod, untypedComplex(nil)); err != nil { return err } } typ = p.Type() if !isComplex(typ.TypeOf()) { return p.nod.cfgErrorf("invalid argument type %s for %s", typ.id(), name) } case bltnCopy: typ0, typ1 := params[0].Type(), params[1].Type() var t0, t1 reflect.Type if t := typ0.TypeOf(); t.Kind() == reflect.Slice { t0 = t.Elem() } switch t := typ1.TypeOf(); t.Kind() { case reflect.String: t1 = reflect.TypeOf(byte(1)) case reflect.Slice: t1 = t.Elem() } if t0 == nil || t1 == nil { return n.cfgErrorf("copy expects slice arguments") } if !reflect.DeepEqual(t0, t1) { return n.cfgErrorf("arguments to copy have different element types %s and %s", typ0.id(), typ1.id()) } case bltnDelete: typ := params[0].Type() if typ.TypeOf().Kind() != reflect.Map { return params[0].nod.cfgErrorf("first argument to delete must be map; have %s", typ.id()) } ktyp := params[1].Type() if typ.key != nil && !ktyp.assignableTo(typ.key) { return params[1].nod.cfgErrorf("cannot use %s as type %s in delete", ktyp.id(), typ.key.id()) } case bltnMake: var min int switch child[0].typ.TypeOf().Kind() { case reflect.Slice: min = 2 case reflect.Map, reflect.Chan: min = 1 default: return child[0].cfgErrorf("cannot make %s; type must be slice, map, or channel", child[0].typ.id()) } if nparams < min { return n.cfgErrorf("not enough arguments in call to make") } else if nparams > min+1 { return n.cfgErrorf("too many arguments for make") } var sizes []int for _, c := range child[1:] { if err := check.index(c, -1); err != nil { return err } if c.rval.IsValid() { sizes = append(sizes, int(vInt(c.rval))) } } for len(sizes) == 2 && sizes[0] > sizes[1] { return n.cfgErrorf("len larger than cap in make") } case bltnPanic: return check.assignment(params[0].nod, check.scope.getType("interface{}"), "argument to panic") case bltnPrint, bltnPrintln: for _, param := range params { if param.typ != nil { continue } if err := check.assignment(param.nod, nil, "argument to "+name); err != nil { return err } } case bltnRecover, bltnNew, bltnAlignof, bltnOffsetof, bltnSizeof: // Nothing to do. default: return n.cfgErrorf("unsupported builtin %s", name) } return nil } // arrayDeref returns A if typ is *A, otherwise typ. func arrayDeref(typ *itype) *itype { if typ.cat == valueT && typ.TypeOf().Kind() == reflect.Ptr { t := typ.TypeOf() if t.Elem().Kind() == reflect.Array { return valueTOf(t.Elem()) } return typ } if typ.cat == ptrT && typ.val.cat == arrayT { return typ.val } return typ } // arguments type checks the call expression arguments. func (check typecheck) arguments(n *node, child []*node, fun *node, ellipsis bool) error { params := check.unpackParams(child) l := len(child) if ellipsis { if !fun.typ.isVariadic() { return n.cfgErrorf("invalid use of ..., corresponding parameter is non-variadic") } if len(params) > l { return child[0].cfgErrorf("cannot use ... with %d-valued %s", child[0].child[0].typ.numOut(), child[0].child[0].typ.id()) } } var cnt int for i, param := range params { ellip := i == l-1 && ellipsis if err := check.argument(param, fun.typ, cnt, l, ellip); err != nil { return err } cnt++ } if fun.typ.isVariadic() { cnt++ } if cnt < fun.typ.numIn() { return n.cfgErrorf("not enough arguments in call to %s", fun.name()) } return nil } func (check typecheck) argument(p param, ftyp *itype, i, l int, ellipsis bool) error { atyp := getArg(ftyp, i) if atyp == nil { return p.nod.cfgErrorf("too many arguments") } if p.typ == nil && isCall(p.nod) && p.nod.child[0].typ.numOut() != 1 { if l == 1 { return p.nod.cfgErrorf("cannot use %s as type %s", p.nod.child[0].typ.id(), getArgsID(ftyp)) } return p.nod.cfgErrorf("cannot use %s as type %s", p.nod.child[0].typ.id(), atyp.id()) } if ellipsis { if i != ftyp.numIn()-1 { return p.nod.cfgErrorf("can only use ... with matching parameter") } t := p.Type().TypeOf() if t.Kind() != reflect.Slice || !(valueTOf(t.Elem())).assignableTo(atyp) { return p.nod.cfgErrorf("cannot use %s as type %s", p.nod.typ.id(), (sliceOf(atyp)).id()) } return nil } if p.typ != nil { if !p.typ.assignableTo(atyp) { return p.nod.cfgErrorf("cannot use %s as type %s", p.nod.child[0].typ.id(), getArgsID(ftyp)) } return nil } return check.assignment(p.nod, atyp, "") } func getArg(ftyp *itype, i int) *itype { l := ftyp.numIn() switch { case ftyp.isVariadic() && i >= l-1: arg := ftyp.in(l - 1).val return arg case i < l: return ftyp.in(i) case ftyp.cat == valueT && i < ftyp.rtype.NumIn(): return valueTOf(ftyp.rtype.In(i)) default: return nil } } func getArgsID(ftyp *itype) string { res := "(" for i, arg := range ftyp.arg { if i > 0 { res += "," } res += arg.id() } res += ")" return res } var errCantConvert = errors.New("cannot convert") func (check typecheck) convertUntyped(n *node, typ *itype) error { if n.typ == nil || !n.typ.untyped || typ == nil { return nil } convErr := n.cfgErrorf("cannot convert %s to %s", n.typ.id(), typ.id()) ntyp, ttyp := n.typ.TypeOf(), typ.TypeOf() if typ.untyped { // Both n and target are untyped. nkind, tkind := ntyp.Kind(), ttyp.Kind() if isNumber(ntyp) && isNumber(ttyp) { if nkind < tkind { n.typ = typ } } else if nkind != tkind { return convErr } return nil } var ( ityp *itype rtyp reflect.Type err error ) switch { case typ.isNil() && n.typ.isNil(): n.typ = typ return nil case isNumber(ttyp) || isString(ttyp) || isBoolean(ttyp): ityp = typ rtyp = ttyp case isInterface(typ): if n.typ.isNil() { return nil } if len(n.typ.methods()) > 0 { // untyped cannot be set to iface return convErr } ityp = n.typ.defaultType(n.rval, check.scope) rtyp = ntyp case isArray(typ) || isMap(typ) || isChan(typ) || isFunc(typ) || isPtr(typ): // TODO(nick): above we are acting on itype, but really it is an rtype check. This is not clear which type // plain we are in. Fix this later. if !n.typ.isNil() { return convErr } return nil case n.typ.isNil() && typ.id() == "unsafe.Pointer": n.typ = typ return nil default: return convErr } if err := check.representable(n, rtyp); err != nil { return err } n.rval, err = check.convertConst(n.rval, rtyp) if err != nil { if errors.Is(err, errCantConvert) { return convErr } return n.cfgErrorf(err.Error()) } n.typ = ityp return nil } func (check typecheck) representable(n *node, t reflect.Type) error { if !n.rval.IsValid() { // TODO(nick): This should be an error as the const is in the frame which is undesirable. return nil } c, ok := n.rval.Interface().(constant.Value) if !ok { // TODO(nick): This should be an error as untyped strings and bools should be constant.Values. return nil } if !representableConst(c, t) { typ := n.typ.TypeOf() if isNumber(typ) && isNumber(t) { // numeric conversion : error msg // // integer -> integer : overflows // integer -> float : overflows (actually not possible) // float -> integer : truncated // float -> float : overflows // if !isInt(typ) && isInt(t) { return n.cfgErrorf("%s truncated to %s", c.ExactString(), t.Kind().String()) } return n.cfgErrorf("%s overflows %s", c.ExactString(), t.Kind().String()) } return n.cfgErrorf("cannot convert %s to %s", c.ExactString(), t.Kind().String()) } return nil } func (check typecheck) convertConst(v reflect.Value, t reflect.Type) (reflect.Value, error) { if !v.IsValid() { // TODO(nick): This should be an error as the const is in the frame which is undesirable. return v, nil } c, ok := v.Interface().(constant.Value) if !ok { // TODO(nick): This should be an error as untyped strings and bools should be constant.Values. return v, nil } kind := t.Kind() switch kind { case reflect.Bool: v = reflect.ValueOf(constant.BoolVal(c)) case reflect.String: v = reflect.ValueOf(constant.StringVal(c)) case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: i, _ := constant.Int64Val(constant.ToInt(c)) v = reflect.ValueOf(i).Convert(t) case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: i, _ := constant.Uint64Val(constant.ToInt(c)) v = reflect.ValueOf(i).Convert(t) case reflect.Float32: f, _ := constant.Float32Val(constant.ToFloat(c)) v = reflect.ValueOf(f) case reflect.Float64: f, _ := constant.Float64Val(constant.ToFloat(c)) v = reflect.ValueOf(f) case reflect.Complex64: r, _ := constant.Float32Val(constant.Real(c)) i, _ := constant.Float32Val(constant.Imag(c)) v = reflect.ValueOf(complex(r, i)).Convert(t) case reflect.Complex128: r, _ := constant.Float64Val(constant.Real(c)) i, _ := constant.Float64Val(constant.Imag(c)) v = reflect.ValueOf(complex(r, i)).Convert(t) default: return v, errCantConvert } return v, nil } var bitlen = [...]int{ reflect.Int: 64, reflect.Int8: 8, reflect.Int16: 16, reflect.Int32: 32, reflect.Int64: 64, reflect.Uint: 64, reflect.Uint8: 8, reflect.Uint16: 16, reflect.Uint32: 32, reflect.Uint64: 64, reflect.Uintptr: 64, } func representableConst(c constant.Value, t reflect.Type) bool { switch { case isInt(t): x := constant.ToInt(c) if x.Kind() != constant.Int { return false } switch t.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: if _, ok := constant.Int64Val(x); !ok { return false } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: if _, ok := constant.Uint64Val(x); !ok { return false } default: return false } return constant.BitLen(x) <= bitlen[t.Kind()] case isFloat(t): x := constant.ToFloat(c) if x.Kind() != constant.Float { return false } switch t.Kind() { case reflect.Float32: f, _ := constant.Float32Val(x) return !math.IsInf(float64(f), 0) case reflect.Float64: f, _ := constant.Float64Val(x) return !math.IsInf(f, 0) default: return false } case isComplex(t): x := constant.ToComplex(c) if x.Kind() != constant.Complex { return false } switch t.Kind() { case reflect.Complex64: r, _ := constant.Float32Val(constant.Real(x)) i, _ := constant.Float32Val(constant.Imag(x)) return !math.IsInf(float64(r), 0) && !math.IsInf(float64(i), 0) case reflect.Complex128: r, _ := constant.Float64Val(constant.Real(x)) i, _ := constant.Float64Val(constant.Imag(x)) return !math.IsInf(r, 0) && !math.IsInf(i, 0) default: return false } case isString(t): return c.Kind() == constant.String case isBoolean(t): return c.Kind() == constant.Bool default: return false } } func isShiftAction(a action) bool { switch a { case aShl, aShr, aShlAssign, aShrAssign: return true } return false } func isComparisonAction(a action) bool { switch a { case aEqual, aNotEqual, aGreater, aGreaterEqual, aLower, aLowerEqual: return true } return false } yaegi-0.16.1/interp/typestring.go000066400000000000000000000016221460330105400167320ustar00rootroot00000000000000package interp import "strings" func paramsTypeString(params []*itype) string { strs := make([]string, 0, len(params)) for _, param := range params { strs = append(strs, param.str) } return strings.Join(strs, ",") } func methodsTypeString(fields []structField) string { strs := make([]string, 0, len(fields)) for _, field := range fields { if field.embed { str := methodsTypeString(field.typ.field) if str != "" { strs = append(strs, str) } continue } strs = append(strs, field.name+field.typ.str[4:]) } return strings.Join(strs, "; ") } func fieldsTypeString(fields []structField) string { strs := make([]string, 0, len(fields)) for _, field := range fields { var repr strings.Builder if !field.embed { repr.WriteString(field.name) repr.WriteByte(' ') } repr.WriteString(field.typ.str) strs = append(strs, repr.String()) } return strings.Join(strs, "; ") } yaegi-0.16.1/interp/use.go000066400000000000000000000203561460330105400153230ustar00rootroot00000000000000package interp import ( "flag" "fmt" "go/constant" "log" "math/bits" "os" "path" "reflect" gen "github.com/traefik/yaegi/stdlib/generic" ) // Symbols returns a map of interpreter exported symbol values for the given // import path. If the argument is the empty string, all known symbols are // returned. func (interp *Interpreter) Symbols(importPath string) Exports { m := map[string]map[string]reflect.Value{} interp.mutex.RLock() defer interp.mutex.RUnlock() for k, v := range interp.srcPkg { if importPath != "" && k != importPath { continue } syms := map[string]reflect.Value{} for n, s := range v { if !canExport(n) { // Skip private non-exported symbols. continue } switch s.kind { case constSym: syms[n] = s.rval case funcSym: syms[n] = genFunctionWrapper(s.node)(interp.frame) case varSym: syms[n] = interp.frame.data[s.index] case typeSym: syms[n] = reflect.New(s.typ.TypeOf()) } } if len(syms) > 0 { m[k] = syms } if importPath != "" { return m } } if importPath != "" && len(m) > 0 { return m } for k, v := range interp.binPkg { if importPath != "" && k != importPath { continue } m[k] = v if importPath != "" { return m } } return m } // getWrapper returns the wrapper type of the corresponding interface, trying // first the composed ones, or nil if not found. func getWrapper(n *node, t reflect.Type) reflect.Type { p, ok := n.interp.binPkg[t.PkgPath()] if !ok { return nil } w := p["_"+t.Name()] lm := n.typ.methods() // mapTypes may contain composed interfaces wrappers to test against, from // most complex to simplest (guaranteed by construction of mapTypes). Find the // first for which the interpreter type has all the methods. for _, rt := range n.interp.mapTypes[w] { match := true for i := 1; i < rt.NumField(); i++ { // The interpreter type must have all required wrapper methods. if _, ok := lm[rt.Field(i).Name[1:]]; !ok { match = false break } } if match { return rt } } // Otherwise return the direct "non-composed" interface. return w.Type().Elem() } // Use loads binary runtime symbols in the interpreter context so // they can be used in interpreted code. func (interp *Interpreter) Use(values Exports) error { for k, v := range values { importPath := path.Dir(k) packageName := path.Base(k) if k == "." && v["MapTypes"].IsValid() { // Use mapping for special interface wrappers. for kk, vv := range v["MapTypes"].Interface().(map[reflect.Value][]reflect.Type) { interp.mapTypes[kk] = vv } continue } if importPath == "." { return fmt.Errorf("export path %[1]q is missing a package name; did you mean '%[1]s/%[1]s'?", k) } if importPath == selfPrefix { interp.hooks.Parse(v) continue } if interp.binPkg[importPath] == nil { interp.binPkg[importPath] = make(map[string]reflect.Value) interp.pkgNames[importPath] = packageName } for s, sym := range v { interp.binPkg[importPath][s] = sym } if k == selfPath { interp.binPkg[importPath]["Self"] = reflect.ValueOf(interp) } } // Checks if input values correspond to stdlib packages by looking for one // well known stdlib package path. if _, ok := values["fmt/fmt"]; ok { fixStdlib(interp) // Load stdlib generic source. for _, s := range gen.Sources { if _, err := interp.Compile(s); err != nil { return err } } } return nil } // fixStdlib redefines interpreter stdlib symbols to use the standard input, // output and errror assigned to the interpreter. The changes are limited to // the interpreter only. // Note that it is possible to escape the virtualized stdio by // read/write directly to file descriptors 0, 1, 2. func fixStdlib(interp *Interpreter) { p := interp.binPkg["fmt"] if p == nil { return } stdin, stdout, stderr := interp.stdin, interp.stdout, interp.stderr p["Print"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fprint(stdout, a...) }) p["Printf"] = reflect.ValueOf(func(f string, a ...interface{}) (n int, err error) { return fmt.Fprintf(stdout, f, a...) }) p["Println"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fprintln(stdout, a...) }) p["Scan"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fscan(stdin, a...) }) p["Scanf"] = reflect.ValueOf(func(f string, a ...interface{}) (n int, err error) { return fmt.Fscanf(stdin, f, a...) }) p["Scanln"] = reflect.ValueOf(func(a ...interface{}) (n int, err error) { return fmt.Fscanln(stdin, a...) }) // Update mapTypes to virtualized symbols as well. interp.mapTypes[p["Print"]] = interp.mapTypes[reflect.ValueOf(fmt.Print)] interp.mapTypes[p["Printf"]] = interp.mapTypes[reflect.ValueOf(fmt.Printf)] interp.mapTypes[p["Println"]] = interp.mapTypes[reflect.ValueOf(fmt.Println)] interp.mapTypes[p["Scan"]] = interp.mapTypes[reflect.ValueOf(fmt.Scan)] interp.mapTypes[p["Scanf"]] = interp.mapTypes[reflect.ValueOf(fmt.Scanf)] interp.mapTypes[p["Scanln"]] = interp.mapTypes[reflect.ValueOf(fmt.Scanln)] if p = interp.binPkg["flag"]; p != nil { c := flag.NewFlagSet(os.Args[0], flag.PanicOnError) c.SetOutput(stderr) p["CommandLine"] = reflect.ValueOf(&c).Elem() } if p = interp.binPkg["log"]; p != nil { l := log.New(stderr, "", log.LstdFlags) // Restrict Fatal symbols to panic instead of exit. p["Fatal"] = reflect.ValueOf(l.Panic) p["Fatalf"] = reflect.ValueOf(l.Panicf) p["Fatalln"] = reflect.ValueOf(l.Panicln) p["Flags"] = reflect.ValueOf(l.Flags) p["Output"] = reflect.ValueOf(l.Output) p["Panic"] = reflect.ValueOf(l.Panic) p["Panicf"] = reflect.ValueOf(l.Panicf) p["Panicln"] = reflect.ValueOf(l.Panicln) p["Prefix"] = reflect.ValueOf(l.Prefix) p["Print"] = reflect.ValueOf(l.Print) p["Printf"] = reflect.ValueOf(l.Printf) p["Println"] = reflect.ValueOf(l.Println) p["SetFlags"] = reflect.ValueOf(l.SetFlags) p["SetOutput"] = reflect.ValueOf(l.SetOutput) p["SetPrefix"] = reflect.ValueOf(l.SetPrefix) p["Writer"] = reflect.ValueOf(l.Writer) // Update mapTypes to virtualized symbols as well. interp.mapTypes[p["Print"]] = interp.mapTypes[reflect.ValueOf(log.Print)] interp.mapTypes[p["Printf"]] = interp.mapTypes[reflect.ValueOf(log.Printf)] interp.mapTypes[p["Println"]] = interp.mapTypes[reflect.ValueOf(log.Println)] interp.mapTypes[p["Panic"]] = interp.mapTypes[reflect.ValueOf(log.Panic)] interp.mapTypes[p["Panicf"]] = interp.mapTypes[reflect.ValueOf(log.Panicf)] interp.mapTypes[p["Panicln"]] = interp.mapTypes[reflect.ValueOf(log.Panicln)] } if p = interp.binPkg["os"]; p != nil { p["Args"] = reflect.ValueOf(&interp.args).Elem() if interp.specialStdio { // Inherit streams from interpreter even if they do not have a file descriptor. p["Stdin"] = reflect.ValueOf(&stdin).Elem() p["Stdout"] = reflect.ValueOf(&stdout).Elem() p["Stderr"] = reflect.ValueOf(&stderr).Elem() } else { // Inherits streams from interpreter only if they have a file descriptor and preserve original type. if s, ok := stdin.(*os.File); ok { p["Stdin"] = reflect.ValueOf(&s).Elem() } if s, ok := stdout.(*os.File); ok { p["Stdout"] = reflect.ValueOf(&s).Elem() } if s, ok := stderr.(*os.File); ok { p["Stderr"] = reflect.ValueOf(&s).Elem() } } if !interp.unrestricted { // In restricted mode, scripts can only access to a passed virtualized env, and can not write the real one. getenv := func(key string) string { return interp.env[key] } p["Clearenv"] = reflect.ValueOf(func() { interp.env = map[string]string{} }) p["ExpandEnv"] = reflect.ValueOf(func(s string) string { return os.Expand(s, getenv) }) p["Getenv"] = reflect.ValueOf(getenv) p["LookupEnv"] = reflect.ValueOf(func(key string) (s string, ok bool) { s, ok = interp.env[key]; return }) p["Setenv"] = reflect.ValueOf(func(key, value string) error { interp.env[key] = value; return nil }) p["Unsetenv"] = reflect.ValueOf(func(key string) error { delete(interp.env, key); return nil }) p["Environ"] = reflect.ValueOf(func() (a []string) { for k, v := range interp.env { a = append(a, k+"="+v) } return }) } } if p = interp.binPkg["math/bits"]; p != nil { // Do not trust extracted value maybe from another arch. p["UintSize"] = reflect.ValueOf(constant.MakeInt64(bits.UintSize)) } } yaegi-0.16.1/interp/value.go000066400000000000000000000355361460330105400156510ustar00rootroot00000000000000package interp import ( "go/constant" "reflect" ) const ( notInFrame = -1 // value of node.findex for literal values (not in frame) globalFrame = -1 // value of node.level for global symbols ) func valueGenerator(n *node, i int) func(*frame) reflect.Value { switch n.level { case globalFrame: return func(f *frame) reflect.Value { return valueOf(f.root.data, i) } case 0: return func(f *frame) reflect.Value { return valueOf(f.data, i) } case 1: return func(f *frame) reflect.Value { return valueOf(f.anc.data, i) } case 2: return func(f *frame) reflect.Value { return valueOf(f.anc.anc.data, i) } default: return func(f *frame) reflect.Value { for level := n.level; level > 0; level-- { f = f.anc } return valueOf(f.data, i) } } } // valueOf safely recovers the ith element of data. This is necessary // because a cancellation prior to any evaluation result may leave // the frame's data empty. func valueOf(data []reflect.Value, i int) reflect.Value { if i < 0 || i >= len(data) { return reflect.Value{} } return data[i] } func genValueRecv(n *node) func(*frame) reflect.Value { var v func(*frame) reflect.Value if n.recv.node == nil { v = func(*frame) reflect.Value { return n.recv.val } } else { v = genValue(n.recv.node) } fi := n.recv.index if len(fi) == 0 { return v } return func(f *frame) reflect.Value { r := v(f) for _, i := range fi { if r.Kind() == reflect.Ptr { r = r.Elem() } // Note that we can't use reflect FieldByIndex method, as we may // traverse valueInterface wrappers to access the embedded receiver. r = r.Field(i) vi, ok := r.Interface().(valueInterface) if ok { r = vi.value } } return r } } func genValueAsFunctionWrapper(n *node) func(*frame) reflect.Value { value := genValue(n) typ := n.typ.TypeOf() return func(f *frame) reflect.Value { v := value(f) if v.IsNil() { return reflect.New(typ).Elem() } if v.Kind() == reflect.Func { return v } vn, ok := v.Interface().(*node) if ok && vn.rval.Kind() == reflect.Func { // The node value is already a callable func, no need to wrap it. return vn.rval } return genFunctionWrapper(vn)(f) } } func genValueAs(n *node, t reflect.Type) func(*frame) reflect.Value { value := genValue(n) return func(f *frame) reflect.Value { v := value(f) switch v.Kind() { case reflect.Chan, reflect.Func, reflect.Interface, reflect.Ptr, reflect.Map, reflect.Slice, reflect.UnsafePointer: if v.IsNil() { return reflect.New(t).Elem() } } return v.Convert(t) } } func genValue(n *node) func(*frame) reflect.Value { switch n.kind { case basicLit: convertConstantValue(n) v := n.rval if !v.IsValid() { v = reflect.New(emptyInterfaceType).Elem() } return func(f *frame) reflect.Value { return v } case funcDecl: var v reflect.Value if w, ok := n.val.(reflect.Value); ok { v = w } else { v = reflect.ValueOf(n.val) } return func(f *frame) reflect.Value { return v } default: if n.rval.IsValid() { convertConstantValue(n) v := n.rval return func(f *frame) reflect.Value { return v } } if n.sym != nil { i := n.sym.index if i < 0 && n != n.sym.node { return genValue(n.sym.node) } if n.sym.global { return func(f *frame) reflect.Value { return f.root.data[i] } } return valueGenerator(n, i) } if n.findex == notInFrame { var v reflect.Value if w, ok := n.val.(reflect.Value); ok { v = w } else { v = reflect.ValueOf(n.val) } return func(f *frame) reflect.Value { return v } } return valueGenerator(n, n.findex) } } func genDestValue(typ *itype, n *node) func(*frame) reflect.Value { convertLiteralValue(n, typ.TypeOf()) switch { case isInterfaceSrc(typ) && (!isEmptyInterface(typ) || len(n.typ.method) > 0): return genValueInterface(n) case isNamedFuncSrc(n.typ): return genFunctionWrapper(n) case isInterfaceBin(typ): return genInterfaceWrapper(n, typ.rtype) case n.kind == basicLit && n.val == nil: return func(*frame) reflect.Value { return reflect.New(typ.rtype).Elem() } case n.typ.untyped && isComplex(typ.TypeOf()): return genValueComplex(n) case n.typ.untyped && !typ.untyped: return genValueAs(n, typ.TypeOf()) } return genValue(n) } func genFuncValue(n *node) func(*frame) reflect.Value { value := genValue(n) return func(f *frame) reflect.Value { v := value(f) if nod, ok := v.Interface().(*node); ok { return genFunctionWrapper(nod)(f) } return v } } func genValueArray(n *node) func(*frame) reflect.Value { value := genValue(n) // dereference array pointer, to support array operations on array pointer if n.typ.TypeOf().Kind() == reflect.Ptr { return func(f *frame) reflect.Value { return value(f).Elem() } } return value } func genValueRangeArray(n *node) func(*frame) reflect.Value { value := genValue(n) switch { case n.typ.TypeOf().Kind() == reflect.Ptr: // dereference array pointer, to support array operations on array pointer return func(f *frame) reflect.Value { return value(f).Elem() } case n.typ.val != nil && n.typ.val.cat == interfaceT: if len(n.typ.val.field) > 0 { return func(f *frame) reflect.Value { val := value(f) v := []valueInterface{} for i := 0; i < val.Len(); i++ { switch av := val.Index(i).Interface().(type) { case []valueInterface: v = append(v, av...) case valueInterface: v = append(v, av) default: panic(n.cfgErrorf("invalid type %v", val.Index(i).Type())) } } return reflect.ValueOf(v) } } // empty interface, do not wrap. fallthrough default: return func(f *frame) reflect.Value { // This is necessary to prevent changes in the returned // reflect.Value being reflected back to the value used // for the range expression. return reflect.ValueOf(value(f).Interface()) } } } func genValueInterface(n *node) func(*frame) reflect.Value { value := genValue(n) return func(f *frame) reflect.Value { v := value(f) nod := n for v.IsValid() { // traverse interface indirections to find out concrete type vi, ok := v.Interface().(valueInterface) if !ok { break } v = vi.value nod = vi.node } // empty interface, do not wrap. if nod != nil && isEmptyInterface(nod.typ) { return v } return reflect.ValueOf(valueInterface{nod, v}) } } func getConcreteValue(val reflect.Value) reflect.Value { v := val for { vi, ok := v.Interface().(valueInterface) if !ok { break } v = vi.value } if v.NumMethod() > 0 { return v } if v.Kind() != reflect.Struct { return v } // Search a concrete value in fields of an emulated interface. for i := v.NumField() - 1; i >= 0; i-- { vv := v.Field(i) if vv.Kind() == reflect.Interface { vv = vv.Elem() } if vv.IsValid() { return vv } } return v } func zeroInterfaceValue() reflect.Value { n := &node{kind: basicLit, typ: &itype{cat: nilT, untyped: true, str: "nil"}} v := reflect.New(emptyInterfaceType).Elem() return reflect.ValueOf(valueInterface{n, v}) } func wantEmptyInterface(n *node) bool { return isEmptyInterface(n.typ) || n.anc.action == aAssign && n.anc.typ.cat == interfaceT && len(n.anc.typ.field) == 0 || n.anc.kind == returnStmt && n.anc.val.(*node).typ.ret[0].cat == interfaceT && len(n.anc.val.(*node).typ.ret[0].field) == 0 } func genValueOutput(n *node, t reflect.Type) func(*frame) reflect.Value { value := genValue(n) switch { case n.anc.action == aAssign && n.anc.typ.cat == interfaceT: if len(n.anc.typ.field) == 0 { // empty interface, do not wrap return value } fallthrough case n.anc.kind == returnStmt && n.anc.val.(*node).typ.ret[0].cat == interfaceT: if nod, ok := n.anc.val.(*node); !ok || len(nod.typ.ret[0].field) == 0 { // empty interface, do not wrap return value } // The result of the builtin has to be returned as an interface type. // Wrap it in a valueInterface and return the dereferenced value. return func(f *frame) reflect.Value { d := value(f) v := reflect.New(t).Elem() d.Set(reflect.ValueOf(valueInterface{n, v})) return v } } return value } func getBinValue(getMapType func(*itype) reflect.Type, value func(*frame) reflect.Value, f *frame) reflect.Value { v := value(f) if getMapType == nil { return v } val, ok := v.Interface().(valueInterface) if !ok || val.node == nil { return v } if rt := getMapType(val.node.typ); rt != nil { return genInterfaceWrapper(val.node, rt)(f) } return v } func valueInterfaceValue(v reflect.Value) reflect.Value { for { vv, ok := v.Interface().(valueInterface) if !ok { break } v = vv.value } return v } func genValueInterfaceValue(n *node) func(*frame) reflect.Value { value := genValue(n) return func(f *frame) reflect.Value { v := value(f) if vi, ok := v.Interface().(valueInterface); ok && vi.node == nil { // Uninitialized interface value, set it to a correct zero value. v.Set(zeroInterfaceValue()) v = value(f) } return valueInterfaceValue(v) } } func vInt(v reflect.Value) (i int64) { if c := vConstantValue(v); c != nil { i, _ = constant.Int64Val(constant.ToInt(c)) return i } switch v.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: i = v.Int() case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: i = int64(v.Uint()) case reflect.Float32, reflect.Float64: i = int64(v.Float()) case reflect.Complex64, reflect.Complex128: i = int64(real(v.Complex())) } return } func vUint(v reflect.Value) (i uint64) { if c := vConstantValue(v); c != nil { i, _ = constant.Uint64Val(constant.ToInt(c)) return i } switch v.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: i = uint64(v.Int()) case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: i = v.Uint() case reflect.Float32, reflect.Float64: i = uint64(v.Float()) case reflect.Complex64, reflect.Complex128: i = uint64(real(v.Complex())) } return } func vComplex(v reflect.Value) (c complex128) { if c := vConstantValue(v); c != nil { c = constant.ToComplex(c) rel, _ := constant.Float64Val(constant.Real(c)) img, _ := constant.Float64Val(constant.Imag(c)) return complex(rel, img) } switch v.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: c = complex(float64(v.Int()), 0) case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: c = complex(float64(v.Uint()), 0) case reflect.Float32, reflect.Float64: c = complex(v.Float(), 0) case reflect.Complex64, reflect.Complex128: c = v.Complex() } return } func vFloat(v reflect.Value) (i float64) { if c := vConstantValue(v); c != nil { i, _ = constant.Float64Val(constant.ToFloat(c)) return i } switch v.Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: i = float64(v.Int()) case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: i = float64(v.Uint()) case reflect.Float32, reflect.Float64: i = v.Float() case reflect.Complex64, reflect.Complex128: i = real(v.Complex()) } return } func vString(v reflect.Value) (s string) { if c := vConstantValue(v); c != nil { s = constant.StringVal(c) return s } return v.String() } func vConstantValue(v reflect.Value) (c constant.Value) { if v.Type().Implements(constVal) { c = v.Interface().(constant.Value) } return } func genValueInt(n *node) func(*frame) (reflect.Value, int64) { value := genValue(n) switch n.typ.TypeOf().Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: return func(f *frame) (reflect.Value, int64) { v := value(f); return v, v.Int() } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: return func(f *frame) (reflect.Value, int64) { v := value(f); return v, int64(v.Uint()) } case reflect.Float32, reflect.Float64: return func(f *frame) (reflect.Value, int64) { v := value(f); return v, int64(v.Float()) } case reflect.Complex64, reflect.Complex128: if n.typ.untyped && n.rval.IsValid() && imag(n.rval.Complex()) == 0 { return func(f *frame) (reflect.Value, int64) { v := value(f); return v, int64(real(v.Complex())) } } } return nil } func genValueUint(n *node) func(*frame) (reflect.Value, uint64) { value := genValue(n) switch n.typ.TypeOf().Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: return func(f *frame) (reflect.Value, uint64) { v := value(f); return v, uint64(v.Int()) } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: return func(f *frame) (reflect.Value, uint64) { v := value(f); return v, v.Uint() } case reflect.Float32, reflect.Float64: return func(f *frame) (reflect.Value, uint64) { v := value(f); return v, uint64(v.Float()) } case reflect.Complex64, reflect.Complex128: if n.typ.untyped && n.rval.IsValid() && imag(n.rval.Complex()) == 0 { return func(f *frame) (reflect.Value, uint64) { v := value(f); return v, uint64(real(v.Complex())) } } } return nil } func genValueFloat(n *node) func(*frame) (reflect.Value, float64) { value := genValue(n) switch n.typ.TypeOf().Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: return func(f *frame) (reflect.Value, float64) { v := value(f); return v, float64(v.Int()) } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: return func(f *frame) (reflect.Value, float64) { v := value(f); return v, float64(v.Uint()) } case reflect.Float32, reflect.Float64: return func(f *frame) (reflect.Value, float64) { v := value(f); return v, v.Float() } case reflect.Complex64, reflect.Complex128: if n.typ.untyped && n.rval.IsValid() && imag(n.rval.Complex()) == 0 { return func(f *frame) (reflect.Value, float64) { v := value(f); return v, real(v.Complex()) } } } return nil } func genValueComplex(n *node) func(*frame) reflect.Value { vc := genComplex(n) return func(f *frame) reflect.Value { return reflect.ValueOf(vc(f)) } } func genComplex(n *node) func(*frame) complex128 { value := genValue(n) switch n.typ.TypeOf().Kind() { case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: return func(f *frame) complex128 { return complex(float64(value(f).Int()), 0) } case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: return func(f *frame) complex128 { return complex(float64(value(f).Uint()), 0) } case reflect.Float32, reflect.Float64: return func(f *frame) complex128 { return complex(value(f).Float(), 0) } case reflect.Complex64, reflect.Complex128: return func(f *frame) complex128 { return value(f).Complex() } } return nil } func genValueString(n *node) func(*frame) (reflect.Value, string) { value := genValue(n) return func(f *frame) (reflect.Value, string) { v := value(f); return v, v.String() } } yaegi-0.16.1/stdlib/000077500000000000000000000000001460330105400141525ustar00rootroot00000000000000yaegi-0.16.1/stdlib/generic/000077500000000000000000000000001460330105400155665ustar00rootroot00000000000000yaegi-0.16.1/stdlib/generic/go1_21_cmp.go.txt000066400000000000000000000033431460330105400205650ustar00rootroot00000000000000// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package cmp provides types and functions related to comparing // ordered values. package cmp // Ordered is a constraint that permits any ordered type: any type // that supports the operators < <= >= >. // If future releases of Go add new ordered types, // this constraint will be modified to include them. // // Note that floating-point types may contain NaN ("not-a-number") values. // An operator such as == or < will always report false when // comparing a NaN value with any other value, NaN or not. // See the [Compare] function for a consistent way to compare NaN values. type Ordered interface { ~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | ~float32 | ~float64 | ~string } // Less reports whether x is less than y. // For floating-point types, a NaN is considered less than any non-NaN, // and -0.0 is not less than (is equal to) 0.0. func Less[T Ordered](x, y T) bool { return (isNaN(x) && !isNaN(y)) || x < y } // Compare returns // // -1 if x is less than y, // 0 if x equals y, // +1 if x is greater than y. // // For floating-point types, a NaN is considered less than any non-NaN, // a NaN is considered equal to a NaN, and -0.0 is equal to 0.0. func Compare[T Ordered](x, y T) int { xNaN := isNaN(x) yNaN := isNaN(y) if xNaN && yNaN { return 0 } if xNaN || x < y { return -1 } if yNaN || x > y { return +1 } return 0 } // isNaN reports whether x is a NaN without requiring the math package. // This will always return false if T is not floating-point. func isNaN[T Ordered](x T) bool { return x != x } yaegi-0.16.1/stdlib/generic/go1_21_generic.go000066400000000000000000000011141460330105400205760ustar00rootroot00000000000000//go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package generic import _ "embed" //go:embed go1_21_cmp.go.txt var cmpSource string //go:embed go1_21_maps.go.txt var mapsSource string //go:embed go1_21_slices.go.txt var slicesSource string /* //go:embed go1_21_sync.go.txt var syncSource string //go:embed go1_21_sync_atomic.go.txt var syncAtomicSource string */ // Sources contains the list of generic packages source strings. var Sources = [...]string{ cmpSource, mapsSource, slicesSource, // FIXME(marc): support the following. // syncAtomicSource, // syncSource, } yaegi-0.16.1/stdlib/generic/go1_21_maps.go.txt000066400000000000000000000034071460330105400207470ustar00rootroot00000000000000// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package maps defines various functions useful with maps of any type. package maps // Equal reports whether two maps contain the same key/value pairs. // Values are compared using ==. func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool { if len(m1) != len(m2) { return false } for k, v1 := range m1 { if v2, ok := m2[k]; !ok || v1 != v2 { return false } } return true } // EqualFunc is like Equal, but compares values using eq. // Keys are still compared with ==. func EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool { if len(m1) != len(m2) { return false } for k, v1 := range m1 { if v2, ok := m2[k]; !ok || !eq(v1, v2) { return false } } return true } // clone is implemented in the runtime package. func clone(m any) any { return m } // Clone returns a copy of m. This is a shallow clone: // the new keys and values are set using ordinary assignment. func Clone[M ~map[K]V, K comparable, V any](m M) M { // Preserve nil in case it matters. if m == nil { return nil } return clone(m).(M) } // Copy copies all key/value pairs in src adding them to dst. // When a key in src is already present in dst, // the value in dst will be overwritten by the value associated // with the key in src. func Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) { for k, v := range src { dst[k] = v } } // DeleteFunc deletes any key/value pairs from m for which del returns true. func DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) { for k, v := range m { if del(k, v) { delete(m, k) } } } yaegi-0.16.1/stdlib/generic/go1_21_slices.go.txt000066400000000000000000001303011460330105400212630ustar00rootroot00000000000000// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package slices defines various functions useful with slices of any type. package slices import ( "cmp" "math/bits" // "unsafe" // FIXME(marc): better handle special dependencies in generics. ) // Equal reports whether two slices are equal: the same length and all // elements equal. If the lengths are different, Equal returns false. // Otherwise, the elements are compared in increasing index order, and the // comparison stops at the first unequal pair. // Floating point NaNs are not considered equal. func Equal[S ~[]E, E comparable](s1, s2 S) bool { if len(s1) != len(s2) { return false } for i := range s1 { if s1[i] != s2[i] { return false } } return true } // EqualFunc reports whether two slices are equal using an equality // function on each pair of elements. If the lengths are different, // EqualFunc returns false. Otherwise, the elements are compared in // increasing index order, and the comparison stops at the first index // for which eq returns false. func EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool { if len(s1) != len(s2) { return false } for i, v1 := range s1 { v2 := s2[i] if !eq(v1, v2) { return false } } return true } // Compare compares the elements of s1 and s2, using [cmp.Compare] on each pair // of elements. The elements are compared sequentially, starting at index 0, // until one element is not equal to the other. // The result of comparing the first non-matching elements is returned. // If both slices are equal until one of them ends, the shorter slice is // considered less than the longer one. // The result is 0 if s1 == s2, -1 if s1 < s2, and +1 if s1 > s2. func Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int { for i, v1 := range s1 { if i >= len(s2) { return +1 } v2 := s2[i] if c := cmp.Compare(v1, v2); c != 0 { return c } } if len(s1) < len(s2) { return -1 } return 0 } // CompareFunc is like [Compare] but uses a custom comparison function on each // pair of elements. // The result is the first non-zero result of cmp; if cmp always // returns 0 the result is 0 if len(s1) == len(s2), -1 if len(s1) < len(s2), // and +1 if len(s1) > len(s2). func CompareFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, cmp func(E1, E2) int) int { for i, v1 := range s1 { if i >= len(s2) { return +1 } v2 := s2[i] if c := cmp(v1, v2); c != 0 { return c } } if len(s1) < len(s2) { return -1 } return 0 } // Index returns the index of the first occurrence of v in s, // or -1 if not present. func Index[S ~[]E, E comparable](s S, v E) int { for i := range s { if v == s[i] { return i } } return -1 } // IndexFunc returns the first index i satisfying f(s[i]), // or -1 if none do. func IndexFunc[S ~[]E, E any](s S, f func(E) bool) int { for i := range s { if f(s[i]) { return i } } return -1 } // Contains reports whether v is present in s. func Contains[S ~[]E, E comparable](s S, v E) bool { return Index(s, v) >= 0 } // ContainsFunc reports whether at least one // element e of s satisfies f(e). func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool { return IndexFunc(s, f) >= 0 } // Insert inserts the values v... into s at index i, // returning the modified slice. // The elements at s[i:] are shifted up to make room. // In the returned slice r, r[i] == v[0], // and r[i+len(v)] == value originally at r[i]. // Insert panics if i is out of range. // This function is O(len(s) + len(v)). func Insert[S ~[]E, E any](s S, i int, v ...E) S { m := len(v) if m == 0 { return s } n := len(s) if i == n { return append(s, v...) } if n+m > cap(s) { // Use append rather than make so that we bump the size of // the slice up to the next storage class. // This is what Grow does but we don't call Grow because // that might copy the values twice. s2 := append(s[:i], make(S, n+m-i)...) copy(s2[i:], v) copy(s2[i+m:], s[i:]) return s2 } s = s[:n+m] // before: // s: aaaaaaaabbbbccccccccdddd // ^ ^ ^ ^ // i i+m n n+m // after: // s: aaaaaaaavvvvbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // // a are the values that don't move in s. // v are the values copied in from v. // b and c are the values from s that are shifted up in index. // d are the values that get overwritten, never to be seen again. if !overlaps(v, s[i+m:]) { // Easy case - v does not overlap either the c or d regions. // (It might be in some of a or b, or elsewhere entirely.) // The data we copy up doesn't write to v at all, so just do it. copy(s[i+m:], s[i:]) // Now we have // s: aaaaaaaabbbbbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // Note the b values are duplicated. copy(s[i:], v) // Now we have // s: aaaaaaaavvvvbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // That's the result we want. return s } // The hard case - v overlaps c or d. We can't just shift up // the data because we'd move or clobber the values we're trying // to insert. // So instead, write v on top of d, then rotate. copy(s[n:], v) // Now we have // s: aaaaaaaabbbbccccccccvvvv // ^ ^ ^ ^ // i i+m n n+m rotateRight(s[i:], m) // Now we have // s: aaaaaaaavvvvbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // That's the result we want. return s } // Delete removes the elements s[i:j] from s, returning the modified slice. // Delete panics if s[i:j] is not a valid slice of s. // Delete is O(len(s)-j), so if many items must be deleted, it is better to // make a single call deleting them all together than to delete one at a time. // Delete might not modify the elements s[len(s)-(j-i):len(s)]. If those // elements contain pointers you might consider zeroing those elements so that // objects they reference can be garbage collected. func Delete[S ~[]E, E any](s S, i, j int) S { _ = s[i:j] // bounds check return append(s[:i], s[j:]...) } // DeleteFunc removes any elements from s for which del returns true, // returning the modified slice. // When DeleteFunc removes m elements, it might not modify the elements // s[len(s)-m:len(s)]. If those elements contain pointers you might consider // zeroing those elements so that objects they reference can be garbage // collected. func DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S { // Don't start copying elements until we find one to delete. for i, v := range s { if del(v) { j := i for i++; i < len(s); i++ { v = s[i] if !del(v) { s[j] = v j++ } } return s[:j] } } return s } // Replace replaces the elements s[i:j] by the given v, and returns the // modified slice. Replace panics if s[i:j] is not a valid slice of s. func Replace[S ~[]E, E any](s S, i, j int, v ...E) S { _ = s[i:j] // verify that i:j is a valid subslice if i == j { return Insert(s, i, v...) } if j == len(s) { return append(s[:i], v...) } tot := len(s[:i]) + len(v) + len(s[j:]) if tot > cap(s) { // Too big to fit, allocate and copy over. s2 := append(s[:i], make(S, tot-i)...) // See Insert copy(s2[i:], v) copy(s2[i+len(v):], s[j:]) return s2 } r := s[:tot] if i+len(v) <= j { // Easy, as v fits in the deleted portion. copy(r[i:], v) if i+len(v) != j { copy(r[i+len(v):], s[j:]) } return r } // We are expanding (v is bigger than j-i). // The situation is something like this: // (example has i=4,j=8,len(s)=16,len(v)=6) // s: aaaaxxxxbbbbbbbbyy // ^ ^ ^ ^ // i j len(s) tot // a: prefix of s // x: deleted range // b: more of s // y: area to expand into if !overlaps(r[i+len(v):], v) { // Easy, as v is not clobbered by the first copy. copy(r[i+len(v):], s[j:]) copy(r[i:], v) return r } // This is a situation where we don't have a single place to which // we can copy v. Parts of it need to go to two different places. // We want to copy the prefix of v into y and the suffix into x, then // rotate |y| spots to the right. // // v[2:] v[:2] // | | // s: aaaavvvvbbbbbbbbvv // ^ ^ ^ ^ // i j len(s) tot // // If either of those two destinations don't alias v, then we're good. y := len(v) - (j - i) // length of y portion if !overlaps(r[i:j], v) { copy(r[i:j], v[y:]) copy(r[len(s):], v[:y]) rotateRight(r[i:], y) return r } if !overlaps(r[len(s):], v) { copy(r[len(s):], v[:y]) copy(r[i:j], v[y:]) rotateRight(r[i:], y) return r } // Now we know that v overlaps both x and y. // That means that the entirety of b is *inside* v. // So we don't need to preserve b at all; instead we // can copy v first, then copy the b part of v out of // v to the right destination. k := startIdx(v, s[j:]) copy(r[i:], v) copy(r[i+len(v):], r[i+k:]) return r } // Clone returns a copy of the slice. // The elements are copied using assignment, so this is a shallow clone. func Clone[S ~[]E, E any](s S) S { // Preserve nil in case it matters. if s == nil { return nil } return append(S([]E{}), s...) } // Compact replaces consecutive runs of equal elements with a single copy. // This is like the uniq command found on Unix. // Compact modifies the contents of the slice s and returns the modified slice, // which may have a smaller length. // When Compact discards m elements in total, it might not modify the elements // s[len(s)-m:len(s)]. If those elements contain pointers you might consider // zeroing those elements so that objects they reference can be garbage collected. func Compact[S ~[]E, E comparable](s S) S { if len(s) < 2 { return s } i := 1 for k := 1; k < len(s); k++ { if s[k] != s[k-1] { if i != k { s[i] = s[k] } i++ } } return s[:i] } // CompactFunc is like [Compact] but uses an equality function to compare elements. // For runs of elements that compare equal, CompactFunc keeps the first one. func CompactFunc[S ~[]E, E any](s S, eq func(E, E) bool) S { if len(s) < 2 { return s } i := 1 for k := 1; k < len(s); k++ { if !eq(s[k], s[k-1]) { if i != k { s[i] = s[k] } i++ } } return s[:i] } // Grow increases the slice's capacity, if necessary, to guarantee space for // another n elements. After Grow(n), at least n elements can be appended // to the slice without another allocation. If n is negative or too large to // allocate the memory, Grow panics. func Grow[S ~[]E, E any](s S, n int) S { if n < 0 { panic("cannot be negative") } if n -= cap(s) - len(s); n > 0 { s = append(s[:cap(s)], make([]E, n)...)[:len(s)] } return s } // Clip removes unused capacity from the slice, returning s[:len(s):len(s)]. func Clip[S ~[]E, E any](s S) S { return s[:len(s):len(s)] } // Rotation algorithm explanation: // // rotate left by 2 // start with // 0123456789 // split up like this // 01 234567 89 // swap first 2 and last 2 // 89 234567 01 // join first parts // 89234567 01 // recursively rotate first left part by 2 // 23456789 01 // join at the end // 2345678901 // // rotate left by 8 // start with // 0123456789 // split up like this // 01 234567 89 // swap first 2 and last 2 // 89 234567 01 // join last parts // 89 23456701 // recursively rotate second part left by 6 // 89 01234567 // join at the end // 8901234567 // TODO: There are other rotate algorithms. // This algorithm has the desirable property that it moves each element exactly twice. // The triple-reverse algorithm is simpler and more cache friendly, but takes more writes. // The follow-cycles algorithm can be 1-write but it is not very cache friendly. // rotateLeft rotates b left by n spaces. // s_final[i] = s_orig[i+r], wrapping around. func rotateLeft[E any](s []E, r int) { for r != 0 && r != len(s) { if r*2 <= len(s) { swap(s[:r], s[len(s)-r:]) s = s[:len(s)-r] } else { swap(s[:len(s)-r], s[r:]) s, r = s[len(s)-r:], r*2-len(s) } } } func rotateRight[E any](s []E, r int) { rotateLeft(s, len(s)-r) } // swap swaps the contents of x and y. x and y must be equal length and disjoint. func swap[E any](x, y []E) { for i := 0; i < len(x); i++ { x[i], y[i] = y[i], x[i] } } // overlaps reports whether the memory ranges a[0:len(a)] and b[0:len(b)] overlap. func overlaps[E any](a, b []E) bool { if len(a) == 0 || len(b) == 0 { return false } elemSize := unsafe.Sizeof(a[0]) if elemSize == 0 { return false } // TODO: use a runtime/unsafe facility once one becomes available. See issue 12445. // Also see crypto/internal/alias/alias.go:AnyOverlap return uintptr(unsafe.Pointer(&a[0])) <= uintptr(unsafe.Pointer(&b[len(b)-1]))+(elemSize-1) && uintptr(unsafe.Pointer(&b[0])) <= uintptr(unsafe.Pointer(&a[len(a)-1]))+(elemSize-1) } // startIdx returns the index in haystack where the needle starts. // prerequisite: the needle must be aliased entirely inside the haystack. func startIdx[E any](haystack, needle []E) int { p := &needle[0] for i := range haystack { if p == &haystack[i] { return i } } // TODO: what if the overlap is by a non-integral number of Es? panic("needle not found") } // Reverse reverses the elements of the slice in place. func Reverse[S ~[]E, E any](s S) { for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { s[i], s[j] = s[j], s[i] } } // Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //package slices //import ( // "cmp" // "math/bits" //) // Sort sorts a slice of any ordered type in ascending order. // When sorting floating-point numbers, NaNs are ordered before other values. func Sort[S ~[]E, E cmp.Ordered](x S) { n := len(x) pdqsortOrdered(x, 0, n, bits.Len(uint(n))) } // SortFunc sorts the slice x in ascending order as determined by the cmp // function. This sort is not guaranteed to be stable. // cmp(a, b) should return a negative number when a < b, a positive number when // a > b and zero when a == b. // // SortFunc requires that cmp is a strict weak ordering. // See https://en.wikipedia.org/wiki/Weak_ordering#Strict_weak_orderings. func SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) { n := len(x) pdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp) } // SortStableFunc sorts the slice x while keeping the original order of equal // elements, using cmp to compare elements in the same way as [SortFunc]. func SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) { stableCmpFunc(x, len(x), cmp) } // IsSorted reports whether x is sorted in ascending order. func IsSorted[S ~[]E, E cmp.Ordered](x S) bool { for i := len(x) - 1; i > 0; i-- { if cmp.Less(x[i], x[i-1]) { return false } } return true } // IsSortedFunc reports whether x is sorted in ascending order, with cmp as the // comparison function as defined by [SortFunc]. func IsSortedFunc[S ~[]E, E any](x S, cmp func(a, b E) int) bool { for i := len(x) - 1; i > 0; i-- { if cmp(x[i], x[i-1]) < 0 { return false } } return true } // Min returns the minimal value in x. It panics if x is empty. // For floating-point numbers, Min propagates NaNs (any NaN value in x // forces the output to be NaN). func Min[S ~[]E, E cmp.Ordered](x S) E { if len(x) < 1 { panic("slices.Min: empty list") } m := x[0] for i := 1; i < len(x); i++ { m = min(m, x[i]) } return m } // MinFunc returns the minimal value in x, using cmp to compare elements. // It panics if x is empty. If there is more than one minimal element // according to the cmp function, MinFunc returns the first one. func MinFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E { if len(x) < 1 { panic("slices.MinFunc: empty list") } m := x[0] for i := 1; i < len(x); i++ { if cmp(x[i], m) < 0 { m = x[i] } } return m } // Max returns the maximal value in x. It panics if x is empty. // For floating-point E, Max propagates NaNs (any NaN value in x // forces the output to be NaN). func Max[S ~[]E, E cmp.Ordered](x S) E { if len(x) < 1 { panic("slices.Max: empty list") } m := x[0] for i := 1; i < len(x); i++ { m = max(m, x[i]) } return m } // MaxFunc returns the maximal value in x, using cmp to compare elements. // It panics if x is empty. If there is more than one maximal element // according to the cmp function, MaxFunc returns the first one. func MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E { if len(x) < 1 { panic("slices.MaxFunc: empty list") } m := x[0] for i := 1; i < len(x); i++ { if cmp(x[i], m) > 0 { m = x[i] } } return m } // BinarySearch searches for target in a sorted slice and returns the position // where target is found, or the position where target would appear in the // sort order; it also returns a bool saying whether the target is really found // in the slice. The slice must be sorted in increasing order. func BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) { // Inlining is faster than calling BinarySearchFunc with a lambda. n := len(x) // Define x[-1] < target and x[n] >= target. // Invariant: x[i-1] < target, x[j] >= target. i, j := 0, n for i < j { h := int(uint(i+j) >> 1) // avoid overflow when computing h // i ≤ h < j if cmp.Less(x[h], target) { i = h + 1 // preserves x[i-1] < target } else { j = h // preserves x[j] >= target } } // i == j, x[i-1] < target, and x[j] (= x[i]) >= target => answer is i. return i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target))) } // BinarySearchFunc works like [BinarySearch], but uses a custom comparison // function. The slice must be sorted in increasing order, where "increasing" // is defined by cmp. cmp should return 0 if the slice element matches // the target, a negative number if the slice element precedes the target, // or a positive number if the slice element follows the target. // cmp must implement the same ordering as the slice, such that if // cmp(a, t) < 0 and cmp(b, t) >= 0, then a must precede b in the slice. func BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) { n := len(x) // Define cmp(x[-1], target) < 0 and cmp(x[n], target) >= 0 . // Invariant: cmp(x[i - 1], target) < 0, cmp(x[j], target) >= 0. i, j := 0, n for i < j { h := int(uint(i+j) >> 1) // avoid overflow when computing h // i ≤ h < j if cmp(x[h], target) < 0 { i = h + 1 // preserves cmp(x[i - 1], target) < 0 } else { j = h // preserves cmp(x[j], target) >= 0 } } // i == j, cmp(x[i-1], target) < 0, and cmp(x[j], target) (= cmp(x[i], target)) >= 0 => answer is i. return i, i < n && cmp(x[i], target) == 0 } type sortedHint int // hint for pdqsort when choosing the pivot const ( unknownHint sortedHint = iota increasingHint decreasingHint ) // xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf type xorshift uint64 func (r *xorshift) Next() uint64 { *r ^= *r << 13 *r ^= *r >> 17 *r ^= *r << 5 return uint64(*r) } func nextPowerOfTwo(length int) uint { return 1 << bits.Len(uint(length)) } // isNaN reports whether x is a NaN without requiring the math package. // This will always return false if T is not floating-point. func isNaN[T cmp.Ordered](x T) bool { return x != x } // Code generated by gen_sort_variants.go; DO NOT EDIT. // Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // package slices // insertionSortCmpFunc sorts data[a:b] using insertion sort. func insertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { for i := a + 1; i < b; i++ { for j := i; j > a && (cmp(data[j], data[j-1]) < 0); j-- { data[j], data[j-1] = data[j-1], data[j] } } } // siftDownCmpFunc implements the heap property on data[lo:hi]. // first is an offset into the array where the root of the heap lies. func siftDownCmpFunc[E any](data []E, lo, hi, first int, cmp func(a, b E) int) { root := lo for { child := 2*root + 1 if child >= hi { break } if child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) { child++ } if !(cmp(data[first+root], data[first+child]) < 0) { return } data[first+root], data[first+child] = data[first+child], data[first+root] root = child } } func heapSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { first := a lo := 0 hi := b - a // Build heap with greatest element at top. for i := (hi - 1) / 2; i >= 0; i-- { siftDownCmpFunc(data, i, hi, first, cmp) } // Pop elements, largest first, into end of data. for i := hi - 1; i >= 0; i-- { data[first], data[first+i] = data[first+i], data[first] siftDownCmpFunc(data, lo, i, first, cmp) } } // pdqsortCmpFunc sorts data[a:b]. // The algorithm based on pattern-defeating quicksort(pdqsort), but without the optimizations from BlockQuicksort. // pdqsort paper: https://arxiv.org/pdf/2106.05123.pdf // C++ implementation: https://github.com/orlp/pdqsort // Rust implementation: https://docs.rs/pdqsort/latest/pdqsort/ // limit is the number of allowed bad (very unbalanced) pivots before falling back to heapsort. func pdqsortCmpFunc[E any](data []E, a, b, limit int, cmp func(a, b E) int) { const maxInsertion = 12 var ( wasBalanced = true // whether the last partitioning was reasonably balanced wasPartitioned = true // whether the slice was already partitioned ) for { length := b - a if length <= maxInsertion { insertionSortCmpFunc(data, a, b, cmp) return } // Fall back to heapsort if too many bad choices were made. if limit == 0 { heapSortCmpFunc(data, a, b, cmp) return } // If the last partitioning was imbalanced, we need to breaking patterns. if !wasBalanced { breakPatternsCmpFunc(data, a, b, cmp) limit-- } pivot, hint := choosePivotCmpFunc(data, a, b, cmp) if hint == decreasingHint { reverseRangeCmpFunc(data, a, b, cmp) // The chosen pivot was pivot-a elements after the start of the array. // After reversing it is pivot-a elements before the end of the array. // The idea came from Rust's implementation. pivot = (b - 1) - (pivot - a) hint = increasingHint } // The slice is likely already sorted. if wasBalanced && wasPartitioned && hint == increasingHint { if partialInsertionSortCmpFunc(data, a, b, cmp) { return } } // Probably the slice contains many duplicate elements, partition the slice into // elements equal to and elements greater than the pivot. if a > 0 && !(cmp(data[a-1], data[pivot]) < 0) { mid := partitionEqualCmpFunc(data, a, b, pivot, cmp) a = mid continue } mid, alreadyPartitioned := partitionCmpFunc(data, a, b, pivot, cmp) wasPartitioned = alreadyPartitioned leftLen, rightLen := mid-a, b-mid balanceThreshold := length / 8 if leftLen < rightLen { wasBalanced = leftLen >= balanceThreshold pdqsortCmpFunc(data, a, mid, limit, cmp) a = mid + 1 } else { wasBalanced = rightLen >= balanceThreshold pdqsortCmpFunc(data, mid+1, b, limit, cmp) b = mid } } } // partitionCmpFunc does one quicksort partition. // Let p = data[pivot] // Moves elements in data[a:b] around, so that data[i]

=p for inewpivot. // On return, data[newpivot] = p func partitionCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int, alreadyPartitioned bool) { data[a], data[pivot] = data[pivot], data[a] i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned for i <= j && (cmp(data[i], data[a]) < 0) { i++ } for i <= j && !(cmp(data[j], data[a]) < 0) { j-- } if i > j { data[j], data[a] = data[a], data[j] return j, true } data[i], data[j] = data[j], data[i] i++ j-- for { for i <= j && (cmp(data[i], data[a]) < 0) { i++ } for i <= j && !(cmp(data[j], data[a]) < 0) { j-- } if i > j { break } data[i], data[j] = data[j], data[i] i++ j-- } data[j], data[a] = data[a], data[j] return j, false } // partitionEqualCmpFunc partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot]. // It assumed that data[a:b] does not contain elements smaller than the data[pivot]. func partitionEqualCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int) { data[a], data[pivot] = data[pivot], data[a] i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned for { for i <= j && !(cmp(data[a], data[i]) < 0) { i++ } for i <= j && (cmp(data[a], data[j]) < 0) { j-- } if i > j { break } data[i], data[j] = data[j], data[i] i++ j-- } return i } // partialInsertionSortCmpFunc partially sorts a slice, returns true if the slice is sorted at the end. func partialInsertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) bool { const ( maxSteps = 5 // maximum number of adjacent out-of-order pairs that will get shifted shortestShifting = 50 // don't shift any elements on short arrays ) i := a + 1 for j := 0; j < maxSteps; j++ { for i < b && !(cmp(data[i], data[i-1]) < 0) { i++ } if i == b { return true } if b-a < shortestShifting { return false } data[i], data[i-1] = data[i-1], data[i] // Shift the smaller one to the left. if i-a >= 2 { for j := i - 1; j >= 1; j-- { if !(cmp(data[j], data[j-1]) < 0) { break } data[j], data[j-1] = data[j-1], data[j] } } // Shift the greater one to the right. if b-i >= 2 { for j := i + 1; j < b; j++ { if !(cmp(data[j], data[j-1]) < 0) { break } data[j], data[j-1] = data[j-1], data[j] } } } return false } // breakPatternsCmpFunc scatters some elements around in an attempt to break some patterns // that might cause imbalanced partitions in quicksort. func breakPatternsCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { length := b - a if length >= 8 { random := xorshift(length) modulus := nextPowerOfTwo(length) for idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ { other := int(uint(random.Next()) & (modulus - 1)) if other >= length { other -= length } data[idx], data[a+other] = data[a+other], data[idx] } } } // choosePivotCmpFunc chooses a pivot in data[a:b]. // // [0,8): chooses a static pivot. // [8,shortestNinther): uses the simple median-of-three method. // [shortestNinther,∞): uses the Tukey ninther method. func choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) { const ( shortestNinther = 50 maxSwaps = 4 * 3 ) l := b - a var ( swaps int i = a + l/4*1 j = a + l/4*2 k = a + l/4*3 ) if l >= 8 { if l >= shortestNinther { // Tukey ninther method, the idea came from Rust's implementation. i = medianAdjacentCmpFunc(data, i, &swaps, cmp) j = medianAdjacentCmpFunc(data, j, &swaps, cmp) k = medianAdjacentCmpFunc(data, k, &swaps, cmp) } // Find the median among i, j, k and stores it into j. j = medianCmpFunc(data, i, j, k, &swaps, cmp) } switch swaps { case 0: return j, increasingHint case maxSwaps: return j, decreasingHint default: return j, unknownHint } } // order2CmpFunc returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a. func order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) { if cmp(data[b], data[a]) < 0 { *swaps++ return b, a } return a, b } // medianCmpFunc returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c. func medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int { a, b = order2CmpFunc(data, a, b, swaps, cmp) b, c = order2CmpFunc(data, b, c, swaps, cmp) a, b = order2CmpFunc(data, a, b, swaps, cmp) return b } // medianAdjacentCmpFunc finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a. func medianAdjacentCmpFunc[E any](data []E, a int, swaps *int, cmp func(a, b E) int) int { return medianCmpFunc(data, a-1, a, a+1, swaps, cmp) } func reverseRangeCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { i := a j := b - 1 for i < j { data[i], data[j] = data[j], data[i] i++ j-- } } func swapRangeCmpFunc[E any](data []E, a, b, n int, cmp func(a, b E) int) { for i := 0; i < n; i++ { data[a+i], data[b+i] = data[b+i], data[a+i] } } func stableCmpFunc[E any](data []E, n int, cmp func(a, b E) int) { blockSize := 20 // must be > 0 a, b := 0, blockSize for b <= n { insertionSortCmpFunc(data, a, b, cmp) a = b b += blockSize } insertionSortCmpFunc(data, a, n, cmp) for blockSize < n { a, b = 0, 2*blockSize for b <= n { symMergeCmpFunc(data, a, a+blockSize, b, cmp) a = b b += 2 * blockSize } if m := a + blockSize; m < n { symMergeCmpFunc(data, a, m, n, cmp) } blockSize *= 2 } } // symMergeCmpFunc merges the two sorted subsequences data[a:m] and data[m:b] using // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in // Computer Science, pages 714-723. Springer, 2004. // // Let M = m-a and N = b-n. Wolog M < N. // The recursion depth is bound by ceil(log(N+M)). // The algorithm needs O(M*log(N/M + 1)) calls to data.Less. // The algorithm needs O((M+N)*log(M)) calls to data.Swap. // // The paper gives O((M+N)*log(M)) as the number of assignments assuming a // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation // in the paper carries through for Swap operations, especially as the block // swapping rotate uses only O(M+N) Swaps. // // symMerge assumes non-degenerate arguments: a < m && m < b. // Having the caller check this condition eliminates many leaf recursion calls, // which improves performance. func symMergeCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) { // Avoid unnecessary recursions of symMerge // by direct insertion of data[a] into data[m:b] // if data[a:m] only contains one element. if m-a == 1 { // Use binary search to find the lowest index i // such that data[i] >= data[a] for m <= i < b. // Exit the search loop with i == b in case no such index exists. i := m j := b for i < j { h := int(uint(i+j) >> 1) if cmp(data[h], data[a]) < 0 { i = h + 1 } else { j = h } } // Swap values until data[a] reaches the position before i. for k := a; k < i-1; k++ { data[k], data[k+1] = data[k+1], data[k] } return } // Avoid unnecessary recursions of symMerge // by direct insertion of data[m] into data[a:m] // if data[m:b] only contains one element. if b-m == 1 { // Use binary search to find the lowest index i // such that data[i] > data[m] for a <= i < m. // Exit the search loop with i == m in case no such index exists. i := a j := m for i < j { h := int(uint(i+j) >> 1) if !(cmp(data[m], data[h]) < 0) { i = h + 1 } else { j = h } } // Swap values until data[m] reaches the position i. for k := m; k > i; k-- { data[k], data[k-1] = data[k-1], data[k] } return } mid := int(uint(a+b) >> 1) n := mid + m var start, r int if m > mid { start = n - b r = mid } else { start = a r = m } p := n - 1 for start < r { c := int(uint(start+r) >> 1) if !(cmp(data[p-c], data[c]) < 0) { start = c + 1 } else { r = c } } end := n - start if start < m && m < end { rotateCmpFunc(data, start, m, end, cmp) } if a < start && start < mid { symMergeCmpFunc(data, a, start, mid, cmp) } if mid < end && end < b { symMergeCmpFunc(data, mid, end, b, cmp) } } // rotateCmpFunc rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data: // Data of the form 'x u v y' is changed to 'x v u y'. // rotate performs at most b-a many calls to data.Swap, // and it assumes non-degenerate arguments: a < m && m < b. func rotateCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) { i := m - a j := b - m for i != j { if i > j { swapRangeCmpFunc(data, m-i, m, j, cmp) i -= j } else { swapRangeCmpFunc(data, m-i, m+j-i, i, cmp) j -= i } } // i == j swapRangeCmpFunc(data, m-i, m, i, cmp) } // Code generated by gen_sort_variants.go; DO NOT EDIT. // Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // package slices // import "cmp" // insertionSortOrdered sorts data[a:b] using insertion sort. func insertionSortOrdered[E cmp.Ordered](data []E, a, b int) { for i := a + 1; i < b; i++ { for j := i; j > a && cmp.Less(data[j], data[j-1]); j-- { data[j], data[j-1] = data[j-1], data[j] } } } // siftDownOrdered implements the heap property on data[lo:hi]. // first is an offset into the array where the root of the heap lies. func siftDownOrdered[E cmp.Ordered](data []E, lo, hi, first int) { root := lo for { child := 2*root + 1 if child >= hi { break } if child+1 < hi && cmp.Less(data[first+child], data[first+child+1]) { child++ } if !cmp.Less(data[first+root], data[first+child]) { return } data[first+root], data[first+child] = data[first+child], data[first+root] root = child } } func heapSortOrdered[E cmp.Ordered](data []E, a, b int) { first := a lo := 0 hi := b - a // Build heap with greatest element at top. for i := (hi - 1) / 2; i >= 0; i-- { siftDownOrdered(data, i, hi, first) } // Pop elements, largest first, into end of data. for i := hi - 1; i >= 0; i-- { data[first], data[first+i] = data[first+i], data[first] siftDownOrdered(data, lo, i, first) } } // pdqsortOrdered sorts data[a:b]. // The algorithm based on pattern-defeating quicksort(pdqsort), but without the optimizations from BlockQuicksort. // pdqsort paper: https://arxiv.org/pdf/2106.05123.pdf // C++ implementation: https://github.com/orlp/pdqsort // Rust implementation: https://docs.rs/pdqsort/latest/pdqsort/ // limit is the number of allowed bad (very unbalanced) pivots before falling back to heapsort. func pdqsortOrdered[E cmp.Ordered](data []E, a, b, limit int) { const maxInsertion = 12 var ( wasBalanced = true // whether the last partitioning was reasonably balanced wasPartitioned = true // whether the slice was already partitioned ) for { length := b - a if length <= maxInsertion { insertionSortOrdered(data, a, b) return } // Fall back to heapsort if too many bad choices were made. if limit == 0 { heapSortOrdered(data, a, b) return } // If the last partitioning was imbalanced, we need to breaking patterns. if !wasBalanced { breakPatternsOrdered(data, a, b) limit-- } pivot, hint := choosePivotOrdered(data, a, b) if hint == decreasingHint { reverseRangeOrdered(data, a, b) // The chosen pivot was pivot-a elements after the start of the array. // After reversing it is pivot-a elements before the end of the array. // The idea came from Rust's implementation. pivot = (b - 1) - (pivot - a) hint = increasingHint } // The slice is likely already sorted. if wasBalanced && wasPartitioned && hint == increasingHint { if partialInsertionSortOrdered(data, a, b) { return } } // Probably the slice contains many duplicate elements, partition the slice into // elements equal to and elements greater than the pivot. if a > 0 && !cmp.Less(data[a-1], data[pivot]) { mid := partitionEqualOrdered(data, a, b, pivot) a = mid continue } mid, alreadyPartitioned := partitionOrdered(data, a, b, pivot) wasPartitioned = alreadyPartitioned leftLen, rightLen := mid-a, b-mid balanceThreshold := length / 8 if leftLen < rightLen { wasBalanced = leftLen >= balanceThreshold pdqsortOrdered(data, a, mid, limit) a = mid + 1 } else { wasBalanced = rightLen >= balanceThreshold pdqsortOrdered(data, mid+1, b, limit) b = mid } } } // partitionOrdered does one quicksort partition. // Let p = data[pivot] // Moves elements in data[a:b] around, so that data[i]

=p for inewpivot. // On return, data[newpivot] = p func partitionOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int, alreadyPartitioned bool) { data[a], data[pivot] = data[pivot], data[a] i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned for i <= j && cmp.Less(data[i], data[a]) { i++ } for i <= j && !cmp.Less(data[j], data[a]) { j-- } if i > j { data[j], data[a] = data[a], data[j] return j, true } data[i], data[j] = data[j], data[i] i++ j-- for { for i <= j && cmp.Less(data[i], data[a]) { i++ } for i <= j && !cmp.Less(data[j], data[a]) { j-- } if i > j { break } data[i], data[j] = data[j], data[i] i++ j-- } data[j], data[a] = data[a], data[j] return j, false } // partitionEqualOrdered partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot]. // It assumed that data[a:b] does not contain elements smaller than the data[pivot]. func partitionEqualOrdered[E cmp.Ordered](data []E, a, b, pivot int) (newpivot int) { data[a], data[pivot] = data[pivot], data[a] i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned for { for i <= j && !cmp.Less(data[a], data[i]) { i++ } for i <= j && cmp.Less(data[a], data[j]) { j-- } if i > j { break } data[i], data[j] = data[j], data[i] i++ j-- } return i } // partialInsertionSortOrdered partially sorts a slice, returns true if the slice is sorted at the end. func partialInsertionSortOrdered[E cmp.Ordered](data []E, a, b int) bool { const ( maxSteps = 5 // maximum number of adjacent out-of-order pairs that will get shifted shortestShifting = 50 // don't shift any elements on short arrays ) i := a + 1 for j := 0; j < maxSteps; j++ { for i < b && !cmp.Less(data[i], data[i-1]) { i++ } if i == b { return true } if b-a < shortestShifting { return false } data[i], data[i-1] = data[i-1], data[i] // Shift the smaller one to the left. if i-a >= 2 { for j := i - 1; j >= 1; j-- { if !cmp.Less(data[j], data[j-1]) { break } data[j], data[j-1] = data[j-1], data[j] } } // Shift the greater one to the right. if b-i >= 2 { for j := i + 1; j < b; j++ { if !cmp.Less(data[j], data[j-1]) { break } data[j], data[j-1] = data[j-1], data[j] } } } return false } // breakPatternsOrdered scatters some elements around in an attempt to break some patterns // that might cause imbalanced partitions in quicksort. func breakPatternsOrdered[E cmp.Ordered](data []E, a, b int) { length := b - a if length >= 8 { random := xorshift(length) modulus := nextPowerOfTwo(length) for idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ { other := int(uint(random.Next()) & (modulus - 1)) if other >= length { other -= length } data[idx], data[a+other] = data[a+other], data[idx] } } } // choosePivotOrdered chooses a pivot in data[a:b]. // // [0,8): chooses a static pivot. // [8,shortestNinther): uses the simple median-of-three method. // [shortestNinther,∞): uses the Tukey ninther method. func choosePivotOrdered[E cmp.Ordered](data []E, a, b int) (pivot int, hint sortedHint) { const ( shortestNinther = 50 maxSwaps = 4 * 3 ) l := b - a var ( swaps int i = a + l/4*1 j = a + l/4*2 k = a + l/4*3 ) if l >= 8 { if l >= shortestNinther { // Tukey ninther method, the idea came from Rust's implementation. i = medianAdjacentOrdered(data, i, &swaps) j = medianAdjacentOrdered(data, j, &swaps) k = medianAdjacentOrdered(data, k, &swaps) } // Find the median among i, j, k and stores it into j. j = medianOrdered(data, i, j, k, &swaps) } switch swaps { case 0: return j, increasingHint case maxSwaps: return j, decreasingHint default: return j, unknownHint } } // order2Ordered returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a. func order2Ordered[E cmp.Ordered](data []E, a, b int, swaps *int) (int, int) { if cmp.Less(data[b], data[a]) { *swaps++ return b, a } return a, b } // medianOrdered returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c. func medianOrdered[E cmp.Ordered](data []E, a, b, c int, swaps *int) int { a, b = order2Ordered(data, a, b, swaps) b, c = order2Ordered(data, b, c, swaps) a, b = order2Ordered(data, a, b, swaps) return b } // medianAdjacentOrdered finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a. func medianAdjacentOrdered[E cmp.Ordered](data []E, a int, swaps *int) int { return medianOrdered(data, a-1, a, a+1, swaps) } func reverseRangeOrdered[E cmp.Ordered](data []E, a, b int) { i := a j := b - 1 for i < j { data[i], data[j] = data[j], data[i] i++ j-- } } func swapRangeOrdered[E cmp.Ordered](data []E, a, b, n int) { for i := 0; i < n; i++ { data[a+i], data[b+i] = data[b+i], data[a+i] } } func stableOrdered[E cmp.Ordered](data []E, n int) { blockSize := 20 // must be > 0 a, b := 0, blockSize for b <= n { insertionSortOrdered(data, a, b) a = b b += blockSize } insertionSortOrdered(data, a, n) for blockSize < n { a, b = 0, 2*blockSize for b <= n { symMergeOrdered(data, a, a+blockSize, b) a = b b += 2 * blockSize } if m := a + blockSize; m < n { symMergeOrdered(data, a, m, n) } blockSize *= 2 } } // symMergeOrdered merges the two sorted subsequences data[a:m] and data[m:b] using // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in // Computer Science, pages 714-723. Springer, 2004. // // Let M = m-a and N = b-n. Wolog M < N. // The recursion depth is bound by ceil(log(N+M)). // The algorithm needs O(M*log(N/M + 1)) calls to data.Less. // The algorithm needs O((M+N)*log(M)) calls to data.Swap. // // The paper gives O((M+N)*log(M)) as the number of assignments assuming a // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation // in the paper carries through for Swap operations, especially as the block // swapping rotate uses only O(M+N) Swaps. // // symMerge assumes non-degenerate arguments: a < m && m < b. // Having the caller check this condition eliminates many leaf recursion calls, // which improves performance. func symMergeOrdered[E cmp.Ordered](data []E, a, m, b int) { // Avoid unnecessary recursions of symMerge // by direct insertion of data[a] into data[m:b] // if data[a:m] only contains one element. if m-a == 1 { // Use binary search to find the lowest index i // such that data[i] >= data[a] for m <= i < b. // Exit the search loop with i == b in case no such index exists. i := m j := b for i < j { h := int(uint(i+j) >> 1) if cmp.Less(data[h], data[a]) { i = h + 1 } else { j = h } } // Swap values until data[a] reaches the position before i. for k := a; k < i-1; k++ { data[k], data[k+1] = data[k+1], data[k] } return } // Avoid unnecessary recursions of symMerge // by direct insertion of data[m] into data[a:m] // if data[m:b] only contains one element. if b-m == 1 { // Use binary search to find the lowest index i // such that data[i] > data[m] for a <= i < m. // Exit the search loop with i == m in case no such index exists. i := a j := m for i < j { h := int(uint(i+j) >> 1) if !cmp.Less(data[m], data[h]) { i = h + 1 } else { j = h } } // Swap values until data[m] reaches the position i. for k := m; k > i; k-- { data[k], data[k-1] = data[k-1], data[k] } return } mid := int(uint(a+b) >> 1) n := mid + m var start, r int if m > mid { start = n - b r = mid } else { start = a r = m } p := n - 1 for start < r { c := int(uint(start+r) >> 1) if !cmp.Less(data[p-c], data[c]) { start = c + 1 } else { r = c } } end := n - start if start < m && m < end { rotateOrdered(data, start, m, end) } if a < start && start < mid { symMergeOrdered(data, a, start, mid) } if mid < end && end < b { symMergeOrdered(data, mid, end, b) } } // rotateOrdered rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data: // Data of the form 'x u v y' is changed to 'x v u y'. // rotate performs at most b-a many calls to data.Swap, // and it assumes non-degenerate arguments: a < m && m < b. func rotateOrdered[E cmp.Ordered](data []E, a, m, b int) { i := m - a j := b - m for i != j { if i > j { swapRangeOrdered(data, m-i, m, j) i -= j } else { swapRangeOrdered(data, m-i, m+j-i, i) j -= i } } // i == j swapRangeOrdered(data, m-i, m, i) } yaegi-0.16.1/stdlib/generic/go1_21_sync.go.txt000066400000000000000000000106251460330105400207630ustar00rootroot00000000000000// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sync import ( "sync/atomic" ) // OnceFunc returns a function that invokes f only once. The returned function // may be called concurrently. // // If f panics, the returned function will panic with the same value on every call. func OnceFunc(f func()) func() { var ( once Once valid bool p any ) // Construct the inner closure just once to reduce costs on the fast path. g := func() { defer func() { p = recover() if !valid { // Re-panic immediately so on the first call the user gets a // complete stack trace into f. panic(p) } }() f() valid = true // Set only if f does not panic } return func() { once.Do(g) if !valid { panic(p) } } } // OnceValue returns a function that invokes f only once and returns the value // returned by f. The returned function may be called concurrently. // // If f panics, the returned function will panic with the same value on every call. func OnceValue[T any](f func() T) func() T { var ( once Once valid bool p any result T ) g := func() { defer func() { p = recover() if !valid { panic(p) } }() result = f() valid = true } return func() T { once.Do(g) if !valid { panic(p) } return result } } // OnceValues returns a function that invokes f only once and returns the values // returned by f. The returned function may be called concurrently. // // If f panics, the returned function will panic with the same value on every call. func OnceValues[T1, T2 any](f func() (T1, T2)) func() (T1, T2) { var ( once Once valid bool p any r1 T1 r2 T2 ) g := func() { defer func() { p = recover() if !valid { panic(p) } }() r1, r2 = f() valid = true } return func() (T1, T2) { once.Do(g) if !valid { panic(p) } return r1, r2 } } // Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //package sync // import ( // "sync/atomic" // ) // Once is an object that will perform exactly one action. // // A Once must not be copied after first use. // // In the terminology of the Go memory model, // the return from f “synchronizes before” // the return from any call of once.Do(f). type Once struct { // done indicates whether the action has been performed. // It is first in the struct because it is used in the hot path. // The hot path is inlined at every call site. // Placing done first allows more compact instructions on some architectures (amd64/386), // and fewer instructions (to calculate offset) on other architectures. done uint32 m Mutex } // Do calls the function f if and only if Do is being called for the // first time for this instance of Once. In other words, given // // var once Once // // if once.Do(f) is called multiple times, only the first call will invoke f, // even if f has a different value in each invocation. A new instance of // Once is required for each function to execute. // // Do is intended for initialization that must be run exactly once. Since f // is niladic, it may be necessary to use a function literal to capture the // arguments to a function to be invoked by Do: // // config.once.Do(func() { config.init(filename) }) // // Because no call to Do returns until the one call to f returns, if f causes // Do to be called, it will deadlock. // // If f panics, Do considers it to have returned; future calls of Do return // without calling f. func (o *Once) Do(f func()) { // Note: Here is an incorrect implementation of Do: // // if atomic.CompareAndSwapUint32(&o.done, 0, 1) { // f() // } // // Do guarantees that when it returns, f has finished. // This implementation would not implement that guarantee: // given two simultaneous calls, the winner of the cas would // call f, and the second would return immediately, without // waiting for the first's call to f to complete. // This is why the slow path falls back to a mutex, and why // the atomic.StoreUint32 must be delayed until after f returns. if atomic.LoadUint32(&o.done) == 0 { // Outlined slow-path to allow inlining of the fast-path. o.doSlow(f) } } func (o *Once) doSlow(f func()) { o.m.Lock() defer o.m.Unlock() if o.done == 0 { defer atomic.StoreUint32(&o.done, 1) f() } } yaegi-0.16.1/stdlib/generic/go1_21_sync_atomic.go.txt000066400000000000000000000150171460330105400223170ustar00rootroot00000000000000// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package atomic import "unsafe" // A Bool is an atomic boolean value. // The zero value is false. type Bool struct { _ noCopy v uint32 } // Load atomically loads and returns the value stored in x. func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 } // Store atomically stores val into x. func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) } // Swap atomically stores new into x and returns the previous value. func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 } // CompareAndSwap executes the compare-and-swap operation for the boolean value x. func (x *Bool) CompareAndSwap(old, new bool) (swapped bool) { return CompareAndSwapUint32(&x.v, b32(old), b32(new)) } // b32 returns a uint32 0 or 1 representing b. func b32(b bool) uint32 { if b { return 1 } return 0 } // For testing *Pointer[T]'s methods can be inlined. // Keep in sync with cmd/compile/internal/test/inl_test.go:TestIntendedInlining. var _ = &Pointer[int]{} // A Pointer is an atomic pointer of type *T. The zero value is a nil *T. type Pointer[T any] struct { // Mention *T in a field to disallow conversion between Pointer types. // See go.dev/issue/56603 for more details. // Use *T, not T, to avoid spurious recursive type definition errors. _ [0]*T _ noCopy v unsafe.Pointer } // Load atomically loads and returns the value stored in x. func (x *Pointer[T]) Load() *T { return (*T)(LoadPointer(&x.v)) } // Store atomically stores val into x. func (x *Pointer[T]) Store(val *T) { StorePointer(&x.v, unsafe.Pointer(val)) } // Swap atomically stores new into x and returns the previous value. func (x *Pointer[T]) Swap(new *T) (old *T) { return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) { return CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new)) } // An Int32 is an atomic int32. The zero value is zero. type Int32 struct { _ noCopy v int32 } // Load atomically loads and returns the value stored in x. func (x *Int32) Load() int32 { return LoadInt32(&x.v) } // Store atomically stores val into x. func (x *Int32) Store(val int32) { StoreInt32(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Int32) Swap(new int32) (old int32) { return SwapInt32(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Int32) CompareAndSwap(old, new int32) (swapped bool) { return CompareAndSwapInt32(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) } // An Int64 is an atomic int64. The zero value is zero. type Int64 struct { _ noCopy _ align64 v int64 } // Load atomically loads and returns the value stored in x. func (x *Int64) Load() int64 { return LoadInt64(&x.v) } // Store atomically stores val into x. func (x *Int64) Store(val int64) { StoreInt64(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Int64) Swap(new int64) (old int64) { return SwapInt64(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Int64) CompareAndSwap(old, new int64) (swapped bool) { return CompareAndSwapInt64(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) } // A Uint32 is an atomic uint32. The zero value is zero. type Uint32 struct { _ noCopy v uint32 } // Load atomically loads and returns the value stored in x. func (x *Uint32) Load() uint32 { return LoadUint32(&x.v) } // Store atomically stores val into x. func (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Uint32) Swap(new uint32) (old uint32) { return SwapUint32(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool) { return CompareAndSwapUint32(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Uint32) Add(delta uint32) (new uint32) { return AddUint32(&x.v, delta) } // A Uint64 is an atomic uint64. The zero value is zero. type Uint64 struct { _ noCopy _ align64 v uint64 } // Load atomically loads and returns the value stored in x. func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) } // Store atomically stores val into x. func (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Uint64) Swap(new uint64) (old uint64) { return SwapUint64(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool) { return CompareAndSwapUint64(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Uint64) Add(delta uint64) (new uint64) { return AddUint64(&x.v, delta) } // A Uintptr is an atomic uintptr. The zero value is zero. type Uintptr struct { _ noCopy v uintptr } // Load atomically loads and returns the value stored in x. func (x *Uintptr) Load() uintptr { return LoadUintptr(&x.v) } // Store atomically stores val into x. func (x *Uintptr) Store(val uintptr) { StoreUintptr(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Uintptr) Swap(new uintptr) (old uintptr) { return SwapUintptr(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool) { return CompareAndSwapUintptr(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Uintptr) Add(delta uintptr) (new uintptr) { return AddUintptr(&x.v, delta) } // noCopy may be added to structs which must not be copied // after the first use. // // See https://golang.org/issues/8005#issuecomment-190753527 // for details. // // Note that it must not be embedded, due to the Lock and Unlock methods. type noCopy struct{} // Lock is a no-op used by -copylocks checker from `go vet`. func (*noCopy) Lock() {} func (*noCopy) Unlock() {} // align64 may be added to structs that must be 64-bit aligned. // This struct is recognized by a special case in the compiler // and will not work if copied to any other package. type align64 struct{} yaegi-0.16.1/stdlib/generic/go1_22_cmp_cmp.go.txt000066400000000000000000000037601460330105400214300ustar00rootroot00000000000000// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package cmp provides types and functions related to comparing // ordered values. package cmp // Ordered is a constraint that permits any ordered type: any type // that supports the operators < <= >= >. // If future releases of Go add new ordered types, // this constraint will be modified to include them. // // Note that floating-point types may contain NaN ("not-a-number") values. // An operator such as == or < will always report false when // comparing a NaN value with any other value, NaN or not. // See the [Compare] function for a consistent way to compare NaN values. type Ordered interface { ~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | ~float32 | ~float64 | ~string } // Less reports whether x is less than y. // For floating-point types, a NaN is considered less than any non-NaN, // and -0.0 is not less than (is equal to) 0.0. func Less[T Ordered](x, y T) bool { return (isNaN(x) && !isNaN(y)) || x < y } // Compare returns // // -1 if x is less than y, // 0 if x equals y, // +1 if x is greater than y. // // For floating-point types, a NaN is considered less than any non-NaN, // a NaN is considered equal to a NaN, and -0.0 is equal to 0.0. func Compare[T Ordered](x, y T) int { xNaN := isNaN(x) yNaN := isNaN(y) if xNaN && yNaN { return 0 } if xNaN || x < y { return -1 } if yNaN || x > y { return +1 } return 0 } // isNaN reports whether x is a NaN without requiring the math package. // This will always return false if T is not floating-point. func isNaN[T Ordered](x T) bool { return x != x } // Or returns the first of its arguments that is not equal to the zero value. // If no argument is non-zero, it returns the zero value. func Or[T comparable](vals ...T) T { var zero T for _, val := range vals { if val != zero { return val } } return zero } yaegi-0.16.1/stdlib/generic/go1_22_generic.go000066400000000000000000000014031460330105400206000ustar00rootroot00000000000000//go:build go1.22 // +build go1.22 package generic import _ "embed" //go:embed go1_22_cmp_cmp.go.txt var cmpSource string //go:embed go1_22_maps_maps.go.txt var mapsSource string //go:embed go1_22_slices_slices.go.txt var slicesSource string /* //go:embed go1_22_slices_sort.go.txt var slicesSource1 string //go:embed go1_22_slices_zsortanyfunc.go.txt var slicesSource2 string //go:embed go1_22_sync_oncefunc.go.txt var syncSource string //go:embed go1_22_sync_atomic_type.go.txt var syncAtomicSource string */ // Sources contains the list of generic packages source strings. var Sources = [...]string{ cmpSource, mapsSource, slicesSource, // FIXME(marc): support the following. // slicesSource1, // slicesSource2, // syncAtomicSource, // syncSource, } yaegi-0.16.1/stdlib/generic/go1_22_maps_maps.go.txt000066400000000000000000000034101460330105400217620ustar00rootroot00000000000000// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package maps defines various functions useful with maps of any type. package maps // Equal reports whether two maps contain the same key/value pairs. // Values are compared using ==. func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool { if len(m1) != len(m2) { return false } for k, v1 := range m1 { if v2, ok := m2[k]; !ok || v1 != v2 { return false } } return true } // EqualFunc is like Equal, but compares values using eq. // Keys are still compared with ==. func EqualFunc[M1 ~map[K]V1, M2 ~map[K]V2, K comparable, V1, V2 any](m1 M1, m2 M2, eq func(V1, V2) bool) bool { if len(m1) != len(m2) { return false } for k, v1 := range m1 { if v2, ok := m2[k]; !ok || !eq(v1, v2) { return false } } return true } // clone is implemented in the runtime package. func clone(m any) any { return m } // Clone returns a copy of m. This is a shallow clone: // the new keys and values are set using ordinary assignment. func Clone[M ~map[K]V, K comparable, V any](m M) M { // Preserve nil in case it matters. if m == nil { return nil } return clone(m).(M) } // Copy copies all key/value pairs in src adding them to dst. // When a key in src is already present in dst, // the value in dst will be overwritten by the value associated // with the key in src. func Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) { for k, v := range src { dst[k] = v } } // DeleteFunc deletes any key/value pairs from m for which del returns true. func DeleteFunc[M ~map[K]V, K comparable, V any](m M, del func(K, V) bool) { for k, v := range m { if del(k, v) { delete(m, k) } } } yaegi-0.16.1/stdlib/generic/go1_22_slices_slices.go.txt000066400000000000000000000332371460330105400226400ustar00rootroot00000000000000// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package slices defines various functions useful with slices of any type. package slices import ( "cmp" // TODO(marc) fix this. "unsafe" ) // Equal reports whether two slices are equal: the same length and all // elements equal. If the lengths are different, Equal returns false. // Otherwise, the elements are compared in increasing index order, and the // comparison stops at the first unequal pair. // Floating point NaNs are not considered equal. func Equal[S ~[]E, E comparable](s1, s2 S) bool { if len(s1) != len(s2) { return false } for i := range s1 { if s1[i] != s2[i] { return false } } return true } // EqualFunc reports whether two slices are equal using an equality // function on each pair of elements. If the lengths are different, // EqualFunc returns false. Otherwise, the elements are compared in // increasing index order, and the comparison stops at the first index // for which eq returns false. func EqualFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, eq func(E1, E2) bool) bool { if len(s1) != len(s2) { return false } for i, v1 := range s1 { v2 := s2[i] if !eq(v1, v2) { return false } } return true } // Compare compares the elements of s1 and s2, using [cmp.Compare] on each pair // of elements. The elements are compared sequentially, starting at index 0, // until one element is not equal to the other. // The result of comparing the first non-matching elements is returned. // If both slices are equal until one of them ends, the shorter slice is // considered less than the longer one. // The result is 0 if s1 == s2, -1 if s1 < s2, and +1 if s1 > s2. func Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int { for i, v1 := range s1 { if i >= len(s2) { return +1 } v2 := s2[i] if c := cmp.Compare(v1, v2); c != 0 { return c } } if len(s1) < len(s2) { return -1 } return 0 } // CompareFunc is like [Compare] but uses a custom comparison function on each // pair of elements. // The result is the first non-zero result of cmp; if cmp always // returns 0 the result is 0 if len(s1) == len(s2), -1 if len(s1) < len(s2), // and +1 if len(s1) > len(s2). func CompareFunc[S1 ~[]E1, S2 ~[]E2, E1, E2 any](s1 S1, s2 S2, cmp func(E1, E2) int) int { for i, v1 := range s1 { if i >= len(s2) { return +1 } v2 := s2[i] if c := cmp(v1, v2); c != 0 { return c } } if len(s1) < len(s2) { return -1 } return 0 } // Index returns the index of the first occurrence of v in s, // or -1 if not present. func Index[S ~[]E, E comparable](s S, v E) int { for i := range s { if v == s[i] { return i } } return -1 } // IndexFunc returns the first index i satisfying f(s[i]), // or -1 if none do. func IndexFunc[S ~[]E, E any](s S, f func(E) bool) int { for i := range s { if f(s[i]) { return i } } return -1 } // Contains reports whether v is present in s. func Contains[S ~[]E, E comparable](s S, v E) bool { return Index(s, v) >= 0 } // ContainsFunc reports whether at least one // element e of s satisfies f(e). func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool { return IndexFunc(s, f) >= 0 } // Insert inserts the values v... into s at index i, // returning the modified slice. // The elements at s[i:] are shifted up to make room. // In the returned slice r, r[i] == v[0], // and r[i+len(v)] == value originally at r[i]. // Insert panics if i is out of range. // This function is O(len(s) + len(v)). func Insert[S ~[]E, E any](s S, i int, v ...E) S { _ = s[i:] // bounds check m := len(v) if m == 0 { return s } n := len(s) if i == n { return append(s, v...) } if n+m > cap(s) { // Use append rather than make so that we bump the size of // the slice up to the next storage class. // This is what Grow does but we don't call Grow because // that might copy the values twice. s2 := append(s[:i], make(S, n+m-i)...) copy(s2[i:], v) copy(s2[i+m:], s[i:]) return s2 } s = s[:n+m] // before: // s: aaaaaaaabbbbccccccccdddd // ^ ^ ^ ^ // i i+m n n+m // after: // s: aaaaaaaavvvvbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // // a are the values that don't move in s. // v are the values copied in from v. // b and c are the values from s that are shifted up in index. // d are the values that get overwritten, never to be seen again. if !overlaps(v, s[i+m:]) { // Easy case - v does not overlap either the c or d regions. // (It might be in some of a or b, or elsewhere entirely.) // The data we copy up doesn't write to v at all, so just do it. copy(s[i+m:], s[i:]) // Now we have // s: aaaaaaaabbbbbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // Note the b values are duplicated. copy(s[i:], v) // Now we have // s: aaaaaaaavvvvbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // That's the result we want. return s } // The hard case - v overlaps c or d. We can't just shift up // the data because we'd move or clobber the values we're trying // to insert. // So instead, write v on top of d, then rotate. copy(s[n:], v) // Now we have // s: aaaaaaaabbbbccccccccvvvv // ^ ^ ^ ^ // i i+m n n+m rotateRight(s[i:], m) // Now we have // s: aaaaaaaavvvvbbbbcccccccc // ^ ^ ^ ^ // i i+m n n+m // That's the result we want. return s } // Delete removes the elements s[i:j] from s, returning the modified slice. // Delete panics if j > len(s) or s[i:j] is not a valid slice of s. // Delete is O(len(s)-i), so if many items must be deleted, it is better to // make a single call deleting them all together than to delete one at a time. // Delete zeroes the elements s[len(s)-(j-i):len(s)]. func Delete[S ~[]E, E any](s S, i, j int) S { _ = s[i:j:len(s)] // bounds check if i == j { return s } oldlen := len(s) s = append(s[:i], s[j:]...) clear(s[len(s):oldlen]) // zero/nil out the obsolete elements, for GC return s } // DeleteFunc removes any elements from s for which del returns true, // returning the modified slice. // DeleteFunc zeroes the elements between the new length and the original length. func DeleteFunc[S ~[]E, E any](s S, del func(E) bool) S { i := IndexFunc(s, del) if i == -1 { return s } // Don't start copying elements until we find one to delete. for j := i + 1; j < len(s); j++ { if v := s[j]; !del(v) { s[i] = v i++ } } clear(s[i:]) // zero/nil out the obsolete elements, for GC return s[:i] } // Replace replaces the elements s[i:j] by the given v, and returns the // modified slice. // Replace panics if j > len(s) or s[i:j] is not a valid slice of s. // When len(v) < (j-i), Replace zeroes the elements between the new length and the original length. func Replace[S ~[]E, E any](s S, i, j int, v ...E) S { _ = s[i:j] // bounds check if i == j { return Insert(s, i, v...) } if j == len(s) { return append(s[:i], v...) } tot := len(s[:i]) + len(v) + len(s[j:]) if tot > cap(s) { // Too big to fit, allocate and copy over. s2 := append(s[:i], make(S, tot-i)...) // See Insert copy(s2[i:], v) copy(s2[i+len(v):], s[j:]) return s2 } r := s[:tot] if i+len(v) <= j { // Easy, as v fits in the deleted portion. copy(r[i:], v) copy(r[i+len(v):], s[j:]) clear(s[tot:]) // zero/nil out the obsolete elements, for GC return r } // We are expanding (v is bigger than j-i). // The situation is something like this: // (example has i=4,j=8,len(s)=16,len(v)=6) // s: aaaaxxxxbbbbbbbbyy // ^ ^ ^ ^ // i j len(s) tot // a: prefix of s // x: deleted range // b: more of s // y: area to expand into if !overlaps(r[i+len(v):], v) { // Easy, as v is not clobbered by the first copy. copy(r[i+len(v):], s[j:]) copy(r[i:], v) return r } // This is a situation where we don't have a single place to which // we can copy v. Parts of it need to go to two different places. // We want to copy the prefix of v into y and the suffix into x, then // rotate |y| spots to the right. // // v[2:] v[:2] // | | // s: aaaavvvvbbbbbbbbvv // ^ ^ ^ ^ // i j len(s) tot // // If either of those two destinations don't alias v, then we're good. y := len(v) - (j - i) // length of y portion if !overlaps(r[i:j], v) { copy(r[i:j], v[y:]) copy(r[len(s):], v[:y]) rotateRight(r[i:], y) return r } if !overlaps(r[len(s):], v) { copy(r[len(s):], v[:y]) copy(r[i:j], v[y:]) rotateRight(r[i:], y) return r } // Now we know that v overlaps both x and y. // That means that the entirety of b is *inside* v. // So we don't need to preserve b at all; instead we // can copy v first, then copy the b part of v out of // v to the right destination. k := startIdx(v, s[j:]) copy(r[i:], v) copy(r[i+len(v):], r[i+k:]) return r } // Clone returns a copy of the slice. // The elements are copied using assignment, so this is a shallow clone. func Clone[S ~[]E, E any](s S) S { // The s[:0:0] preserves nil in case it matters. return append(s[:0:0], s...) } // Compact replaces consecutive runs of equal elements with a single copy. // This is like the uniq command found on Unix. // Compact modifies the contents of the slice s and returns the modified slice, // which may have a smaller length. // Compact zeroes the elements between the new length and the original length. func Compact[S ~[]E, E comparable](s S) S { if len(s) < 2 { return s } i := 1 for k := 1; k < len(s); k++ { if s[k] != s[k-1] { if i != k { s[i] = s[k] } i++ } } clear(s[i:]) // zero/nil out the obsolete elements, for GC return s[:i] } // CompactFunc is like [Compact] but uses an equality function to compare elements. // For runs of elements that compare equal, CompactFunc keeps the first one. // CompactFunc zeroes the elements between the new length and the original length. func CompactFunc[S ~[]E, E any](s S, eq func(E, E) bool) S { if len(s) < 2 { return s } i := 1 for k := 1; k < len(s); k++ { if !eq(s[k], s[k-1]) { if i != k { s[i] = s[k] } i++ } } clear(s[i:]) // zero/nil out the obsolete elements, for GC return s[:i] } // Grow increases the slice's capacity, if necessary, to guarantee space for // another n elements. After Grow(n), at least n elements can be appended // to the slice without another allocation. If n is negative or too large to // allocate the memory, Grow panics. func Grow[S ~[]E, E any](s S, n int) S { if n < 0 { panic("cannot be negative") } if n -= cap(s) - len(s); n > 0 { s = append(s[:cap(s)], make([]E, n)...)[:len(s)] } return s } // Clip removes unused capacity from the slice, returning s[:len(s):len(s)]. func Clip[S ~[]E, E any](s S) S { return s[:len(s):len(s)] } // Rotation algorithm explanation: // // rotate left by 2 // start with // 0123456789 // split up like this // 01 234567 89 // swap first 2 and last 2 // 89 234567 01 // join first parts // 89234567 01 // recursively rotate first left part by 2 // 23456789 01 // join at the end // 2345678901 // // rotate left by 8 // start with // 0123456789 // split up like this // 01 234567 89 // swap first 2 and last 2 // 89 234567 01 // join last parts // 89 23456701 // recursively rotate second part left by 6 // 89 01234567 // join at the end // 8901234567 // TODO: There are other rotate algorithms. // This algorithm has the desirable property that it moves each element exactly twice. // The triple-reverse algorithm is simpler and more cache friendly, but takes more writes. // The follow-cycles algorithm can be 1-write but it is not very cache friendly. // rotateLeft rotates b left by n spaces. // s_final[i] = s_orig[i+r], wrapping around. func rotateLeft[E any](s []E, r int) { for r != 0 && r != len(s) { if r*2 <= len(s) { swap(s[:r], s[len(s)-r:]) s = s[:len(s)-r] } else { swap(s[:len(s)-r], s[r:]) s, r = s[len(s)-r:], r*2-len(s) } } } func rotateRight[E any](s []E, r int) { rotateLeft(s, len(s)-r) } // swap swaps the contents of x and y. x and y must be equal length and disjoint. func swap[E any](x, y []E) { for i := 0; i < len(x); i++ { x[i], y[i] = y[i], x[i] } } // overlaps reports whether the memory ranges a[0:len(a)] and b[0:len(b)] overlap. func overlaps[E any](a, b []E) bool { return false /* TODO(marc): restore the following if len(a) == 0 || len(b) == 0 { return false } elemSize := unsafe.Sizeof(a[0]) if elemSize == 0 { return false } // TODO: use a runtime/unsafe facility once one becomes available. See issue 12445. // Also see crypto/internal/alias/alias.go:AnyOverlap return uintptr(unsafe.Pointer(&a[0])) <= uintptr(unsafe.Pointer(&b[len(b)-1]))+(elemSize-1) && uintptr(unsafe.Pointer(&b[0])) <= uintptr(unsafe.Pointer(&a[len(a)-1]))+(elemSize-1) */ } // startIdx returns the index in haystack where the needle starts. // prerequisite: the needle must be aliased entirely inside the haystack. func startIdx[E any](haystack, needle []E) int { p := &needle[0] for i := range haystack { if p == &haystack[i] { return i } } // TODO: what if the overlap is by a non-integral number of Es? panic("needle not found") } // Reverse reverses the elements of the slice in place. func Reverse[S ~[]E, E any](s S) { for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { s[i], s[j] = s[j], s[i] } } // Concat returns a new slice concatenating the passed in slices. func Concat[S ~[]E, E any](slices ...S) S { size := 0 for _, s := range slices { size += len(s) if size < 0 { panic("len out of range") } } newslice := Grow[S](nil, size) for _, s := range slices { newslice = append(newslice, s...) } return newslice } yaegi-0.16.1/stdlib/generic/go1_22_slices_sort.go.txt000066400000000000000000000135201460330105400223360ustar00rootroot00000000000000// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:generate go run $GOROOT/src/sort/gen_sort_variants.go -generic package slices import ( "cmp" "math/bits" ) // Sort sorts a slice of any ordered type in ascending order. // When sorting floating-point numbers, NaNs are ordered before other values. func Sort[S ~[]E, E cmp.Ordered](x S) { n := len(x) pdqsortOrdered(x, 0, n, bits.Len(uint(n))) } // SortFunc sorts the slice x in ascending order as determined by the cmp // function. This sort is not guaranteed to be stable. // cmp(a, b) should return a negative number when a < b, a positive number when // a > b and zero when a == b. // // SortFunc requires that cmp is a strict weak ordering. // See https://en.wikipedia.org/wiki/Weak_ordering#Strict_weak_orderings. func SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) { n := len(x) pdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp) } // SortStableFunc sorts the slice x while keeping the original order of equal // elements, using cmp to compare elements in the same way as [SortFunc]. func SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) { stableCmpFunc(x, len(x), cmp) } // IsSorted reports whether x is sorted in ascending order. func IsSorted[S ~[]E, E cmp.Ordered](x S) bool { for i := len(x) - 1; i > 0; i-- { if cmp.Less(x[i], x[i-1]) { return false } } return true } // IsSortedFunc reports whether x is sorted in ascending order, with cmp as the // comparison function as defined by [SortFunc]. func IsSortedFunc[S ~[]E, E any](x S, cmp func(a, b E) int) bool { for i := len(x) - 1; i > 0; i-- { if cmp(x[i], x[i-1]) < 0 { return false } } return true } // Min returns the minimal value in x. It panics if x is empty. // For floating-point numbers, Min propagates NaNs (any NaN value in x // forces the output to be NaN). func Min[S ~[]E, E cmp.Ordered](x S) E { if len(x) < 1 { panic("slices.Min: empty list") } m := x[0] for i := 1; i < len(x); i++ { m = min(m, x[i]) } return m } // MinFunc returns the minimal value in x, using cmp to compare elements. // It panics if x is empty. If there is more than one minimal element // according to the cmp function, MinFunc returns the first one. func MinFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E { if len(x) < 1 { panic("slices.MinFunc: empty list") } m := x[0] for i := 1; i < len(x); i++ { if cmp(x[i], m) < 0 { m = x[i] } } return m } // Max returns the maximal value in x. It panics if x is empty. // For floating-point E, Max propagates NaNs (any NaN value in x // forces the output to be NaN). func Max[S ~[]E, E cmp.Ordered](x S) E { if len(x) < 1 { panic("slices.Max: empty list") } m := x[0] for i := 1; i < len(x); i++ { m = max(m, x[i]) } return m } // MaxFunc returns the maximal value in x, using cmp to compare elements. // It panics if x is empty. If there is more than one maximal element // according to the cmp function, MaxFunc returns the first one. func MaxFunc[S ~[]E, E any](x S, cmp func(a, b E) int) E { if len(x) < 1 { panic("slices.MaxFunc: empty list") } m := x[0] for i := 1; i < len(x); i++ { if cmp(x[i], m) > 0 { m = x[i] } } return m } // BinarySearch searches for target in a sorted slice and returns the position // where target is found, or the position where target would appear in the // sort order; it also returns a bool saying whether the target is really found // in the slice. The slice must be sorted in increasing order. func BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) { // Inlining is faster than calling BinarySearchFunc with a lambda. n := len(x) // Define x[-1] < target and x[n] >= target. // Invariant: x[i-1] < target, x[j] >= target. i, j := 0, n for i < j { h := int(uint(i+j) >> 1) // avoid overflow when computing h // i ≤ h < j if cmp.Less(x[h], target) { i = h + 1 // preserves x[i-1] < target } else { j = h // preserves x[j] >= target } } // i == j, x[i-1] < target, and x[j] (= x[i]) >= target => answer is i. return i, i < n && (x[i] == target || (isNaN(x[i]) && isNaN(target))) } // BinarySearchFunc works like [BinarySearch], but uses a custom comparison // function. The slice must be sorted in increasing order, where "increasing" // is defined by cmp. cmp should return 0 if the slice element matches // the target, a negative number if the slice element precedes the target, // or a positive number if the slice element follows the target. // cmp must implement the same ordering as the slice, such that if // cmp(a, t) < 0 and cmp(b, t) >= 0, then a must precede b in the slice. func BinarySearchFunc[S ~[]E, E, T any](x S, target T, cmp func(E, T) int) (int, bool) { n := len(x) // Define cmp(x[-1], target) < 0 and cmp(x[n], target) >= 0 . // Invariant: cmp(x[i - 1], target) < 0, cmp(x[j], target) >= 0. i, j := 0, n for i < j { h := int(uint(i+j) >> 1) // avoid overflow when computing h // i ≤ h < j if cmp(x[h], target) < 0 { i = h + 1 // preserves cmp(x[i - 1], target) < 0 } else { j = h // preserves cmp(x[j], target) >= 0 } } // i == j, cmp(x[i-1], target) < 0, and cmp(x[j], target) (= cmp(x[i], target)) >= 0 => answer is i. return i, i < n && cmp(x[i], target) == 0 } type sortedHint int // hint for pdqsort when choosing the pivot const ( unknownHint sortedHint = iota increasingHint decreasingHint ) // xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf type xorshift uint64 func (r *xorshift) Next() uint64 { *r ^= *r << 13 *r ^= *r >> 17 *r ^= *r << 5 return uint64(*r) } func nextPowerOfTwo(length int) uint { return 1 << bits.Len(uint(length)) } // isNaN reports whether x is a NaN without requiring the math package. // This will always return false if T is not floating-point. func isNaN[T cmp.Ordered](x T) bool { return x != x } yaegi-0.16.1/stdlib/generic/go1_22_slices_zsortanyfunc.go.txt000066400000000000000000000314151460330105400241170ustar00rootroot00000000000000// Code generated by gen_sort_variants.go; DO NOT EDIT. // Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package slices // insertionSortCmpFunc sorts data[a:b] using insertion sort. func insertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { for i := a + 1; i < b; i++ { for j := i; j > a && (cmp(data[j], data[j-1]) < 0); j-- { data[j], data[j-1] = data[j-1], data[j] } } } // siftDownCmpFunc implements the heap property on data[lo:hi]. // first is an offset into the array where the root of the heap lies. func siftDownCmpFunc[E any](data []E, lo, hi, first int, cmp func(a, b E) int) { root := lo for { child := 2*root + 1 if child >= hi { break } if child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) { child++ } if !(cmp(data[first+root], data[first+child]) < 0) { return } data[first+root], data[first+child] = data[first+child], data[first+root] root = child } } func heapSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { first := a lo := 0 hi := b - a // Build heap with greatest element at top. for i := (hi - 1) / 2; i >= 0; i-- { siftDownCmpFunc(data, i, hi, first, cmp) } // Pop elements, largest first, into end of data. for i := hi - 1; i >= 0; i-- { data[first], data[first+i] = data[first+i], data[first] siftDownCmpFunc(data, lo, i, first, cmp) } } // pdqsortCmpFunc sorts data[a:b]. // The algorithm based on pattern-defeating quicksort(pdqsort), but without the optimizations from BlockQuicksort. // pdqsort paper: https://arxiv.org/pdf/2106.05123.pdf // C++ implementation: https://github.com/orlp/pdqsort // Rust implementation: https://docs.rs/pdqsort/latest/pdqsort/ // limit is the number of allowed bad (very unbalanced) pivots before falling back to heapsort. func pdqsortCmpFunc[E any](data []E, a, b, limit int, cmp func(a, b E) int) { const maxInsertion = 12 var ( wasBalanced = true // whether the last partitioning was reasonably balanced wasPartitioned = true // whether the slice was already partitioned ) for { length := b - a if length <= maxInsertion { insertionSortCmpFunc(data, a, b, cmp) return } // Fall back to heapsort if too many bad choices were made. if limit == 0 { heapSortCmpFunc(data, a, b, cmp) return } // If the last partitioning was imbalanced, we need to breaking patterns. if !wasBalanced { breakPatternsCmpFunc(data, a, b, cmp) limit-- } pivot, hint := choosePivotCmpFunc(data, a, b, cmp) if hint == decreasingHint { reverseRangeCmpFunc(data, a, b, cmp) // The chosen pivot was pivot-a elements after the start of the array. // After reversing it is pivot-a elements before the end of the array. // The idea came from Rust's implementation. pivot = (b - 1) - (pivot - a) hint = increasingHint } // The slice is likely already sorted. if wasBalanced && wasPartitioned && hint == increasingHint { if partialInsertionSortCmpFunc(data, a, b, cmp) { return } } // Probably the slice contains many duplicate elements, partition the slice into // elements equal to and elements greater than the pivot. if a > 0 && !(cmp(data[a-1], data[pivot]) < 0) { mid := partitionEqualCmpFunc(data, a, b, pivot, cmp) a = mid continue } mid, alreadyPartitioned := partitionCmpFunc(data, a, b, pivot, cmp) wasPartitioned = alreadyPartitioned leftLen, rightLen := mid-a, b-mid balanceThreshold := length / 8 if leftLen < rightLen { wasBalanced = leftLen >= balanceThreshold pdqsortCmpFunc(data, a, mid, limit, cmp) a = mid + 1 } else { wasBalanced = rightLen >= balanceThreshold pdqsortCmpFunc(data, mid+1, b, limit, cmp) b = mid } } } // partitionCmpFunc does one quicksort partition. // Let p = data[pivot] // Moves elements in data[a:b] around, so that data[i]

=p for inewpivot. // On return, data[newpivot] = p func partitionCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int, alreadyPartitioned bool) { data[a], data[pivot] = data[pivot], data[a] i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned for i <= j && (cmp(data[i], data[a]) < 0) { i++ } for i <= j && !(cmp(data[j], data[a]) < 0) { j-- } if i > j { data[j], data[a] = data[a], data[j] return j, true } data[i], data[j] = data[j], data[i] i++ j-- for { for i <= j && (cmp(data[i], data[a]) < 0) { i++ } for i <= j && !(cmp(data[j], data[a]) < 0) { j-- } if i > j { break } data[i], data[j] = data[j], data[i] i++ j-- } data[j], data[a] = data[a], data[j] return j, false } // partitionEqualCmpFunc partitions data[a:b] into elements equal to data[pivot] followed by elements greater than data[pivot]. // It assumed that data[a:b] does not contain elements smaller than the data[pivot]. func partitionEqualCmpFunc[E any](data []E, a, b, pivot int, cmp func(a, b E) int) (newpivot int) { data[a], data[pivot] = data[pivot], data[a] i, j := a+1, b-1 // i and j are inclusive of the elements remaining to be partitioned for { for i <= j && !(cmp(data[a], data[i]) < 0) { i++ } for i <= j && (cmp(data[a], data[j]) < 0) { j-- } if i > j { break } data[i], data[j] = data[j], data[i] i++ j-- } return i } // partialInsertionSortCmpFunc partially sorts a slice, returns true if the slice is sorted at the end. func partialInsertionSortCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) bool { const ( maxSteps = 5 // maximum number of adjacent out-of-order pairs that will get shifted shortestShifting = 50 // don't shift any elements on short arrays ) i := a + 1 for j := 0; j < maxSteps; j++ { for i < b && !(cmp(data[i], data[i-1]) < 0) { i++ } if i == b { return true } if b-a < shortestShifting { return false } data[i], data[i-1] = data[i-1], data[i] // Shift the smaller one to the left. if i-a >= 2 { for j := i - 1; j >= 1; j-- { if !(cmp(data[j], data[j-1]) < 0) { break } data[j], data[j-1] = data[j-1], data[j] } } // Shift the greater one to the right. if b-i >= 2 { for j := i + 1; j < b; j++ { if !(cmp(data[j], data[j-1]) < 0) { break } data[j], data[j-1] = data[j-1], data[j] } } } return false } // breakPatternsCmpFunc scatters some elements around in an attempt to break some patterns // that might cause imbalanced partitions in quicksort. func breakPatternsCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { length := b - a if length >= 8 { random := xorshift(length) modulus := nextPowerOfTwo(length) for idx := a + (length/4)*2 - 1; idx <= a+(length/4)*2+1; idx++ { other := int(uint(random.Next()) & (modulus - 1)) if other >= length { other -= length } data[idx], data[a+other] = data[a+other], data[idx] } } } // choosePivotCmpFunc chooses a pivot in data[a:b]. // // [0,8): chooses a static pivot. // [8,shortestNinther): uses the simple median-of-three method. // [shortestNinther,∞): uses the Tukey ninther method. func choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) { const ( shortestNinther = 50 maxSwaps = 4 * 3 ) l := b - a var ( swaps int i = a + l/4*1 j = a + l/4*2 k = a + l/4*3 ) if l >= 8 { if l >= shortestNinther { // Tukey ninther method, the idea came from Rust's implementation. i = medianAdjacentCmpFunc(data, i, &swaps, cmp) j = medianAdjacentCmpFunc(data, j, &swaps, cmp) k = medianAdjacentCmpFunc(data, k, &swaps, cmp) } // Find the median among i, j, k and stores it into j. j = medianCmpFunc(data, i, j, k, &swaps, cmp) } switch swaps { case 0: return j, increasingHint case maxSwaps: return j, decreasingHint default: return j, unknownHint } } // order2CmpFunc returns x,y where data[x] <= data[y], where x,y=a,b or x,y=b,a. func order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) { if cmp(data[b], data[a]) < 0 { *swaps++ return b, a } return a, b } // medianCmpFunc returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c. func medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int { a, b = order2CmpFunc(data, a, b, swaps, cmp) b, c = order2CmpFunc(data, b, c, swaps, cmp) a, b = order2CmpFunc(data, a, b, swaps, cmp) return b } // medianAdjacentCmpFunc finds the median of data[a - 1], data[a], data[a + 1] and stores the index into a. func medianAdjacentCmpFunc[E any](data []E, a int, swaps *int, cmp func(a, b E) int) int { return medianCmpFunc(data, a-1, a, a+1, swaps, cmp) } func reverseRangeCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) { i := a j := b - 1 for i < j { data[i], data[j] = data[j], data[i] i++ j-- } } func swapRangeCmpFunc[E any](data []E, a, b, n int, cmp func(a, b E) int) { for i := 0; i < n; i++ { data[a+i], data[b+i] = data[b+i], data[a+i] } } func stableCmpFunc[E any](data []E, n int, cmp func(a, b E) int) { blockSize := 20 // must be > 0 a, b := 0, blockSize for b <= n { insertionSortCmpFunc(data, a, b, cmp) a = b b += blockSize } insertionSortCmpFunc(data, a, n, cmp) for blockSize < n { a, b = 0, 2*blockSize for b <= n { symMergeCmpFunc(data, a, a+blockSize, b, cmp) a = b b += 2 * blockSize } if m := a + blockSize; m < n { symMergeCmpFunc(data, a, m, n, cmp) } blockSize *= 2 } } // symMergeCmpFunc merges the two sorted subsequences data[a:m] and data[m:b] using // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in // Computer Science, pages 714-723. Springer, 2004. // // Let M = m-a and N = b-n. Wolog M < N. // The recursion depth is bound by ceil(log(N+M)). // The algorithm needs O(M*log(N/M + 1)) calls to data.Less. // The algorithm needs O((M+N)*log(M)) calls to data.Swap. // // The paper gives O((M+N)*log(M)) as the number of assignments assuming a // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation // in the paper carries through for Swap operations, especially as the block // swapping rotate uses only O(M+N) Swaps. // // symMerge assumes non-degenerate arguments: a < m && m < b. // Having the caller check this condition eliminates many leaf recursion calls, // which improves performance. func symMergeCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) { // Avoid unnecessary recursions of symMerge // by direct insertion of data[a] into data[m:b] // if data[a:m] only contains one element. if m-a == 1 { // Use binary search to find the lowest index i // such that data[i] >= data[a] for m <= i < b. // Exit the search loop with i == b in case no such index exists. i := m j := b for i < j { h := int(uint(i+j) >> 1) if cmp(data[h], data[a]) < 0 { i = h + 1 } else { j = h } } // Swap values until data[a] reaches the position before i. for k := a; k < i-1; k++ { data[k], data[k+1] = data[k+1], data[k] } return } // Avoid unnecessary recursions of symMerge // by direct insertion of data[m] into data[a:m] // if data[m:b] only contains one element. if b-m == 1 { // Use binary search to find the lowest index i // such that data[i] > data[m] for a <= i < m. // Exit the search loop with i == m in case no such index exists. i := a j := m for i < j { h := int(uint(i+j) >> 1) if !(cmp(data[m], data[h]) < 0) { i = h + 1 } else { j = h } } // Swap values until data[m] reaches the position i. for k := m; k > i; k-- { data[k], data[k-1] = data[k-1], data[k] } return } mid := int(uint(a+b) >> 1) n := mid + m var start, r int if m > mid { start = n - b r = mid } else { start = a r = m } p := n - 1 for start < r { c := int(uint(start+r) >> 1) if !(cmp(data[p-c], data[c]) < 0) { start = c + 1 } else { r = c } } end := n - start if start < m && m < end { rotateCmpFunc(data, start, m, end, cmp) } if a < start && start < mid { symMergeCmpFunc(data, a, start, mid, cmp) } if mid < end && end < b { symMergeCmpFunc(data, mid, end, b, cmp) } } // rotateCmpFunc rotates two consecutive blocks u = data[a:m] and v = data[m:b] in data: // Data of the form 'x u v y' is changed to 'x v u y'. // rotate performs at most b-a many calls to data.Swap, // and it assumes non-degenerate arguments: a < m && m < b. func rotateCmpFunc[E any](data []E, a, m, b int, cmp func(a, b E) int) { i := m - a j := b - m for i != j { if i > j { swapRangeCmpFunc(data, m-i, m, j, cmp) i -= j } else { swapRangeCmpFunc(data, m-i, m+j-i, i, cmp) j -= i } } // i == j swapRangeCmpFunc(data, m-i, m, i, cmp) } yaegi-0.16.1/stdlib/generic/go1_22_sync_atomic_type.go.txt000066400000000000000000000150171460330105400233610ustar00rootroot00000000000000// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package atomic import "unsafe" // A Bool is an atomic boolean value. // The zero value is false. type Bool struct { _ noCopy v uint32 } // Load atomically loads and returns the value stored in x. func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 } // Store atomically stores val into x. func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) } // Swap atomically stores new into x and returns the previous value. func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 } // CompareAndSwap executes the compare-and-swap operation for the boolean value x. func (x *Bool) CompareAndSwap(old, new bool) (swapped bool) { return CompareAndSwapUint32(&x.v, b32(old), b32(new)) } // b32 returns a uint32 0 or 1 representing b. func b32(b bool) uint32 { if b { return 1 } return 0 } // For testing *Pointer[T]'s methods can be inlined. // Keep in sync with cmd/compile/internal/test/inl_test.go:TestIntendedInlining. var _ = &Pointer[int]{} // A Pointer is an atomic pointer of type *T. The zero value is a nil *T. type Pointer[T any] struct { // Mention *T in a field to disallow conversion between Pointer types. // See go.dev/issue/56603 for more details. // Use *T, not T, to avoid spurious recursive type definition errors. _ [0]*T _ noCopy v unsafe.Pointer } // Load atomically loads and returns the value stored in x. func (x *Pointer[T]) Load() *T { return (*T)(LoadPointer(&x.v)) } // Store atomically stores val into x. func (x *Pointer[T]) Store(val *T) { StorePointer(&x.v, unsafe.Pointer(val)) } // Swap atomically stores new into x and returns the previous value. func (x *Pointer[T]) Swap(new *T) (old *T) { return (*T)(SwapPointer(&x.v, unsafe.Pointer(new))) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Pointer[T]) CompareAndSwap(old, new *T) (swapped bool) { return CompareAndSwapPointer(&x.v, unsafe.Pointer(old), unsafe.Pointer(new)) } // An Int32 is an atomic int32. The zero value is zero. type Int32 struct { _ noCopy v int32 } // Load atomically loads and returns the value stored in x. func (x *Int32) Load() int32 { return LoadInt32(&x.v) } // Store atomically stores val into x. func (x *Int32) Store(val int32) { StoreInt32(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Int32) Swap(new int32) (old int32) { return SwapInt32(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Int32) CompareAndSwap(old, new int32) (swapped bool) { return CompareAndSwapInt32(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) } // An Int64 is an atomic int64. The zero value is zero. type Int64 struct { _ noCopy _ align64 v int64 } // Load atomically loads and returns the value stored in x. func (x *Int64) Load() int64 { return LoadInt64(&x.v) } // Store atomically stores val into x. func (x *Int64) Store(val int64) { StoreInt64(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Int64) Swap(new int64) (old int64) { return SwapInt64(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Int64) CompareAndSwap(old, new int64) (swapped bool) { return CompareAndSwapInt64(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) } // A Uint32 is an atomic uint32. The zero value is zero. type Uint32 struct { _ noCopy v uint32 } // Load atomically loads and returns the value stored in x. func (x *Uint32) Load() uint32 { return LoadUint32(&x.v) } // Store atomically stores val into x. func (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Uint32) Swap(new uint32) (old uint32) { return SwapUint32(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool) { return CompareAndSwapUint32(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Uint32) Add(delta uint32) (new uint32) { return AddUint32(&x.v, delta) } // A Uint64 is an atomic uint64. The zero value is zero. type Uint64 struct { _ noCopy _ align64 v uint64 } // Load atomically loads and returns the value stored in x. func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) } // Store atomically stores val into x. func (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Uint64) Swap(new uint64) (old uint64) { return SwapUint64(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Uint64) CompareAndSwap(old, new uint64) (swapped bool) { return CompareAndSwapUint64(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Uint64) Add(delta uint64) (new uint64) { return AddUint64(&x.v, delta) } // A Uintptr is an atomic uintptr. The zero value is zero. type Uintptr struct { _ noCopy v uintptr } // Load atomically loads and returns the value stored in x. func (x *Uintptr) Load() uintptr { return LoadUintptr(&x.v) } // Store atomically stores val into x. func (x *Uintptr) Store(val uintptr) { StoreUintptr(&x.v, val) } // Swap atomically stores new into x and returns the previous value. func (x *Uintptr) Swap(new uintptr) (old uintptr) { return SwapUintptr(&x.v, new) } // CompareAndSwap executes the compare-and-swap operation for x. func (x *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool) { return CompareAndSwapUintptr(&x.v, old, new) } // Add atomically adds delta to x and returns the new value. func (x *Uintptr) Add(delta uintptr) (new uintptr) { return AddUintptr(&x.v, delta) } // noCopy may be added to structs which must not be copied // after the first use. // // See https://golang.org/issues/8005#issuecomment-190753527 // for details. // // Note that it must not be embedded, due to the Lock and Unlock methods. type noCopy struct{} // Lock is a no-op used by -copylocks checker from `go vet`. func (*noCopy) Lock() {} func (*noCopy) Unlock() {} // align64 may be added to structs that must be 64-bit aligned. // This struct is recognized by a special case in the compiler // and will not work if copied to any other package. type align64 struct{} yaegi-0.16.1/stdlib/generic/go1_22_sync_oncefunc.go.txt000066400000000000000000000037751460330105400226540ustar00rootroot00000000000000// Copyright 2022 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sync // OnceFunc returns a function that invokes f only once. The returned function // may be called concurrently. // // If f panics, the returned function will panic with the same value on every call. func OnceFunc(f func()) func() { var ( once Once valid bool p any ) // Construct the inner closure just once to reduce costs on the fast path. g := func() { defer func() { p = recover() if !valid { // Re-panic immediately so on the first call the user gets a // complete stack trace into f. panic(p) } }() f() f = nil // Do not keep f alive after invoking it. valid = true // Set only if f does not panic. } return func() { once.Do(g) if !valid { panic(p) } } } // OnceValue returns a function that invokes f only once and returns the value // returned by f. The returned function may be called concurrently. // // If f panics, the returned function will panic with the same value on every call. func OnceValue[T any](f func() T) func() T { var ( once Once valid bool p any result T ) g := func() { defer func() { p = recover() if !valid { panic(p) } }() result = f() f = nil valid = true } return func() T { once.Do(g) if !valid { panic(p) } return result } } // OnceValues returns a function that invokes f only once and returns the values // returned by f. The returned function may be called concurrently. // // If f panics, the returned function will panic with the same value on every call. func OnceValues[T1, T2 any](f func() (T1, T2)) func() (T1, T2) { var ( once Once valid bool p any r1 T1 r2 T2 ) g := func() { defer func() { p = recover() if !valid { panic(p) } }() r1, r2 = f() f = nil valid = true } return func() (T1, T2) { once.Do(g) if !valid { panic(p) } return r1, r2 } } yaegi-0.16.1/stdlib/go1_21_archive_tar.go000066400000000000000000000047201460330105400200430ustar00rootroot00000000000000// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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(), "ErrInsecurePath": reflect.ValueOf(&tar.ErrInsecurePath).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)), } } yaegi-0.16.1/stdlib/go1_21_archive_zip.go000066400000000000000000000027101460330105400200540ustar00rootroot00000000000000// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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(), "ErrInsecurePath": reflect.ValueOf(&zip.ErrInsecurePath).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)), } } yaegi-0.16.1/stdlib/go1_21_bufio.go000066400000000000000000000037071460330105400166640ustar00rootroot00000000000000// Code generated by 'yaegi extract bufio'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_bytes.go000066400000000000000000000070071460330105400167030ustar00rootroot00000000000000// Code generated by 'yaegi extract bytes'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "bytes" "go/constant" "go/token" "reflect" ) func init() { Symbols["bytes/bytes"] = map[string]reflect.Value{ // function, constant and variable definitions "Clone": reflect.ValueOf(bytes.Clone), "Compare": reflect.ValueOf(bytes.Compare), "Contains": reflect.ValueOf(bytes.Contains), "ContainsAny": reflect.ValueOf(bytes.ContainsAny), "ContainsFunc": reflect.ValueOf(bytes.ContainsFunc), "ContainsRune": reflect.ValueOf(bytes.ContainsRune), "Count": reflect.ValueOf(bytes.Count), "Cut": reflect.ValueOf(bytes.Cut), "CutPrefix": reflect.ValueOf(bytes.CutPrefix), "CutSuffix": reflect.ValueOf(bytes.CutSuffix), "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)), } } yaegi-0.16.1/stdlib/go1_21_cmp.go000066400000000000000000000003271460330105400163320ustar00rootroot00000000000000// Code generated by 'yaegi extract cmp'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "reflect" ) func init() { Symbols["cmp/cmp"] = map[string]reflect.Value{} } yaegi-0.16.1/stdlib/go1_21_compress_bzip2.go000066400000000000000000000007011460330105400205100ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_compress_flate.go000066400000000000000000000044221460330105400205610ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_compress_gzip.go000066400000000000000000000023341460330105400204370ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_compress_lzw.go000066400000000000000000000012051460330105400202760ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_compress_zlib.go000066400000000000000000000033641460330105400204320ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_container_heap.go000066400000000000000000000024201460330105400205260ustar00rootroot00000000000000// Code generated by 'yaegi extract container/heap'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_container_list.go000066400000000000000000000007231460330105400205700ustar00rootroot00000000000000// Code generated by 'yaegi extract container/list'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_container_ring.go000066400000000000000000000006341460330105400205550ustar00rootroot00000000000000// Code generated by 'yaegi extract container/ring'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_context.go000066400000000000000000000037601460330105400172430ustar00rootroot00000000000000// Code generated by 'yaegi extract context'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "context" "reflect" "time" ) func init() { Symbols["context/context"] = map[string]reflect.Value{ // function, constant and variable definitions "AfterFunc": reflect.ValueOf(context.AfterFunc), "Background": reflect.ValueOf(context.Background), "Canceled": reflect.ValueOf(&context.Canceled).Elem(), "Cause": reflect.ValueOf(context.Cause), "DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(), "TODO": reflect.ValueOf(context.TODO), "WithCancel": reflect.ValueOf(context.WithCancel), "WithCancelCause": reflect.ValueOf(context.WithCancelCause), "WithDeadline": reflect.ValueOf(context.WithDeadline), "WithDeadlineCause": reflect.ValueOf(context.WithDeadlineCause), "WithTimeout": reflect.ValueOf(context.WithTimeout), "WithTimeoutCause": reflect.ValueOf(context.WithTimeoutCause), "WithValue": reflect.ValueOf(context.WithValue), "WithoutCancel": reflect.ValueOf(context.WithoutCancel), // type definitions "CancelCauseFunc": reflect.ValueOf((*context.CancelCauseFunc)(nil)), "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) } yaegi-0.16.1/stdlib/go1_21_crypto.go000066400000000000000000000073011460330105400170720ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_crypto_aes.go000066400000000000000000000010221460330105400177140ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_cipher.go000066400000000000000000000067261460330105400204360ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_crypto_des.go000066400000000000000000000011441460330105400177240ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_dsa.go000066400000000000000000000021121460330105400177140ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_ecdh.go000066400000000000000000000025641460330105400200630ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/ecdh'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "crypto/ecdh" "io" "reflect" ) func init() { Symbols["crypto/ecdh/ecdh"] = map[string]reflect.Value{ // function, constant and variable definitions "P256": reflect.ValueOf(ecdh.P256), "P384": reflect.ValueOf(ecdh.P384), "P521": reflect.ValueOf(ecdh.P521), "X25519": reflect.ValueOf(ecdh.X25519), // type definitions "Curve": reflect.ValueOf((*ecdh.Curve)(nil)), "PrivateKey": reflect.ValueOf((*ecdh.PrivateKey)(nil)), "PublicKey": reflect.ValueOf((*ecdh.PublicKey)(nil)), // interface wrapper definitions "_Curve": reflect.ValueOf((*_crypto_ecdh_Curve)(nil)), } } // _crypto_ecdh_Curve is an interface wrapper for Curve type type _crypto_ecdh_Curve struct { IValue interface{} WGenerateKey func(rand io.Reader) (*ecdh.PrivateKey, error) WNewPrivateKey func(key []byte) (*ecdh.PrivateKey, error) WNewPublicKey func(key []byte) (*ecdh.PublicKey, error) } func (W _crypto_ecdh_Curve) GenerateKey(rand io.Reader) (*ecdh.PrivateKey, error) { return W.WGenerateKey(rand) } func (W _crypto_ecdh_Curve) NewPrivateKey(key []byte) (*ecdh.PrivateKey, error) { return W.WNewPrivateKey(key) } func (W _crypto_ecdh_Curve) NewPublicKey(key []byte) (*ecdh.PublicKey, error) { return W.WNewPublicKey(key) } yaegi-0.16.1/stdlib/go1_21_crypto_ecdsa.go000066400000000000000000000012631460330105400202320ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_ed25519.go000066400000000000000000000022411460330105400201460ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "VerifyWithOptions": reflect.ValueOf(ed25519.VerifyWithOptions), // type definitions "Options": reflect.ValueOf((*ed25519.Options)(nil)), "PrivateKey": reflect.ValueOf((*ed25519.PrivateKey)(nil)), "PublicKey": reflect.ValueOf((*ed25519.PublicKey)(nil)), } } yaegi-0.16.1/stdlib/go1_21_crypto_elliptic.go000066400000000000000000000045151460330105400207630ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_crypto_hmac.go000066400000000000000000000005701460330105400200630ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_crypto_md5.go000066400000000000000000000010571460330105400176410ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_crypto_rand.go000066400000000000000000000007241460330105400201000ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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(), } } yaegi-0.16.1/stdlib/go1_21_crypto_rc4.go000066400000000000000000000007401460330105400176420ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_rsa.go000066400000000000000000000037271460330105400177470ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_sha1.go000066400000000000000000000010651460330105400200070ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_crypto_sha256.go000066400000000000000000000013601460330105400201610ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_crypto_sha512.go000066400000000000000000000021461460330105400201570ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_crypto_subtle.go000066400000000000000000000014171460330105400204520ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "XORBytes": reflect.ValueOf(subtle.XORBytes), } } yaegi-0.16.1/stdlib/go1_21_crypto_tls.go000066400000000000000000000257421460330105400177650ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "NewResumptionState": reflect.ValueOf(tls.NewResumptionState), "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), "ParseSessionState": reflect.ValueOf(tls.ParseSessionState), "QUICClient": reflect.ValueOf(tls.QUICClient), "QUICEncryptionLevelApplication": reflect.ValueOf(tls.QUICEncryptionLevelApplication), "QUICEncryptionLevelEarly": reflect.ValueOf(tls.QUICEncryptionLevelEarly), "QUICEncryptionLevelHandshake": reflect.ValueOf(tls.QUICEncryptionLevelHandshake), "QUICEncryptionLevelInitial": reflect.ValueOf(tls.QUICEncryptionLevelInitial), "QUICHandshakeDone": reflect.ValueOf(tls.QUICHandshakeDone), "QUICNoEvent": reflect.ValueOf(tls.QUICNoEvent), "QUICRejectedEarlyData": reflect.ValueOf(tls.QUICRejectedEarlyData), "QUICServer": reflect.ValueOf(tls.QUICServer), "QUICSetReadSecret": reflect.ValueOf(tls.QUICSetReadSecret), "QUICSetWriteSecret": reflect.ValueOf(tls.QUICSetWriteSecret), "QUICTransportParameters": reflect.ValueOf(tls.QUICTransportParameters), "QUICTransportParametersRequired": reflect.ValueOf(tls.QUICTransportParametersRequired), "QUICWriteData": reflect.ValueOf(tls.QUICWriteData), "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), "VersionName": reflect.ValueOf(tls.VersionName), "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 "AlertError": reflect.ValueOf((*tls.AlertError)(nil)), "Certificate": reflect.ValueOf((*tls.Certificate)(nil)), "CertificateRequestInfo": reflect.ValueOf((*tls.CertificateRequestInfo)(nil)), "CertificateVerificationError": reflect.ValueOf((*tls.CertificateVerificationError)(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)), "QUICConfig": reflect.ValueOf((*tls.QUICConfig)(nil)), "QUICConn": reflect.ValueOf((*tls.QUICConn)(nil)), "QUICEncryptionLevel": reflect.ValueOf((*tls.QUICEncryptionLevel)(nil)), "QUICEvent": reflect.ValueOf((*tls.QUICEvent)(nil)), "QUICEventKind": reflect.ValueOf((*tls.QUICEventKind)(nil)), "QUICSessionTicketOptions": reflect.ValueOf((*tls.QUICSessionTicketOptions)(nil)), "RecordHeaderError": reflect.ValueOf((*tls.RecordHeaderError)(nil)), "RenegotiationSupport": reflect.ValueOf((*tls.RenegotiationSupport)(nil)), "SessionState": reflect.ValueOf((*tls.SessionState)(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) } yaegi-0.16.1/stdlib/go1_21_crypto_x509.go000066400000000000000000000226211460330105400176610ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "SetFallbackRoots": reflect.ValueOf(x509.SetFallbackRoots), "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)), "RevocationListEntry": reflect.ValueOf((*x509.RevocationListEntry)(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)), } } yaegi-0.16.1/stdlib/go1_21_crypto_x509_pkix.go000066400000000000000000000021311460330105400207060ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_database_sql.go000066400000000000000000000065521460330105400202040ustar00rootroot00000000000000// Code generated by 'yaegi extract database/sql'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_database_sql_driver.go000066400000000000000000000512521460330105400215540ustar00rootroot00000000000000// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_debug_buildinfo.go000066400000000000000000000007611460330105400206760ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/buildinfo'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_debug_dwarf.go000066400000000000000000000431241460330105400200260ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_debug_elf.go000066400000000000000000003626521460330105400175030ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "COMPRESS_ZSTD": reflect.ValueOf(elf.COMPRESS_ZSTD), "DF_1_CONFALT": reflect.ValueOf(elf.DF_1_CONFALT), "DF_1_DIRECT": reflect.ValueOf(elf.DF_1_DIRECT), "DF_1_DISPRELDNE": reflect.ValueOf(elf.DF_1_DISPRELDNE), "DF_1_DISPRELPND": reflect.ValueOf(elf.DF_1_DISPRELPND), "DF_1_EDITED": reflect.ValueOf(elf.DF_1_EDITED), "DF_1_ENDFILTEE": reflect.ValueOf(elf.DF_1_ENDFILTEE), "DF_1_GLOBAL": reflect.ValueOf(elf.DF_1_GLOBAL), "DF_1_GLOBAUDIT": reflect.ValueOf(elf.DF_1_GLOBAUDIT), "DF_1_GROUP": reflect.ValueOf(elf.DF_1_GROUP), "DF_1_IGNMULDEF": reflect.ValueOf(elf.DF_1_IGNMULDEF), "DF_1_INITFIRST": reflect.ValueOf(elf.DF_1_INITFIRST), "DF_1_INTERPOSE": reflect.ValueOf(elf.DF_1_INTERPOSE), "DF_1_KMOD": reflect.ValueOf(elf.DF_1_KMOD), "DF_1_LOADFLTR": reflect.ValueOf(elf.DF_1_LOADFLTR), "DF_1_NOCOMMON": reflect.ValueOf(elf.DF_1_NOCOMMON), "DF_1_NODEFLIB": reflect.ValueOf(elf.DF_1_NODEFLIB), "DF_1_NODELETE": reflect.ValueOf(elf.DF_1_NODELETE), "DF_1_NODIRECT": reflect.ValueOf(elf.DF_1_NODIRECT), "DF_1_NODUMP": reflect.ValueOf(elf.DF_1_NODUMP), "DF_1_NOHDR": reflect.ValueOf(elf.DF_1_NOHDR), "DF_1_NOKSYMS": reflect.ValueOf(elf.DF_1_NOKSYMS), "DF_1_NOOPEN": reflect.ValueOf(elf.DF_1_NOOPEN), "DF_1_NORELOC": reflect.ValueOf(elf.DF_1_NORELOC), "DF_1_NOW": reflect.ValueOf(elf.DF_1_NOW), "DF_1_ORIGIN": reflect.ValueOf(elf.DF_1_ORIGIN), "DF_1_PIE": reflect.ValueOf(elf.DF_1_PIE), "DF_1_SINGLETON": reflect.ValueOf(elf.DF_1_SINGLETON), "DF_1_STUB": reflect.ValueOf(elf.DF_1_STUB), "DF_1_SYMINTPOSE": reflect.ValueOf(elf.DF_1_SYMINTPOSE), "DF_1_TRANS": reflect.ValueOf(elf.DF_1_TRANS), "DF_1_WEAKFILTER": reflect.ValueOf(elf.DF_1_WEAKFILTER), "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_32_PCREL": reflect.ValueOf(elf.R_LARCH_32_PCREL), "R_LARCH_64": reflect.ValueOf(elf.R_LARCH_64), "R_LARCH_ABS64_HI12": reflect.ValueOf(elf.R_LARCH_ABS64_HI12), "R_LARCH_ABS64_LO20": reflect.ValueOf(elf.R_LARCH_ABS64_LO20), "R_LARCH_ABS_HI20": reflect.ValueOf(elf.R_LARCH_ABS_HI20), "R_LARCH_ABS_LO12": reflect.ValueOf(elf.R_LARCH_ABS_LO12), "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_B16": reflect.ValueOf(elf.R_LARCH_B16), "R_LARCH_B21": reflect.ValueOf(elf.R_LARCH_B21), "R_LARCH_B26": reflect.ValueOf(elf.R_LARCH_B26), "R_LARCH_COPY": reflect.ValueOf(elf.R_LARCH_COPY), "R_LARCH_GNU_VTENTRY": reflect.ValueOf(elf.R_LARCH_GNU_VTENTRY), "R_LARCH_GNU_VTINHERIT": reflect.ValueOf(elf.R_LARCH_GNU_VTINHERIT), "R_LARCH_GOT64_HI12": reflect.ValueOf(elf.R_LARCH_GOT64_HI12), "R_LARCH_GOT64_LO20": reflect.ValueOf(elf.R_LARCH_GOT64_LO20), "R_LARCH_GOT64_PC_HI12": reflect.ValueOf(elf.R_LARCH_GOT64_PC_HI12), "R_LARCH_GOT64_PC_LO20": reflect.ValueOf(elf.R_LARCH_GOT64_PC_LO20), "R_LARCH_GOT_HI20": reflect.ValueOf(elf.R_LARCH_GOT_HI20), "R_LARCH_GOT_LO12": reflect.ValueOf(elf.R_LARCH_GOT_LO12), "R_LARCH_GOT_PC_HI20": reflect.ValueOf(elf.R_LARCH_GOT_PC_HI20), "R_LARCH_GOT_PC_LO12": reflect.ValueOf(elf.R_LARCH_GOT_PC_LO12), "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_PCALA64_HI12": reflect.ValueOf(elf.R_LARCH_PCALA64_HI12), "R_LARCH_PCALA64_LO20": reflect.ValueOf(elf.R_LARCH_PCALA64_LO20), "R_LARCH_PCALA_HI20": reflect.ValueOf(elf.R_LARCH_PCALA_HI20), "R_LARCH_PCALA_LO12": reflect.ValueOf(elf.R_LARCH_PCALA_LO12), "R_LARCH_RELATIVE": reflect.ValueOf(elf.R_LARCH_RELATIVE), "R_LARCH_RELAX": reflect.ValueOf(elf.R_LARCH_RELAX), "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_GD_HI20": reflect.ValueOf(elf.R_LARCH_TLS_GD_HI20), "R_LARCH_TLS_GD_PC_HI20": reflect.ValueOf(elf.R_LARCH_TLS_GD_PC_HI20), "R_LARCH_TLS_IE64_HI12": reflect.ValueOf(elf.R_LARCH_TLS_IE64_HI12), "R_LARCH_TLS_IE64_LO20": reflect.ValueOf(elf.R_LARCH_TLS_IE64_LO20), "R_LARCH_TLS_IE64_PC_HI12": reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_HI12), "R_LARCH_TLS_IE64_PC_LO20": reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_LO20), "R_LARCH_TLS_IE_HI20": reflect.ValueOf(elf.R_LARCH_TLS_IE_HI20), "R_LARCH_TLS_IE_LO12": reflect.ValueOf(elf.R_LARCH_TLS_IE_LO12), "R_LARCH_TLS_IE_PC_HI20": reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_HI20), "R_LARCH_TLS_IE_PC_LO12": reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_LO12), "R_LARCH_TLS_LD_HI20": reflect.ValueOf(elf.R_LARCH_TLS_LD_HI20), "R_LARCH_TLS_LD_PC_HI20": reflect.ValueOf(elf.R_LARCH_TLS_LD_PC_HI20), "R_LARCH_TLS_LE64_HI12": reflect.ValueOf(elf.R_LARCH_TLS_LE64_HI12), "R_LARCH_TLS_LE64_LO20": reflect.ValueOf(elf.R_LARCH_TLS_LE64_LO20), "R_LARCH_TLS_LE_HI20": reflect.ValueOf(elf.R_LARCH_TLS_LE_HI20), "R_LARCH_TLS_LE_LO12": reflect.ValueOf(elf.R_LARCH_TLS_LE_LO12), "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_HIGHER34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER34), "R_PPC64_ADDR16_HIGHERA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA), "R_PPC64_ADDR16_HIGHERA34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA34), "R_PPC64_ADDR16_HIGHEST": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST), "R_PPC64_ADDR16_HIGHEST34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST34), "R_PPC64_ADDR16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA), "R_PPC64_ADDR16_HIGHESTA34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA34), "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_COPY": reflect.ValueOf(elf.R_PPC64_COPY), "R_PPC64_D28": reflect.ValueOf(elf.R_PPC64_D28), "R_PPC64_D34": reflect.ValueOf(elf.R_PPC64_D34), "R_PPC64_D34_HA30": reflect.ValueOf(elf.R_PPC64_D34_HA30), "R_PPC64_D34_HI30": reflect.ValueOf(elf.R_PPC64_D34_HI30), "R_PPC64_D34_LO": reflect.ValueOf(elf.R_PPC64_D34_LO), "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_DTPREL34": reflect.ValueOf(elf.R_PPC64_DTPREL34), "R_PPC64_DTPREL64": reflect.ValueOf(elf.R_PPC64_DTPREL64), "R_PPC64_ENTRY": reflect.ValueOf(elf.R_PPC64_ENTRY), "R_PPC64_GLOB_DAT": reflect.ValueOf(elf.R_PPC64_GLOB_DAT), "R_PPC64_GNU_VTENTRY": reflect.ValueOf(elf.R_PPC64_GNU_VTENTRY), "R_PPC64_GNU_VTINHERIT": reflect.ValueOf(elf.R_PPC64_GNU_VTINHERIT), "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_DTPREL_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL_PCREL34), "R_PPC64_GOT_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_PCREL34), "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_TLSGD_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD_PCREL34), "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_TLSLD_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD_PCREL34), "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_GOT_TPREL_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_TPREL_PCREL34), "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_PCREL28": reflect.ValueOf(elf.R_PPC64_PCREL28), "R_PPC64_PCREL34": reflect.ValueOf(elf.R_PPC64_PCREL34), "R_PPC64_PCREL_OPT": reflect.ValueOf(elf.R_PPC64_PCREL_OPT), "R_PPC64_PLT16_HA": reflect.ValueOf(elf.R_PPC64_PLT16_HA), "R_PPC64_PLT16_HI": reflect.ValueOf(elf.R_PPC64_PLT16_HI), "R_PPC64_PLT16_LO": reflect.ValueOf(elf.R_PPC64_PLT16_LO), "R_PPC64_PLT16_LO_DS": reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS), "R_PPC64_PLT32": reflect.ValueOf(elf.R_PPC64_PLT32), "R_PPC64_PLT64": reflect.ValueOf(elf.R_PPC64_PLT64), "R_PPC64_PLTCALL": reflect.ValueOf(elf.R_PPC64_PLTCALL), "R_PPC64_PLTCALL_NOTOC": reflect.ValueOf(elf.R_PPC64_PLTCALL_NOTOC), "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_PLTREL32": reflect.ValueOf(elf.R_PPC64_PLTREL32), "R_PPC64_PLTREL64": reflect.ValueOf(elf.R_PPC64_PLTREL64), "R_PPC64_PLTSEQ": reflect.ValueOf(elf.R_PPC64_PLTSEQ), "R_PPC64_PLTSEQ_NOTOC": reflect.ValueOf(elf.R_PPC64_PLTSEQ_NOTOC), "R_PPC64_PLT_PCREL34": reflect.ValueOf(elf.R_PPC64_PLT_PCREL34), "R_PPC64_PLT_PCREL34_NOTOC": reflect.ValueOf(elf.R_PPC64_PLT_PCREL34_NOTOC), "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_HIGH": reflect.ValueOf(elf.R_PPC64_REL16_HIGH), "R_PPC64_REL16_HIGHA": reflect.ValueOf(elf.R_PPC64_REL16_HIGHA), "R_PPC64_REL16_HIGHER": reflect.ValueOf(elf.R_PPC64_REL16_HIGHER), "R_PPC64_REL16_HIGHER34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHER34), "R_PPC64_REL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA), "R_PPC64_REL16_HIGHERA34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA34), "R_PPC64_REL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST), "R_PPC64_REL16_HIGHEST34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST34), "R_PPC64_REL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA), "R_PPC64_REL16_HIGHESTA34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA34), "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_REL24_P9NOTOC": reflect.ValueOf(elf.R_PPC64_REL24_P9NOTOC), "R_PPC64_REL30": reflect.ValueOf(elf.R_PPC64_REL30), "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": reflect.ValueOf(elf.R_PPC64_SECTOFF), "R_PPC64_SECTOFF_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_DS), "R_PPC64_SECTOFF_HA": reflect.ValueOf(elf.R_PPC64_SECTOFF_HA), "R_PPC64_SECTOFF_HI": reflect.ValueOf(elf.R_PPC64_SECTOFF_HI), "R_PPC64_SECTOFF_LO": reflect.ValueOf(elf.R_PPC64_SECTOFF_LO), "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_TPREL34": reflect.ValueOf(elf.R_PPC64_TPREL34), "R_PPC64_TPREL64": reflect.ValueOf(elf.R_PPC64_TPREL64), "R_PPC64_UADDR16": reflect.ValueOf(elf.R_PPC64_UADDR16), "R_PPC64_UADDR32": reflect.ValueOf(elf.R_PPC64_UADDR32), "R_PPC64_UADDR64": reflect.ValueOf(elf.R_PPC64_UADDR64), "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)), "DynFlag1": reflect.ValueOf((*elf.DynFlag1)(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)), } } yaegi-0.16.1/stdlib/go1_21_debug_gosym.go000066400000000000000000000016511460330105400200600ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_debug_macho.go000066400000000000000000000235011460330105400200070ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_debug_pe.go000066400000000000000000000307101460330105400173240ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_RISCV128": reflect.ValueOf(constant.MakeFromLiteral("20776", token.INT, 0)), "IMAGE_FILE_MACHINE_RISCV32": reflect.ValueOf(constant.MakeFromLiteral("20530", token.INT, 0)), "IMAGE_FILE_MACHINE_RISCV64": reflect.ValueOf(constant.MakeFromLiteral("20580", 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)), } } yaegi-0.16.1/stdlib/go1_21_debug_plan9obj.go000066400000000000000000000022271460330105400204400ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding.go000066400000000000000000000040621460330105400173410ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_encoding_ascii85.go000066400000000000000000000012611460330105400206640ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_asn1.go000066400000000000000000000062061460330105400202650ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_base32.go000066400000000000000000000015371460330105400205040ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_base64.go000066400000000000000000000017741460330105400205140ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_binary.go000066400000000000000000000070111460330105400207020ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), "NativeEndian": reflect.ValueOf(&binary.NativeEndian).Elem(), "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) } yaegi-0.16.1/stdlib/go1_21_encoding_csv.go000066400000000000000000000015271460330105400202170ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_gob.go000066400000000000000000000027401460330105400201710ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_encoding_hex.go000066400000000000000000000017121460330105400202040ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_json.go000066400000000000000000000054451460330105400204000ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_encoding_pem.go000066400000000000000000000010151460330105400201750ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_encoding_xml.go000066400000000000000000000110071460330105400202160ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_errors.go000066400000000000000000000011301460330105400170600ustar00rootroot00000000000000// Code generated by 'yaegi extract errors'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "errors" "reflect" ) func init() { Symbols["errors/errors"] = map[string]reflect.Value{ // function, constant and variable definitions "As": reflect.ValueOf(errors.As), "ErrUnsupported": reflect.ValueOf(&errors.ErrUnsupported).Elem(), "Is": reflect.ValueOf(errors.Is), "Join": reflect.ValueOf(errors.Join), "New": reflect.ValueOf(errors.New), "Unwrap": reflect.ValueOf(errors.Unwrap), } } yaegi-0.16.1/stdlib/go1_21_expvar.go000066400000000000000000000025211460330105400170560ustar00rootroot00000000000000// Code generated by 'yaegi extract expvar'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_flag.go000066400000000000000000000066651460330105400164770ustar00rootroot00000000000000// Code generated by 'yaegi extract flag'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "BoolFunc": reflect.ValueOf(flag.BoolFunc), "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() } yaegi-0.16.1/stdlib/go1_21_fmt.go000066400000000000000000000105631460330105400163440ustar00rootroot00000000000000// Code generated by 'yaegi extract fmt'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "FormatString": reflect.ValueOf(fmt.FormatString), "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() } yaegi-0.16.1/stdlib/go1_21_go_ast.go000066400000000000000000000204521460330105400170300ustar00rootroot00000000000000// Code generated by 'yaegi extract go/ast'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "IsGenerated": reflect.ValueOf(ast.IsGenerated), "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) } yaegi-0.16.1/stdlib/go1_21_go_build.go000066400000000000000000000023771460330105400173460ustar00rootroot00000000000000// Code generated by 'yaegi extract go/build'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), "Directive": reflect.ValueOf((*build.Directive)(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)), } } yaegi-0.16.1/stdlib/go1_21_go_build_constraint.go000066400000000000000000000027701460330105400216070ustar00rootroot00000000000000// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "go/build/constraint" "reflect" ) func init() { Symbols["go/build/constraint/constraint"] = map[string]reflect.Value{ // function, constant and variable definitions "GoVersion": reflect.ValueOf(constraint.GoVersion), "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() } yaegi-0.16.1/stdlib/go1_21_go_constant.go000066400000000000000000000057761460330105400201060ustar00rootroot00000000000000// Code generated by 'yaegi extract go/constant'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_go_doc.go000066400000000000000000000024121460330105400170020ustar00rootroot00000000000000// Code generated by 'yaegi extract go/doc'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_go_doc_comment.go000066400000000000000000000031501460330105400205240ustar00rootroot00000000000000// Code generated by 'yaegi extract go/doc/comment'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "go/doc/comment" "reflect" ) func init() { Symbols["go/doc/comment/comment"] = map[string]reflect.Value{ // function, constant and variable definitions "DefaultLookupPackage": reflect.ValueOf(comment.DefaultLookupPackage), // type definitions "Block": reflect.ValueOf((*comment.Block)(nil)), "Code": reflect.ValueOf((*comment.Code)(nil)), "Doc": reflect.ValueOf((*comment.Doc)(nil)), "DocLink": reflect.ValueOf((*comment.DocLink)(nil)), "Heading": reflect.ValueOf((*comment.Heading)(nil)), "Italic": reflect.ValueOf((*comment.Italic)(nil)), "Link": reflect.ValueOf((*comment.Link)(nil)), "LinkDef": reflect.ValueOf((*comment.LinkDef)(nil)), "List": reflect.ValueOf((*comment.List)(nil)), "ListItem": reflect.ValueOf((*comment.ListItem)(nil)), "Paragraph": reflect.ValueOf((*comment.Paragraph)(nil)), "Parser": reflect.ValueOf((*comment.Parser)(nil)), "Plain": reflect.ValueOf((*comment.Plain)(nil)), "Printer": reflect.ValueOf((*comment.Printer)(nil)), "Text": reflect.ValueOf((*comment.Text)(nil)), // interface wrapper definitions "_Block": reflect.ValueOf((*_go_doc_comment_Block)(nil)), "_Text": reflect.ValueOf((*_go_doc_comment_Text)(nil)), } } // _go_doc_comment_Block is an interface wrapper for Block type type _go_doc_comment_Block struct { IValue interface{} } // _go_doc_comment_Text is an interface wrapper for Text type type _go_doc_comment_Text struct { IValue interface{} } yaegi-0.16.1/stdlib/go1_21_go_format.go000066400000000000000000000005741460330105400175340ustar00rootroot00000000000000// Code generated by 'yaegi extract go/format'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_go_importer.go000066400000000000000000000010271460330105400200770ustar00rootroot00000000000000// Code generated by 'yaegi extract go/importer'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_go_parser.go000066400000000000000000000021561460330105400175360ustar00rootroot00000000000000// Code generated by 'yaegi extract go/parser'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_go_printer.go000066400000000000000000000013661460330105400177270ustar00rootroot00000000000000// Code generated by 'yaegi extract go/printer'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_go_scanner.go000066400000000000000000000013371460330105400176730ustar00rootroot00000000000000// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_go_token.go000066400000000000000000000122571460330105400173650ustar00rootroot00000000000000// Code generated by 'yaegi extract go/token'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_go_types.go000066400000000000000000000303531460330105400174060ustar00rootroot00000000000000// Code generated by 'yaegi extract go/types'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "Satisfies": reflect.ValueOf(types.Satisfies), "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() } yaegi-0.16.1/stdlib/go1_21_hash.go000066400000000000000000000046201460330105400164760ustar00rootroot00000000000000// Code generated by 'yaegi extract hash'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_hash_adler32.go000066400000000000000000000007641460330105400200170ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_hash_crc32.go000066400000000000000000000021211460330105400174640ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_hash_crc64.go000066400000000000000000000015221460330105400174750ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_hash_fnv.go000066400000000000000000000010331460330105400173420ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_hash_maphash.go000066400000000000000000000010671460330105400202010ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_html.go000066400000000000000000000006071460330105400165200ustar00rootroot00000000000000// Code generated by 'yaegi extract html'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_html_template.go000066400000000000000000000051451460330105400204150ustar00rootroot00000000000000// Code generated by 'yaegi extract html/template'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "ErrJSTemplate": reflect.ValueOf(template.ErrJSTemplate), "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)), } } yaegi-0.16.1/stdlib/go1_21_image.go000066400000000000000000000127041460330105400166370ustar00rootroot00000000000000// Code generated by 'yaegi extract image'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_image_color.go000066400000000000000000000055051460330105400200360ustar00rootroot00000000000000// Code generated by 'yaegi extract image/color'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_image_color_palette.go000066400000000000000000000006611460330105400215520ustar00rootroot00000000000000// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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(), } } yaegi-0.16.1/stdlib/go1_21_image_draw.go000066400000000000000000000064201460330105400176520ustar00rootroot00000000000000// Code generated by 'yaegi extract image/draw'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_image_gif.go000066400000000000000000000017161460330105400174650ustar00rootroot00000000000000// Code generated by 'yaegi extract image/gif'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_image_jpeg.go000066400000000000000000000024211460330105400176370ustar00rootroot00000000000000// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_image_png.go000066400000000000000000000031321460330105400174760ustar00rootroot00000000000000// Code generated by 'yaegi extract image/png'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_index_suffixarray.go000066400000000000000000000006741460330105400213120ustar00rootroot00000000000000// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_io.go000066400000000000000000000270741460330105400161720ustar00rootroot00000000000000// Code generated by 'yaegi extract io'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "NewOffsetWriter": reflect.ValueOf(io.NewOffsetWriter), "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)), "OffsetWriter": reflect.ValueOf((*io.OffsetWriter)(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) } yaegi-0.16.1/stdlib/go1_21_io_fs.go000066400000000000000000000170301460330105400166510ustar00rootroot00000000000000// Code generated by 'yaegi extract io/fs'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "FormatDirEntry": reflect.ValueOf(fs.FormatDirEntry), "FormatFileInfo": reflect.ValueOf(fs.FormatFileInfo), "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), "SkipAll": reflect.ValueOf(&fs.SkipAll).Elem(), "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) } yaegi-0.16.1/stdlib/go1_21_io_ioutil.go000066400000000000000000000012641460330105400175500ustar00rootroot00000000000000// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_log.go000066400000000000000000000035371460330105400163420ustar00rootroot00000000000000// Code generated by 'yaegi extract log'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_log_slog.go000066400000000000000000000130531460330105400173600ustar00rootroot00000000000000// Code generated by 'yaegi extract log/slog'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "context" "go/constant" "go/token" "log/slog" "reflect" ) func init() { Symbols["log/slog/slog"] = map[string]reflect.Value{ // function, constant and variable definitions "Any": reflect.ValueOf(slog.Any), "AnyValue": reflect.ValueOf(slog.AnyValue), "Bool": reflect.ValueOf(slog.Bool), "BoolValue": reflect.ValueOf(slog.BoolValue), "Debug": reflect.ValueOf(slog.Debug), "DebugContext": reflect.ValueOf(slog.DebugContext), "Default": reflect.ValueOf(slog.Default), "Duration": reflect.ValueOf(slog.Duration), "DurationValue": reflect.ValueOf(slog.DurationValue), "Error": reflect.ValueOf(slog.Error), "ErrorContext": reflect.ValueOf(slog.ErrorContext), "Float64": reflect.ValueOf(slog.Float64), "Float64Value": reflect.ValueOf(slog.Float64Value), "Group": reflect.ValueOf(slog.Group), "GroupValue": reflect.ValueOf(slog.GroupValue), "Info": reflect.ValueOf(slog.Info), "InfoContext": reflect.ValueOf(slog.InfoContext), "Int": reflect.ValueOf(slog.Int), "Int64": reflect.ValueOf(slog.Int64), "Int64Value": reflect.ValueOf(slog.Int64Value), "IntValue": reflect.ValueOf(slog.IntValue), "KindAny": reflect.ValueOf(slog.KindAny), "KindBool": reflect.ValueOf(slog.KindBool), "KindDuration": reflect.ValueOf(slog.KindDuration), "KindFloat64": reflect.ValueOf(slog.KindFloat64), "KindGroup": reflect.ValueOf(slog.KindGroup), "KindInt64": reflect.ValueOf(slog.KindInt64), "KindLogValuer": reflect.ValueOf(slog.KindLogValuer), "KindString": reflect.ValueOf(slog.KindString), "KindTime": reflect.ValueOf(slog.KindTime), "KindUint64": reflect.ValueOf(slog.KindUint64), "LevelDebug": reflect.ValueOf(slog.LevelDebug), "LevelError": reflect.ValueOf(slog.LevelError), "LevelInfo": reflect.ValueOf(slog.LevelInfo), "LevelKey": reflect.ValueOf(constant.MakeFromLiteral("\"level\"", token.STRING, 0)), "LevelWarn": reflect.ValueOf(slog.LevelWarn), "Log": reflect.ValueOf(slog.Log), "LogAttrs": reflect.ValueOf(slog.LogAttrs), "MessageKey": reflect.ValueOf(constant.MakeFromLiteral("\"msg\"", token.STRING, 0)), "New": reflect.ValueOf(slog.New), "NewJSONHandler": reflect.ValueOf(slog.NewJSONHandler), "NewLogLogger": reflect.ValueOf(slog.NewLogLogger), "NewRecord": reflect.ValueOf(slog.NewRecord), "NewTextHandler": reflect.ValueOf(slog.NewTextHandler), "SetDefault": reflect.ValueOf(slog.SetDefault), "SourceKey": reflect.ValueOf(constant.MakeFromLiteral("\"source\"", token.STRING, 0)), "String": reflect.ValueOf(slog.String), "StringValue": reflect.ValueOf(slog.StringValue), "Time": reflect.ValueOf(slog.Time), "TimeKey": reflect.ValueOf(constant.MakeFromLiteral("\"time\"", token.STRING, 0)), "TimeValue": reflect.ValueOf(slog.TimeValue), "Uint64": reflect.ValueOf(slog.Uint64), "Uint64Value": reflect.ValueOf(slog.Uint64Value), "Warn": reflect.ValueOf(slog.Warn), "WarnContext": reflect.ValueOf(slog.WarnContext), "With": reflect.ValueOf(slog.With), // type definitions "Attr": reflect.ValueOf((*slog.Attr)(nil)), "Handler": reflect.ValueOf((*slog.Handler)(nil)), "HandlerOptions": reflect.ValueOf((*slog.HandlerOptions)(nil)), "JSONHandler": reflect.ValueOf((*slog.JSONHandler)(nil)), "Kind": reflect.ValueOf((*slog.Kind)(nil)), "Level": reflect.ValueOf((*slog.Level)(nil)), "LevelVar": reflect.ValueOf((*slog.LevelVar)(nil)), "Leveler": reflect.ValueOf((*slog.Leveler)(nil)), "LogValuer": reflect.ValueOf((*slog.LogValuer)(nil)), "Logger": reflect.ValueOf((*slog.Logger)(nil)), "Record": reflect.ValueOf((*slog.Record)(nil)), "Source": reflect.ValueOf((*slog.Source)(nil)), "TextHandler": reflect.ValueOf((*slog.TextHandler)(nil)), "Value": reflect.ValueOf((*slog.Value)(nil)), // interface wrapper definitions "_Handler": reflect.ValueOf((*_log_slog_Handler)(nil)), "_Leveler": reflect.ValueOf((*_log_slog_Leveler)(nil)), "_LogValuer": reflect.ValueOf((*_log_slog_LogValuer)(nil)), } } // _log_slog_Handler is an interface wrapper for Handler type type _log_slog_Handler struct { IValue interface{} WEnabled func(a0 context.Context, a1 slog.Level) bool WHandle func(a0 context.Context, a1 slog.Record) error WWithAttrs func(attrs []slog.Attr) slog.Handler WWithGroup func(name string) slog.Handler } func (W _log_slog_Handler) Enabled(a0 context.Context, a1 slog.Level) bool { return W.WEnabled(a0, a1) } func (W _log_slog_Handler) Handle(a0 context.Context, a1 slog.Record) error { return W.WHandle(a0, a1) } func (W _log_slog_Handler) WithAttrs(attrs []slog.Attr) slog.Handler { return W.WWithAttrs(attrs) } func (W _log_slog_Handler) WithGroup(name string) slog.Handler { return W.WWithGroup(name) } // _log_slog_Leveler is an interface wrapper for Leveler type type _log_slog_Leveler struct { IValue interface{} WLevel func() slog.Level } func (W _log_slog_Leveler) Level() slog.Level { return W.WLevel() } // _log_slog_LogValuer is an interface wrapper for LogValuer type type _log_slog_LogValuer struct { IValue interface{} WLogValue func() slog.Value } func (W _log_slog_LogValuer) LogValue() slog.Value { return W.WLogValue() } yaegi-0.16.1/stdlib/go1_21_log_syslog.go000066400000000000000000000041041460330105400177310ustar00rootroot00000000000000// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !windows && !nacl && !plan9 // +build go1.21,!go1.22,!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)), } } yaegi-0.16.1/stdlib/go1_21_maps.go000066400000000000000000000003321460330105400165070ustar00rootroot00000000000000// Code generated by 'yaegi extract maps'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "reflect" ) func init() { Symbols["maps/maps"] = map[string]reflect.Value{} } yaegi-0.16.1/stdlib/go1_21_math.go000066400000000000000000000243711460330105400165110ustar00rootroot00000000000000// Code generated by 'yaegi extract math'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_math_big.go000066400000000000000000000033701460330105400173260ustar00rootroot00000000000000// Code generated by 'yaegi extract math/big'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_math_bits.go000066400000000000000000000057371460330105400175370ustar00rootroot00000000000000// Code generated by 'yaegi extract math/bits'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_math_cmplx.go000066400000000000000000000025361460330105400177130ustar00rootroot00000000000000// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_math_rand.go000066400000000000000000000043171460330105400175130ustar00rootroot00000000000000// Code generated by 'yaegi extract math/rand'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_mime.go000066400000000000000000000017221460330105400165020ustar00rootroot00000000000000// Code generated by 'yaegi extract mime'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_mime_multipart.go000066400000000000000000000031651460330105400206060ustar00rootroot00000000000000// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_mime_quotedprintable.go000066400000000000000000000011271460330105400217630ustar00rootroot00000000000000// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_net.go000066400000000000000000000245601460330105400163460ustar00rootroot00000000000000// Code generated by 'yaegi extract net'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "FlagRunning": reflect.ValueOf(net.FlagRunning), "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) } yaegi-0.16.1/stdlib/go1_21_net_http.go000066400000000000000000000500051460330105400173760ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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(), "ErrSchemeMismatch": reflect.ValueOf(&http.ErrSchemeMismatch).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), "NewResponseController": reflect.ValueOf(http.NewResponseController), "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)), "ResponseController": reflect.ValueOf((*http.ResponseController)(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) } yaegi-0.16.1/stdlib/go1_21_net_http_cgi.go000066400000000000000000000010211460330105400202120ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_net_http_cookiejar.go000066400000000000000000000022551460330105400214300ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_net_http_fcgi.go000066400000000000000000000010511460330105400203630ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_net_http_httptest.go000066400000000000000000000016371460330105400213440ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_net_http_httptrace.go000066400000000000000000000015121460330105400214530ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_net_http_httputil.go000066400000000000000000000040561460330105400213400ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), "ProxyRequest": reflect.ValueOf((*httputil.ProxyRequest)(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) } yaegi-0.16.1/stdlib/go1_21_net_http_pprof.go000066400000000000000000000010751460330105400206070ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_net_mail.go000066400000000000000000000015451460330105400173460ustar00rootroot00000000000000// Code generated by 'yaegi extract net/mail'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_net_netip.go000066400000000000000000000030251460330105400175360ustar00rootroot00000000000000// Code generated by 'yaegi extract net/netip'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "IPv6LinkLocalAllRouters": reflect.ValueOf(netip.IPv6LinkLocalAllRouters), "IPv6Loopback": reflect.ValueOf(netip.IPv6Loopback), "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)), } } yaegi-0.16.1/stdlib/go1_21_net_rpc.go000066400000000000000000000065461460330105400172160ustar00rootroot00000000000000// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_net_rpc_jsonrpc.go000066400000000000000000000011261460330105400207410ustar00rootroot00000000000000// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_net_smtp.go000066400000000000000000000024551460330105400174100ustar00rootroot00000000000000// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_net_textproto.go000066400000000000000000000023351460330105400204720ustar00rootroot00000000000000// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_net_url.go000066400000000000000000000022771460330105400172310ustar00rootroot00000000000000// Code generated by 'yaegi extract net/url'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_os.go000066400000000000000000000203661460330105400162010ustar00rootroot00000000000000// Code generated by 'yaegi extract os'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_os_signal.go000066400000000000000000000011351460330105400175270ustar00rootroot00000000000000// Code generated by 'yaegi extract os/signal'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_os_user.go000066400000000000000000000017361460330105400172370ustar00rootroot00000000000000// Code generated by 'yaegi extract os/user'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_path.go000066400000000000000000000013171460330105400165070ustar00rootroot00000000000000// Code generated by 'yaegi extract path'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_path_filepath.go000066400000000000000000000034461460330105400203700ustar00rootroot00000000000000// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "IsLocal": reflect.ValueOf(filepath.IsLocal), "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)), "SkipAll": reflect.ValueOf(&filepath.SkipAll).Elem(), "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)), } } yaegi-0.16.1/stdlib/go1_21_reflect.go000066400000000000000000000173421460330105400172040ustar00rootroot00000000000000// Code generated by 'yaegi extract reflect'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_regexp.go000066400000000000000000000014721460330105400170470ustar00rootroot00000000000000// Code generated by 'yaegi extract regexp'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_regexp_syntax.go000066400000000000000000000125441460330105400204570ustar00rootroot00000000000000// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "ErrLarge": reflect.ValueOf(syntax.ErrLarge), "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)), } } yaegi-0.16.1/stdlib/go1_21_runtime.go000066400000000000000000000076161460330105400172460ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), "PanicNilError": reflect.ValueOf((*runtime.PanicNilError)(nil)), "Pinner": reflect.ValueOf((*runtime.Pinner)(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() } yaegi-0.16.1/stdlib/go1_21_runtime_debug.go000066400000000000000000000024471460330105400204110ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_runtime_metrics.go000066400000000000000000000020211460330105400207550ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_runtime_pprof.go000066400000000000000000000021701460330105400204420ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_runtime_trace.go000066400000000000000000000014611460330105400204140ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_slices.go000066400000000000000000000003401460330105400170300ustar00rootroot00000000000000// Code generated by 'yaegi extract slices'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "reflect" ) func init() { Symbols["slices/slices"] = map[string]reflect.Value{} } yaegi-0.16.1/stdlib/go1_21_sort.go000066400000000000000000000037621460330105400165500ustar00rootroot00000000000000// Code generated by 'yaegi extract sort'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_strconv.go000066400000000000000000000056251460330105400172570ustar00rootroot00000000000000// Code generated by 'yaegi extract strconv'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_strings.go000066400000000000000000000064631460330105400172530ustar00rootroot00000000000000// Code generated by 'yaegi extract strings'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "ContainsFunc": reflect.ValueOf(strings.ContainsFunc), "ContainsRune": reflect.ValueOf(strings.ContainsRune), "Count": reflect.ValueOf(strings.Count), "Cut": reflect.ValueOf(strings.Cut), "CutPrefix": reflect.ValueOf(strings.CutPrefix), "CutSuffix": reflect.ValueOf(strings.CutSuffix), "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)), } } yaegi-0.16.1/stdlib/go1_21_sync.go000066400000000000000000000021511460330105400165240ustar00rootroot00000000000000// Code generated by 'yaegi extract sync'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "reflect" "sync" ) func init() { Symbols["sync/sync"] = map[string]reflect.Value{ // function, constant and variable definitions "NewCond": reflect.ValueOf(sync.NewCond), "OnceFunc": reflect.ValueOf(sync.OnceFunc), // 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() } yaegi-0.16.1/stdlib/go1_21_sync_atomic.go000066400000000000000000000050211460330105400200570ustar00rootroot00000000000000// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_testing.go000066400000000000000000000073301460330105400172310ustar00rootroot00000000000000// Code generated by 'yaegi extract testing'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "Testing": reflect.ValueOf(testing.Testing), "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() } yaegi-0.16.1/stdlib/go1_21_testing_fstest.go000066400000000000000000000007421460330105400206210ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_testing_iotest.go000066400000000000000000000016001460330105400206120ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_21_testing_quick.go000066400000000000000000000023051460330105400204220ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/go1_21_testing_slogtest.go000066400000000000000000000005651460330105400211600ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/slogtest'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "reflect" "testing/slogtest" ) func init() { Symbols["testing/slogtest/slogtest"] = map[string]reflect.Value{ // function, constant and variable definitions "TestHandler": reflect.ValueOf(slogtest.TestHandler), } } yaegi-0.16.1/stdlib/go1_21_text_scanner.go000066400000000000000000000037561460330105400202610ustar00rootroot00000000000000// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_text_tabwriter.go000066400000000000000000000016751460330105400206310ustar00rootroot00000000000000// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_text_template.go000066400000000000000000000024001460330105400204240ustar00rootroot00000000000000// Code generated by 'yaegi extract text/template'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/go1_21_text_template_parse.go000066400000000000000000000101201460330105400216140ustar00rootroot00000000000000// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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() } yaegi-0.16.1/stdlib/go1_21_time.go000066400000000000000000000131711460330105400165120ustar00rootroot00000000000000// Code generated by 'yaegi extract time'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "DateOnly": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02\"", token.STRING, 0)), "DateTime": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02 15:04:05\"", token.STRING, 0)), "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), "TimeOnly": reflect.ValueOf(constant.MakeFromLiteral("\"15:04:05\"", token.STRING, 0)), "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)), } } yaegi-0.16.1/stdlib/go1_21_unicode.go000066400000000000000000000576641460330105400172210ustar00rootroot00000000000000// Code generated by 'yaegi extract unicode'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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(), "Cypro_Minoan": reflect.ValueOf(&unicode.Cypro_Minoan).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(), "Kawi": reflect.ValueOf(&unicode.Kawi).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(), "Nag_Mundari": reflect.ValueOf(&unicode.Nag_Mundari).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(), "Old_Uyghur": reflect.ValueOf(&unicode.Old_Uyghur).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(), "Tangsa": reflect.ValueOf(&unicode.Tangsa).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), "Toto": reflect.ValueOf(&unicode.Toto).Elem(), "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("\"15.0.0\"", token.STRING, 0)), "Vithkuqi": reflect.ValueOf(&unicode.Vithkuqi).Elem(), "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)), } } yaegi-0.16.1/stdlib/go1_21_unicode_utf16.go000066400000000000000000000011421460330105400202220ustar00rootroot00000000000000// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package stdlib import ( "reflect" "unicode/utf16" ) func init() { Symbols["unicode/utf16/utf16"] = map[string]reflect.Value{ // function, constant and variable definitions "AppendRune": reflect.ValueOf(utf16.AppendRune), "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), } } yaegi-0.16.1/stdlib/go1_21_unicode_utf8.go000066400000000000000000000031671460330105400201540ustar00rootroot00000000000000// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_archive_tar.go000066400000000000000000000046751460330105400200550ustar00rootroot00000000000000// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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(), "ErrInsecurePath": reflect.ValueOf(&tar.ErrInsecurePath).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)), } } yaegi-0.16.1/stdlib/go1_22_archive_zip.go000066400000000000000000000026651460330105400200660ustar00rootroot00000000000000// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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(), "ErrInsecurePath": reflect.ValueOf(&zip.ErrInsecurePath).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)), } } yaegi-0.16.1/stdlib/go1_22_bufio.go000066400000000000000000000036641460330105400166670ustar00rootroot00000000000000// Code generated by 'yaegi extract bufio'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_bytes.go000066400000000000000000000067641460330105400167150ustar00rootroot00000000000000// Code generated by 'yaegi extract bytes'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "bytes" "go/constant" "go/token" "reflect" ) func init() { Symbols["bytes/bytes"] = map[string]reflect.Value{ // function, constant and variable definitions "Clone": reflect.ValueOf(bytes.Clone), "Compare": reflect.ValueOf(bytes.Compare), "Contains": reflect.ValueOf(bytes.Contains), "ContainsAny": reflect.ValueOf(bytes.ContainsAny), "ContainsFunc": reflect.ValueOf(bytes.ContainsFunc), "ContainsRune": reflect.ValueOf(bytes.ContainsRune), "Count": reflect.ValueOf(bytes.Count), "Cut": reflect.ValueOf(bytes.Cut), "CutPrefix": reflect.ValueOf(bytes.CutPrefix), "CutSuffix": reflect.ValueOf(bytes.CutSuffix), "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)), } } yaegi-0.16.1/stdlib/go1_22_cmp.go000066400000000000000000000003041460330105400163260ustar00rootroot00000000000000// Code generated by 'yaegi extract cmp'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "reflect" ) func init() { Symbols["cmp/cmp"] = map[string]reflect.Value{} } yaegi-0.16.1/stdlib/go1_22_compress_bzip2.go000066400000000000000000000006561460330105400205220ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_compress_flate.go000066400000000000000000000043771460330105400205730ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_compress_gzip.go000066400000000000000000000023111460330105400204330ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_compress_lzw.go000066400000000000000000000011621460330105400203010ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_compress_zlib.go000066400000000000000000000033411460330105400204260ustar00rootroot00000000000000// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_container_heap.go000066400000000000000000000023751460330105400205400ustar00rootroot00000000000000// Code generated by 'yaegi extract container/heap'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_container_list.go000066400000000000000000000007001460330105400205640ustar00rootroot00000000000000// Code generated by 'yaegi extract container/list'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_container_ring.go000066400000000000000000000006111460330105400205510ustar00rootroot00000000000000// Code generated by 'yaegi extract container/ring'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_context.go000066400000000000000000000037351460330105400172460ustar00rootroot00000000000000// Code generated by 'yaegi extract context'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "context" "reflect" "time" ) func init() { Symbols["context/context"] = map[string]reflect.Value{ // function, constant and variable definitions "AfterFunc": reflect.ValueOf(context.AfterFunc), "Background": reflect.ValueOf(context.Background), "Canceled": reflect.ValueOf(&context.Canceled).Elem(), "Cause": reflect.ValueOf(context.Cause), "DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(), "TODO": reflect.ValueOf(context.TODO), "WithCancel": reflect.ValueOf(context.WithCancel), "WithCancelCause": reflect.ValueOf(context.WithCancelCause), "WithDeadline": reflect.ValueOf(context.WithDeadline), "WithDeadlineCause": reflect.ValueOf(context.WithDeadlineCause), "WithTimeout": reflect.ValueOf(context.WithTimeout), "WithTimeoutCause": reflect.ValueOf(context.WithTimeoutCause), "WithValue": reflect.ValueOf(context.WithValue), "WithoutCancel": reflect.ValueOf(context.WithoutCancel), // type definitions "CancelCauseFunc": reflect.ValueOf((*context.CancelCauseFunc)(nil)), "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) } yaegi-0.16.1/stdlib/go1_22_crypto.go000066400000000000000000000072561460330105400171040ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_crypto_aes.go000066400000000000000000000007771460330105400177350ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_cipher.go000066400000000000000000000067031460330105400204320ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_crypto_des.go000066400000000000000000000011211460330105400177200ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_dsa.go000066400000000000000000000020671460330105400177260ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_ecdh.go000066400000000000000000000025411460330105400200570ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/ecdh'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "crypto/ecdh" "io" "reflect" ) func init() { Symbols["crypto/ecdh/ecdh"] = map[string]reflect.Value{ // function, constant and variable definitions "P256": reflect.ValueOf(ecdh.P256), "P384": reflect.ValueOf(ecdh.P384), "P521": reflect.ValueOf(ecdh.P521), "X25519": reflect.ValueOf(ecdh.X25519), // type definitions "Curve": reflect.ValueOf((*ecdh.Curve)(nil)), "PrivateKey": reflect.ValueOf((*ecdh.PrivateKey)(nil)), "PublicKey": reflect.ValueOf((*ecdh.PublicKey)(nil)), // interface wrapper definitions "_Curve": reflect.ValueOf((*_crypto_ecdh_Curve)(nil)), } } // _crypto_ecdh_Curve is an interface wrapper for Curve type type _crypto_ecdh_Curve struct { IValue interface{} WGenerateKey func(rand io.Reader) (*ecdh.PrivateKey, error) WNewPrivateKey func(key []byte) (*ecdh.PrivateKey, error) WNewPublicKey func(key []byte) (*ecdh.PublicKey, error) } func (W _crypto_ecdh_Curve) GenerateKey(rand io.Reader) (*ecdh.PrivateKey, error) { return W.WGenerateKey(rand) } func (W _crypto_ecdh_Curve) NewPrivateKey(key []byte) (*ecdh.PrivateKey, error) { return W.WNewPrivateKey(key) } func (W _crypto_ecdh_Curve) NewPublicKey(key []byte) (*ecdh.PublicKey, error) { return W.WNewPublicKey(key) } yaegi-0.16.1/stdlib/go1_22_crypto_ecdsa.go000066400000000000000000000012401460330105400202260ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_ed25519.go000066400000000000000000000022161460330105400201510ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "VerifyWithOptions": reflect.ValueOf(ed25519.VerifyWithOptions), // type definitions "Options": reflect.ValueOf((*ed25519.Options)(nil)), "PrivateKey": reflect.ValueOf((*ed25519.PrivateKey)(nil)), "PublicKey": reflect.ValueOf((*ed25519.PublicKey)(nil)), } } yaegi-0.16.1/stdlib/go1_22_crypto_elliptic.go000066400000000000000000000044721460330105400207660ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_crypto_hmac.go000066400000000000000000000005451460330105400200660ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_crypto_md5.go000066400000000000000000000010341460330105400176350ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_crypto_rand.go000066400000000000000000000007011460330105400200740ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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(), } } yaegi-0.16.1/stdlib/go1_22_crypto_rc4.go000066400000000000000000000007151460330105400176450ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_rsa.go000066400000000000000000000037041460330105400177430ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_sha1.go000066400000000000000000000010421460330105400200030ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_crypto_sha256.go000066400000000000000000000013351460330105400201640ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_crypto_sha512.go000066400000000000000000000021231460330105400201530ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_crypto_subtle.go000066400000000000000000000013741460330105400204550ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "XORBytes": reflect.ValueOf(subtle.XORBytes), } } yaegi-0.16.1/stdlib/go1_22_crypto_tls.go000066400000000000000000000257171460330105400177700ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "NewResumptionState": reflect.ValueOf(tls.NewResumptionState), "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), "ParseSessionState": reflect.ValueOf(tls.ParseSessionState), "QUICClient": reflect.ValueOf(tls.QUICClient), "QUICEncryptionLevelApplication": reflect.ValueOf(tls.QUICEncryptionLevelApplication), "QUICEncryptionLevelEarly": reflect.ValueOf(tls.QUICEncryptionLevelEarly), "QUICEncryptionLevelHandshake": reflect.ValueOf(tls.QUICEncryptionLevelHandshake), "QUICEncryptionLevelInitial": reflect.ValueOf(tls.QUICEncryptionLevelInitial), "QUICHandshakeDone": reflect.ValueOf(tls.QUICHandshakeDone), "QUICNoEvent": reflect.ValueOf(tls.QUICNoEvent), "QUICRejectedEarlyData": reflect.ValueOf(tls.QUICRejectedEarlyData), "QUICServer": reflect.ValueOf(tls.QUICServer), "QUICSetReadSecret": reflect.ValueOf(tls.QUICSetReadSecret), "QUICSetWriteSecret": reflect.ValueOf(tls.QUICSetWriteSecret), "QUICTransportParameters": reflect.ValueOf(tls.QUICTransportParameters), "QUICTransportParametersRequired": reflect.ValueOf(tls.QUICTransportParametersRequired), "QUICWriteData": reflect.ValueOf(tls.QUICWriteData), "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), "VersionName": reflect.ValueOf(tls.VersionName), "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 "AlertError": reflect.ValueOf((*tls.AlertError)(nil)), "Certificate": reflect.ValueOf((*tls.Certificate)(nil)), "CertificateRequestInfo": reflect.ValueOf((*tls.CertificateRequestInfo)(nil)), "CertificateVerificationError": reflect.ValueOf((*tls.CertificateVerificationError)(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)), "QUICConfig": reflect.ValueOf((*tls.QUICConfig)(nil)), "QUICConn": reflect.ValueOf((*tls.QUICConn)(nil)), "QUICEncryptionLevel": reflect.ValueOf((*tls.QUICEncryptionLevel)(nil)), "QUICEvent": reflect.ValueOf((*tls.QUICEvent)(nil)), "QUICEventKind": reflect.ValueOf((*tls.QUICEventKind)(nil)), "QUICSessionTicketOptions": reflect.ValueOf((*tls.QUICSessionTicketOptions)(nil)), "RecordHeaderError": reflect.ValueOf((*tls.RecordHeaderError)(nil)), "RenegotiationSupport": reflect.ValueOf((*tls.RenegotiationSupport)(nil)), "SessionState": reflect.ValueOf((*tls.SessionState)(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) } yaegi-0.16.1/stdlib/go1_22_crypto_x509.go000066400000000000000000000230231460330105400176570ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "OIDFromInts": reflect.ValueOf(x509.OIDFromInts), "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), "SetFallbackRoots": reflect.ValueOf(x509.SetFallbackRoots), "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)), "OID": reflect.ValueOf((*x509.OID)(nil)), "PEMCipher": reflect.ValueOf((*x509.PEMCipher)(nil)), "PublicKeyAlgorithm": reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)), "RevocationList": reflect.ValueOf((*x509.RevocationList)(nil)), "RevocationListEntry": reflect.ValueOf((*x509.RevocationListEntry)(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)), } } yaegi-0.16.1/stdlib/go1_22_crypto_x509_pkix.go000066400000000000000000000021061460330105400207110ustar00rootroot00000000000000// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_database_sql.go000066400000000000000000000065271460330105400202070ustar00rootroot00000000000000// Code generated by 'yaegi extract database/sql'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_database_sql_driver.go000066400000000000000000000512271460330105400215570ustar00rootroot00000000000000// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_debug_buildinfo.go000066400000000000000000000007361460330105400207010ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/buildinfo'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_debug_dwarf.go000066400000000000000000000431011460330105400200220ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_debug_elf.go000066400000000000000000003643441460330105400175040ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "COMPRESS_ZSTD": reflect.ValueOf(elf.COMPRESS_ZSTD), "DF_1_CONFALT": reflect.ValueOf(elf.DF_1_CONFALT), "DF_1_DIRECT": reflect.ValueOf(elf.DF_1_DIRECT), "DF_1_DISPRELDNE": reflect.ValueOf(elf.DF_1_DISPRELDNE), "DF_1_DISPRELPND": reflect.ValueOf(elf.DF_1_DISPRELPND), "DF_1_EDITED": reflect.ValueOf(elf.DF_1_EDITED), "DF_1_ENDFILTEE": reflect.ValueOf(elf.DF_1_ENDFILTEE), "DF_1_GLOBAL": reflect.ValueOf(elf.DF_1_GLOBAL), "DF_1_GLOBAUDIT": reflect.ValueOf(elf.DF_1_GLOBAUDIT), "DF_1_GROUP": reflect.ValueOf(elf.DF_1_GROUP), "DF_1_IGNMULDEF": reflect.ValueOf(elf.DF_1_IGNMULDEF), "DF_1_INITFIRST": reflect.ValueOf(elf.DF_1_INITFIRST), "DF_1_INTERPOSE": reflect.ValueOf(elf.DF_1_INTERPOSE), "DF_1_KMOD": reflect.ValueOf(elf.DF_1_KMOD), "DF_1_LOADFLTR": reflect.ValueOf(elf.DF_1_LOADFLTR), "DF_1_NOCOMMON": reflect.ValueOf(elf.DF_1_NOCOMMON), "DF_1_NODEFLIB": reflect.ValueOf(elf.DF_1_NODEFLIB), "DF_1_NODELETE": reflect.ValueOf(elf.DF_1_NODELETE), "DF_1_NODIRECT": reflect.ValueOf(elf.DF_1_NODIRECT), "DF_1_NODUMP": reflect.ValueOf(elf.DF_1_NODUMP), "DF_1_NOHDR": reflect.ValueOf(elf.DF_1_NOHDR), "DF_1_NOKSYMS": reflect.ValueOf(elf.DF_1_NOKSYMS), "DF_1_NOOPEN": reflect.ValueOf(elf.DF_1_NOOPEN), "DF_1_NORELOC": reflect.ValueOf(elf.DF_1_NORELOC), "DF_1_NOW": reflect.ValueOf(elf.DF_1_NOW), "DF_1_ORIGIN": reflect.ValueOf(elf.DF_1_ORIGIN), "DF_1_PIE": reflect.ValueOf(elf.DF_1_PIE), "DF_1_SINGLETON": reflect.ValueOf(elf.DF_1_SINGLETON), "DF_1_STUB": reflect.ValueOf(elf.DF_1_STUB), "DF_1_SYMINTPOSE": reflect.ValueOf(elf.DF_1_SYMINTPOSE), "DF_1_TRANS": reflect.ValueOf(elf.DF_1_TRANS), "DF_1_WEAKFILTER": reflect.ValueOf(elf.DF_1_WEAKFILTER), "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_32_PCREL": reflect.ValueOf(elf.R_LARCH_32_PCREL), "R_LARCH_64": reflect.ValueOf(elf.R_LARCH_64), "R_LARCH_64_PCREL": reflect.ValueOf(elf.R_LARCH_64_PCREL), "R_LARCH_ABS64_HI12": reflect.ValueOf(elf.R_LARCH_ABS64_HI12), "R_LARCH_ABS64_LO20": reflect.ValueOf(elf.R_LARCH_ABS64_LO20), "R_LARCH_ABS_HI20": reflect.ValueOf(elf.R_LARCH_ABS_HI20), "R_LARCH_ABS_LO12": reflect.ValueOf(elf.R_LARCH_ABS_LO12), "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_ADD6": reflect.ValueOf(elf.R_LARCH_ADD6), "R_LARCH_ADD64": reflect.ValueOf(elf.R_LARCH_ADD64), "R_LARCH_ADD8": reflect.ValueOf(elf.R_LARCH_ADD8), "R_LARCH_ADD_ULEB128": reflect.ValueOf(elf.R_LARCH_ADD_ULEB128), "R_LARCH_ALIGN": reflect.ValueOf(elf.R_LARCH_ALIGN), "R_LARCH_B16": reflect.ValueOf(elf.R_LARCH_B16), "R_LARCH_B21": reflect.ValueOf(elf.R_LARCH_B21), "R_LARCH_B26": reflect.ValueOf(elf.R_LARCH_B26), "R_LARCH_CFA": reflect.ValueOf(elf.R_LARCH_CFA), "R_LARCH_COPY": reflect.ValueOf(elf.R_LARCH_COPY), "R_LARCH_DELETE": reflect.ValueOf(elf.R_LARCH_DELETE), "R_LARCH_GNU_VTENTRY": reflect.ValueOf(elf.R_LARCH_GNU_VTENTRY), "R_LARCH_GNU_VTINHERIT": reflect.ValueOf(elf.R_LARCH_GNU_VTINHERIT), "R_LARCH_GOT64_HI12": reflect.ValueOf(elf.R_LARCH_GOT64_HI12), "R_LARCH_GOT64_LO20": reflect.ValueOf(elf.R_LARCH_GOT64_LO20), "R_LARCH_GOT64_PC_HI12": reflect.ValueOf(elf.R_LARCH_GOT64_PC_HI12), "R_LARCH_GOT64_PC_LO20": reflect.ValueOf(elf.R_LARCH_GOT64_PC_LO20), "R_LARCH_GOT_HI20": reflect.ValueOf(elf.R_LARCH_GOT_HI20), "R_LARCH_GOT_LO12": reflect.ValueOf(elf.R_LARCH_GOT_LO12), "R_LARCH_GOT_PC_HI20": reflect.ValueOf(elf.R_LARCH_GOT_PC_HI20), "R_LARCH_GOT_PC_LO12": reflect.ValueOf(elf.R_LARCH_GOT_PC_LO12), "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_PCALA64_HI12": reflect.ValueOf(elf.R_LARCH_PCALA64_HI12), "R_LARCH_PCALA64_LO20": reflect.ValueOf(elf.R_LARCH_PCALA64_LO20), "R_LARCH_PCALA_HI20": reflect.ValueOf(elf.R_LARCH_PCALA_HI20), "R_LARCH_PCALA_LO12": reflect.ValueOf(elf.R_LARCH_PCALA_LO12), "R_LARCH_PCREL20_S2": reflect.ValueOf(elf.R_LARCH_PCREL20_S2), "R_LARCH_RELATIVE": reflect.ValueOf(elf.R_LARCH_RELATIVE), "R_LARCH_RELAX": reflect.ValueOf(elf.R_LARCH_RELAX), "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_SUB6": reflect.ValueOf(elf.R_LARCH_SUB6), "R_LARCH_SUB64": reflect.ValueOf(elf.R_LARCH_SUB64), "R_LARCH_SUB8": reflect.ValueOf(elf.R_LARCH_SUB8), "R_LARCH_SUB_ULEB128": reflect.ValueOf(elf.R_LARCH_SUB_ULEB128), "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_GD_HI20": reflect.ValueOf(elf.R_LARCH_TLS_GD_HI20), "R_LARCH_TLS_GD_PC_HI20": reflect.ValueOf(elf.R_LARCH_TLS_GD_PC_HI20), "R_LARCH_TLS_IE64_HI12": reflect.ValueOf(elf.R_LARCH_TLS_IE64_HI12), "R_LARCH_TLS_IE64_LO20": reflect.ValueOf(elf.R_LARCH_TLS_IE64_LO20), "R_LARCH_TLS_IE64_PC_HI12": reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_HI12), "R_LARCH_TLS_IE64_PC_LO20": reflect.ValueOf(elf.R_LARCH_TLS_IE64_PC_LO20), "R_LARCH_TLS_IE_HI20": reflect.ValueOf(elf.R_LARCH_TLS_IE_HI20), "R_LARCH_TLS_IE_LO12": reflect.ValueOf(elf.R_LARCH_TLS_IE_LO12), "R_LARCH_TLS_IE_PC_HI20": reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_HI20), "R_LARCH_TLS_IE_PC_LO12": reflect.ValueOf(elf.R_LARCH_TLS_IE_PC_LO12), "R_LARCH_TLS_LD_HI20": reflect.ValueOf(elf.R_LARCH_TLS_LD_HI20), "R_LARCH_TLS_LD_PC_HI20": reflect.ValueOf(elf.R_LARCH_TLS_LD_PC_HI20), "R_LARCH_TLS_LE64_HI12": reflect.ValueOf(elf.R_LARCH_TLS_LE64_HI12), "R_LARCH_TLS_LE64_LO20": reflect.ValueOf(elf.R_LARCH_TLS_LE64_LO20), "R_LARCH_TLS_LE_HI20": reflect.ValueOf(elf.R_LARCH_TLS_LE_HI20), "R_LARCH_TLS_LE_LO12": reflect.ValueOf(elf.R_LARCH_TLS_LE_LO12), "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_PC32": reflect.ValueOf(elf.R_MIPS_PC32), "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_HIGHER34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER34), "R_PPC64_ADDR16_HIGHERA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA), "R_PPC64_ADDR16_HIGHERA34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA34), "R_PPC64_ADDR16_HIGHEST": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST), "R_PPC64_ADDR16_HIGHEST34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST34), "R_PPC64_ADDR16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA), "R_PPC64_ADDR16_HIGHESTA34": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA34), "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_COPY": reflect.ValueOf(elf.R_PPC64_COPY), "R_PPC64_D28": reflect.ValueOf(elf.R_PPC64_D28), "R_PPC64_D34": reflect.ValueOf(elf.R_PPC64_D34), "R_PPC64_D34_HA30": reflect.ValueOf(elf.R_PPC64_D34_HA30), "R_PPC64_D34_HI30": reflect.ValueOf(elf.R_PPC64_D34_HI30), "R_PPC64_D34_LO": reflect.ValueOf(elf.R_PPC64_D34_LO), "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_DTPREL34": reflect.ValueOf(elf.R_PPC64_DTPREL34), "R_PPC64_DTPREL64": reflect.ValueOf(elf.R_PPC64_DTPREL64), "R_PPC64_ENTRY": reflect.ValueOf(elf.R_PPC64_ENTRY), "R_PPC64_GLOB_DAT": reflect.ValueOf(elf.R_PPC64_GLOB_DAT), "R_PPC64_GNU_VTENTRY": reflect.ValueOf(elf.R_PPC64_GNU_VTENTRY), "R_PPC64_GNU_VTINHERIT": reflect.ValueOf(elf.R_PPC64_GNU_VTINHERIT), "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_DTPREL_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL_PCREL34), "R_PPC64_GOT_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_PCREL34), "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_TLSGD_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD_PCREL34), "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_TLSLD_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD_PCREL34), "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_GOT_TPREL_PCREL34": reflect.ValueOf(elf.R_PPC64_GOT_TPREL_PCREL34), "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_PCREL28": reflect.ValueOf(elf.R_PPC64_PCREL28), "R_PPC64_PCREL34": reflect.ValueOf(elf.R_PPC64_PCREL34), "R_PPC64_PCREL_OPT": reflect.ValueOf(elf.R_PPC64_PCREL_OPT), "R_PPC64_PLT16_HA": reflect.ValueOf(elf.R_PPC64_PLT16_HA), "R_PPC64_PLT16_HI": reflect.ValueOf(elf.R_PPC64_PLT16_HI), "R_PPC64_PLT16_LO": reflect.ValueOf(elf.R_PPC64_PLT16_LO), "R_PPC64_PLT16_LO_DS": reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS), "R_PPC64_PLT32": reflect.ValueOf(elf.R_PPC64_PLT32), "R_PPC64_PLT64": reflect.ValueOf(elf.R_PPC64_PLT64), "R_PPC64_PLTCALL": reflect.ValueOf(elf.R_PPC64_PLTCALL), "R_PPC64_PLTCALL_NOTOC": reflect.ValueOf(elf.R_PPC64_PLTCALL_NOTOC), "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_PLTREL32": reflect.ValueOf(elf.R_PPC64_PLTREL32), "R_PPC64_PLTREL64": reflect.ValueOf(elf.R_PPC64_PLTREL64), "R_PPC64_PLTSEQ": reflect.ValueOf(elf.R_PPC64_PLTSEQ), "R_PPC64_PLTSEQ_NOTOC": reflect.ValueOf(elf.R_PPC64_PLTSEQ_NOTOC), "R_PPC64_PLT_PCREL34": reflect.ValueOf(elf.R_PPC64_PLT_PCREL34), "R_PPC64_PLT_PCREL34_NOTOC": reflect.ValueOf(elf.R_PPC64_PLT_PCREL34_NOTOC), "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_HIGH": reflect.ValueOf(elf.R_PPC64_REL16_HIGH), "R_PPC64_REL16_HIGHA": reflect.ValueOf(elf.R_PPC64_REL16_HIGHA), "R_PPC64_REL16_HIGHER": reflect.ValueOf(elf.R_PPC64_REL16_HIGHER), "R_PPC64_REL16_HIGHER34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHER34), "R_PPC64_REL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA), "R_PPC64_REL16_HIGHERA34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHERA34), "R_PPC64_REL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST), "R_PPC64_REL16_HIGHEST34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHEST34), "R_PPC64_REL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA), "R_PPC64_REL16_HIGHESTA34": reflect.ValueOf(elf.R_PPC64_REL16_HIGHESTA34), "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_REL24_P9NOTOC": reflect.ValueOf(elf.R_PPC64_REL24_P9NOTOC), "R_PPC64_REL30": reflect.ValueOf(elf.R_PPC64_REL30), "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": reflect.ValueOf(elf.R_PPC64_SECTOFF), "R_PPC64_SECTOFF_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_DS), "R_PPC64_SECTOFF_HA": reflect.ValueOf(elf.R_PPC64_SECTOFF_HA), "R_PPC64_SECTOFF_HI": reflect.ValueOf(elf.R_PPC64_SECTOFF_HI), "R_PPC64_SECTOFF_LO": reflect.ValueOf(elf.R_PPC64_SECTOFF_LO), "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_TPREL34": reflect.ValueOf(elf.R_PPC64_TPREL34), "R_PPC64_TPREL64": reflect.ValueOf(elf.R_PPC64_TPREL64), "R_PPC64_UADDR16": reflect.ValueOf(elf.R_PPC64_UADDR16), "R_PPC64_UADDR32": reflect.ValueOf(elf.R_PPC64_UADDR32), "R_PPC64_UADDR64": reflect.ValueOf(elf.R_PPC64_UADDR64), "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)), "DynFlag1": reflect.ValueOf((*elf.DynFlag1)(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)), } } yaegi-0.16.1/stdlib/go1_22_debug_gosym.go000066400000000000000000000016261460330105400200630ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_debug_macho.go000066400000000000000000000234561460330105400200210ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_debug_pe.go000066400000000000000000000306651460330105400173360ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_RISCV128": reflect.ValueOf(constant.MakeFromLiteral("20776", token.INT, 0)), "IMAGE_FILE_MACHINE_RISCV32": reflect.ValueOf(constant.MakeFromLiteral("20530", token.INT, 0)), "IMAGE_FILE_MACHINE_RISCV64": reflect.ValueOf(constant.MakeFromLiteral("20580", 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)), } } yaegi-0.16.1/stdlib/go1_22_debug_plan9obj.go000066400000000000000000000022041460330105400204340ustar00rootroot00000000000000// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding.go000066400000000000000000000040371460330105400173440ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_encoding_ascii85.go000066400000000000000000000012361460330105400206670ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_asn1.go000066400000000000000000000061631460330105400202700ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_base32.go000066400000000000000000000015141460330105400205000ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_base64.go000066400000000000000000000017511460330105400205100ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_binary.go000066400000000000000000000067661460330105400207230ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), "NativeEndian": reflect.ValueOf(&binary.NativeEndian).Elem(), "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) } yaegi-0.16.1/stdlib/go1_22_encoding_csv.go000066400000000000000000000015041460330105400202130ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_gob.go000066400000000000000000000027151460330105400201740ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_encoding_hex.go000066400000000000000000000020451460330105400202050ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "encoding/hex" "reflect" ) func init() { Symbols["encoding/hex/hex"] = map[string]reflect.Value{ // function, constant and variable definitions "AppendDecode": reflect.ValueOf(hex.AppendDecode), "AppendEncode": reflect.ValueOf(hex.AppendEncode), "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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_json.go000066400000000000000000000054221460330105400203740ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_encoding_pem.go000066400000000000000000000007721460330105400202070ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_encoding_xml.go000066400000000000000000000107641460330105400202300ustar00rootroot00000000000000// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_errors.go000066400000000000000000000011051460330105400170630ustar00rootroot00000000000000// Code generated by 'yaegi extract errors'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "errors" "reflect" ) func init() { Symbols["errors/errors"] = map[string]reflect.Value{ // function, constant and variable definitions "As": reflect.ValueOf(errors.As), "ErrUnsupported": reflect.ValueOf(&errors.ErrUnsupported).Elem(), "Is": reflect.ValueOf(errors.Is), "Join": reflect.ValueOf(errors.Join), "New": reflect.ValueOf(errors.New), "Unwrap": reflect.ValueOf(errors.Unwrap), } } yaegi-0.16.1/stdlib/go1_22_expvar.go000066400000000000000000000024761460330105400170700ustar00rootroot00000000000000// Code generated by 'yaegi extract expvar'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_flag.go000066400000000000000000000066421460330105400164730ustar00rootroot00000000000000// Code generated by 'yaegi extract flag'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "BoolFunc": reflect.ValueOf(flag.BoolFunc), "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() } yaegi-0.16.1/stdlib/go1_22_fmt.go000066400000000000000000000105401460330105400163400ustar00rootroot00000000000000// Code generated by 'yaegi extract fmt'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "FormatString": reflect.ValueOf(fmt.FormatString), "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() } yaegi-0.16.1/stdlib/go1_22_go_ast.go000066400000000000000000000205251460330105400170320ustar00rootroot00000000000000// Code generated by 'yaegi extract go/ast'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "IsGenerated": reflect.ValueOf(ast.IsGenerated), "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), "Unparen": reflect.ValueOf(ast.Unparen), "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) } yaegi-0.16.1/stdlib/go1_22_go_build.go000066400000000000000000000023541460330105400173420ustar00rootroot00000000000000// Code generated by 'yaegi extract go/build'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), "Directive": reflect.ValueOf((*build.Directive)(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)), } } yaegi-0.16.1/stdlib/go1_22_go_build_constraint.go000066400000000000000000000027451460330105400216120ustar00rootroot00000000000000// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "go/build/constraint" "reflect" ) func init() { Symbols["go/build/constraint/constraint"] = map[string]reflect.Value{ // function, constant and variable definitions "GoVersion": reflect.ValueOf(constraint.GoVersion), "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() } yaegi-0.16.1/stdlib/go1_22_go_constant.go000066400000000000000000000057531460330105400201020ustar00rootroot00000000000000// Code generated by 'yaegi extract go/constant'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_go_doc.go000066400000000000000000000023671460330105400170140ustar00rootroot00000000000000// Code generated by 'yaegi extract go/doc'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_go_doc_comment.go000066400000000000000000000031251460330105400205270ustar00rootroot00000000000000// Code generated by 'yaegi extract go/doc/comment'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "go/doc/comment" "reflect" ) func init() { Symbols["go/doc/comment/comment"] = map[string]reflect.Value{ // function, constant and variable definitions "DefaultLookupPackage": reflect.ValueOf(comment.DefaultLookupPackage), // type definitions "Block": reflect.ValueOf((*comment.Block)(nil)), "Code": reflect.ValueOf((*comment.Code)(nil)), "Doc": reflect.ValueOf((*comment.Doc)(nil)), "DocLink": reflect.ValueOf((*comment.DocLink)(nil)), "Heading": reflect.ValueOf((*comment.Heading)(nil)), "Italic": reflect.ValueOf((*comment.Italic)(nil)), "Link": reflect.ValueOf((*comment.Link)(nil)), "LinkDef": reflect.ValueOf((*comment.LinkDef)(nil)), "List": reflect.ValueOf((*comment.List)(nil)), "ListItem": reflect.ValueOf((*comment.ListItem)(nil)), "Paragraph": reflect.ValueOf((*comment.Paragraph)(nil)), "Parser": reflect.ValueOf((*comment.Parser)(nil)), "Plain": reflect.ValueOf((*comment.Plain)(nil)), "Printer": reflect.ValueOf((*comment.Printer)(nil)), "Text": reflect.ValueOf((*comment.Text)(nil)), // interface wrapper definitions "_Block": reflect.ValueOf((*_go_doc_comment_Block)(nil)), "_Text": reflect.ValueOf((*_go_doc_comment_Text)(nil)), } } // _go_doc_comment_Block is an interface wrapper for Block type type _go_doc_comment_Block struct { IValue interface{} } // _go_doc_comment_Text is an interface wrapper for Text type type _go_doc_comment_Text struct { IValue interface{} } yaegi-0.16.1/stdlib/go1_22_go_format.go000066400000000000000000000005511460330105400175300ustar00rootroot00000000000000// Code generated by 'yaegi extract go/format'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_go_importer.go000066400000000000000000000010041460330105400200730ustar00rootroot00000000000000// Code generated by 'yaegi extract go/importer'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_go_parser.go000066400000000000000000000021331460330105400175320ustar00rootroot00000000000000// Code generated by 'yaegi extract go/parser'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_go_printer.go000066400000000000000000000013431460330105400177230ustar00rootroot00000000000000// Code generated by 'yaegi extract go/printer'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_go_scanner.go000066400000000000000000000013141460330105400176670ustar00rootroot00000000000000// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_go_token.go000066400000000000000000000122341460330105400173610ustar00rootroot00000000000000// Code generated by 'yaegi extract go/token'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_go_types.go000066400000000000000000000306141460330105400174070ustar00rootroot00000000000000// Code generated by 'yaegi extract go/types'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "NewAlias": reflect.ValueOf(types.NewAlias), "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), "Satisfies": reflect.ValueOf(types.Satisfies), "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), "Unalias": reflect.ValueOf(types.Unalias), "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 "Alias": reflect.ValueOf((*types.Alias)(nil)), "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() } yaegi-0.16.1/stdlib/go1_22_go_version.go000066400000000000000000000006411460330105400177250ustar00rootroot00000000000000// Code generated by 'yaegi extract go/version'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "go/version" "reflect" ) func init() { Symbols["go/version/version"] = map[string]reflect.Value{ // function, constant and variable definitions "Compare": reflect.ValueOf(version.Compare), "IsValid": reflect.ValueOf(version.IsValid), "Lang": reflect.ValueOf(version.Lang), } } yaegi-0.16.1/stdlib/go1_22_hash.go000066400000000000000000000045751460330105400165100ustar00rootroot00000000000000// Code generated by 'yaegi extract hash'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_hash_adler32.go000066400000000000000000000007411460330105400200130ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_hash_crc32.go000066400000000000000000000020761460330105400174760ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_hash_crc64.go000066400000000000000000000014771460330105400175070ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_hash_fnv.go000066400000000000000000000010101460330105400173360ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_hash_maphash.go000066400000000000000000000010441460330105400201750ustar00rootroot00000000000000// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_html.go000066400000000000000000000005641460330105400165230ustar00rootroot00000000000000// Code generated by 'yaegi extract html'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_html_template.go000066400000000000000000000051221460330105400204110ustar00rootroot00000000000000// Code generated by 'yaegi extract html/template'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "ErrJSTemplate": reflect.ValueOf(template.ErrJSTemplate), "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)), } } yaegi-0.16.1/stdlib/go1_22_image.go000066400000000000000000000126611460330105400166420ustar00rootroot00000000000000// Code generated by 'yaegi extract image'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_image_color.go000066400000000000000000000054621460330105400200410ustar00rootroot00000000000000// Code generated by 'yaegi extract image/color'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_image_color_palette.go000066400000000000000000000006361460330105400215550ustar00rootroot00000000000000// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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(), } } yaegi-0.16.1/stdlib/go1_22_image_draw.go000066400000000000000000000063751460330105400176640ustar00rootroot00000000000000// Code generated by 'yaegi extract image/draw'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_image_gif.go000066400000000000000000000016731460330105400174700ustar00rootroot00000000000000// Code generated by 'yaegi extract image/gif'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_image_jpeg.go000066400000000000000000000023761460330105400176510ustar00rootroot00000000000000// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_image_png.go000066400000000000000000000031071460330105400175010ustar00rootroot00000000000000// Code generated by 'yaegi extract image/png'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_index_suffixarray.go000066400000000000000000000006511460330105400213060ustar00rootroot00000000000000// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_io.go000066400000000000000000000270511460330105400161660ustar00rootroot00000000000000// Code generated by 'yaegi extract io'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "NewOffsetWriter": reflect.ValueOf(io.NewOffsetWriter), "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)), "OffsetWriter": reflect.ValueOf((*io.OffsetWriter)(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) } yaegi-0.16.1/stdlib/go1_22_io_fs.go000066400000000000000000000170051460330105400166540ustar00rootroot00000000000000// Code generated by 'yaegi extract io/fs'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "FormatDirEntry": reflect.ValueOf(fs.FormatDirEntry), "FormatFileInfo": reflect.ValueOf(fs.FormatFileInfo), "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), "SkipAll": reflect.ValueOf(&fs.SkipAll).Elem(), "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) } yaegi-0.16.1/stdlib/go1_22_io_ioutil.go000066400000000000000000000012411460330105400175440ustar00rootroot00000000000000// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_log.go000066400000000000000000000035141460330105400163360ustar00rootroot00000000000000// Code generated by 'yaegi extract log'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_log_slog.go000066400000000000000000000134001460330105400173550ustar00rootroot00000000000000// Code generated by 'yaegi extract log/slog'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "context" "go/constant" "go/token" "log/slog" "reflect" ) func init() { Symbols["log/slog/slog"] = map[string]reflect.Value{ // function, constant and variable definitions "Any": reflect.ValueOf(slog.Any), "AnyValue": reflect.ValueOf(slog.AnyValue), "Bool": reflect.ValueOf(slog.Bool), "BoolValue": reflect.ValueOf(slog.BoolValue), "Debug": reflect.ValueOf(slog.Debug), "DebugContext": reflect.ValueOf(slog.DebugContext), "Default": reflect.ValueOf(slog.Default), "Duration": reflect.ValueOf(slog.Duration), "DurationValue": reflect.ValueOf(slog.DurationValue), "Error": reflect.ValueOf(slog.Error), "ErrorContext": reflect.ValueOf(slog.ErrorContext), "Float64": reflect.ValueOf(slog.Float64), "Float64Value": reflect.ValueOf(slog.Float64Value), "Group": reflect.ValueOf(slog.Group), "GroupValue": reflect.ValueOf(slog.GroupValue), "Info": reflect.ValueOf(slog.Info), "InfoContext": reflect.ValueOf(slog.InfoContext), "Int": reflect.ValueOf(slog.Int), "Int64": reflect.ValueOf(slog.Int64), "Int64Value": reflect.ValueOf(slog.Int64Value), "IntValue": reflect.ValueOf(slog.IntValue), "KindAny": reflect.ValueOf(slog.KindAny), "KindBool": reflect.ValueOf(slog.KindBool), "KindDuration": reflect.ValueOf(slog.KindDuration), "KindFloat64": reflect.ValueOf(slog.KindFloat64), "KindGroup": reflect.ValueOf(slog.KindGroup), "KindInt64": reflect.ValueOf(slog.KindInt64), "KindLogValuer": reflect.ValueOf(slog.KindLogValuer), "KindString": reflect.ValueOf(slog.KindString), "KindTime": reflect.ValueOf(slog.KindTime), "KindUint64": reflect.ValueOf(slog.KindUint64), "LevelDebug": reflect.ValueOf(slog.LevelDebug), "LevelError": reflect.ValueOf(slog.LevelError), "LevelInfo": reflect.ValueOf(slog.LevelInfo), "LevelKey": reflect.ValueOf(constant.MakeFromLiteral("\"level\"", token.STRING, 0)), "LevelWarn": reflect.ValueOf(slog.LevelWarn), "Log": reflect.ValueOf(slog.Log), "LogAttrs": reflect.ValueOf(slog.LogAttrs), "MessageKey": reflect.ValueOf(constant.MakeFromLiteral("\"msg\"", token.STRING, 0)), "New": reflect.ValueOf(slog.New), "NewJSONHandler": reflect.ValueOf(slog.NewJSONHandler), "NewLogLogger": reflect.ValueOf(slog.NewLogLogger), "NewRecord": reflect.ValueOf(slog.NewRecord), "NewTextHandler": reflect.ValueOf(slog.NewTextHandler), "SetDefault": reflect.ValueOf(slog.SetDefault), "SetLogLoggerLevel": reflect.ValueOf(slog.SetLogLoggerLevel), "SourceKey": reflect.ValueOf(constant.MakeFromLiteral("\"source\"", token.STRING, 0)), "String": reflect.ValueOf(slog.String), "StringValue": reflect.ValueOf(slog.StringValue), "Time": reflect.ValueOf(slog.Time), "TimeKey": reflect.ValueOf(constant.MakeFromLiteral("\"time\"", token.STRING, 0)), "TimeValue": reflect.ValueOf(slog.TimeValue), "Uint64": reflect.ValueOf(slog.Uint64), "Uint64Value": reflect.ValueOf(slog.Uint64Value), "Warn": reflect.ValueOf(slog.Warn), "WarnContext": reflect.ValueOf(slog.WarnContext), "With": reflect.ValueOf(slog.With), // type definitions "Attr": reflect.ValueOf((*slog.Attr)(nil)), "Handler": reflect.ValueOf((*slog.Handler)(nil)), "HandlerOptions": reflect.ValueOf((*slog.HandlerOptions)(nil)), "JSONHandler": reflect.ValueOf((*slog.JSONHandler)(nil)), "Kind": reflect.ValueOf((*slog.Kind)(nil)), "Level": reflect.ValueOf((*slog.Level)(nil)), "LevelVar": reflect.ValueOf((*slog.LevelVar)(nil)), "Leveler": reflect.ValueOf((*slog.Leveler)(nil)), "LogValuer": reflect.ValueOf((*slog.LogValuer)(nil)), "Logger": reflect.ValueOf((*slog.Logger)(nil)), "Record": reflect.ValueOf((*slog.Record)(nil)), "Source": reflect.ValueOf((*slog.Source)(nil)), "TextHandler": reflect.ValueOf((*slog.TextHandler)(nil)), "Value": reflect.ValueOf((*slog.Value)(nil)), // interface wrapper definitions "_Handler": reflect.ValueOf((*_log_slog_Handler)(nil)), "_Leveler": reflect.ValueOf((*_log_slog_Leveler)(nil)), "_LogValuer": reflect.ValueOf((*_log_slog_LogValuer)(nil)), } } // _log_slog_Handler is an interface wrapper for Handler type type _log_slog_Handler struct { IValue interface{} WEnabled func(a0 context.Context, a1 slog.Level) bool WHandle func(a0 context.Context, a1 slog.Record) error WWithAttrs func(attrs []slog.Attr) slog.Handler WWithGroup func(name string) slog.Handler } func (W _log_slog_Handler) Enabled(a0 context.Context, a1 slog.Level) bool { return W.WEnabled(a0, a1) } func (W _log_slog_Handler) Handle(a0 context.Context, a1 slog.Record) error { return W.WHandle(a0, a1) } func (W _log_slog_Handler) WithAttrs(attrs []slog.Attr) slog.Handler { return W.WWithAttrs(attrs) } func (W _log_slog_Handler) WithGroup(name string) slog.Handler { return W.WWithGroup(name) } // _log_slog_Leveler is an interface wrapper for Leveler type type _log_slog_Leveler struct { IValue interface{} WLevel func() slog.Level } func (W _log_slog_Leveler) Level() slog.Level { return W.WLevel() } // _log_slog_LogValuer is an interface wrapper for LogValuer type type _log_slog_LogValuer struct { IValue interface{} WLogValue func() slog.Value } func (W _log_slog_LogValuer) LogValue() slog.Value { return W.WLogValue() } yaegi-0.16.1/stdlib/go1_22_log_syslog.go000066400000000000000000000040611460330105400177340ustar00rootroot00000000000000// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. //go:build go1.22 && !windows && !nacl && !plan9 // +build go1.22,!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)), } } yaegi-0.16.1/stdlib/go1_22_maps.go000066400000000000000000000003071460330105400165120ustar00rootroot00000000000000// Code generated by 'yaegi extract maps'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "reflect" ) func init() { Symbols["maps/maps"] = map[string]reflect.Value{} } yaegi-0.16.1/stdlib/go1_22_math.go000066400000000000000000000243461460330105400165140ustar00rootroot00000000000000// Code generated by 'yaegi extract math'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_math_big.go000066400000000000000000000033451460330105400173310ustar00rootroot00000000000000// Code generated by 'yaegi extract math/big'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_math_bits.go000066400000000000000000000057141460330105400175330ustar00rootroot00000000000000// Code generated by 'yaegi extract math/bits'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_math_cmplx.go000066400000000000000000000025131460330105400177070ustar00rootroot00000000000000// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_math_rand.go000066400000000000000000000042741460330105400175160ustar00rootroot00000000000000// Code generated by 'yaegi extract math/rand'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_math_rand_v2.go000066400000000000000000000035041460330105400201200ustar00rootroot00000000000000// Code generated by 'yaegi extract math/rand/v2'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "math/rand/v2" "reflect" ) func init() { Symbols["math/rand/v2/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), "Int32": reflect.ValueOf(rand.Int32), "Int32N": reflect.ValueOf(rand.Int32N), "Int64": reflect.ValueOf(rand.Int64), "Int64N": reflect.ValueOf(rand.Int64N), "IntN": reflect.ValueOf(rand.IntN), "New": reflect.ValueOf(rand.New), "NewChaCha8": reflect.ValueOf(rand.NewChaCha8), "NewPCG": reflect.ValueOf(rand.NewPCG), "NewZipf": reflect.ValueOf(rand.NewZipf), "NormFloat64": reflect.ValueOf(rand.NormFloat64), "Perm": reflect.ValueOf(rand.Perm), "Shuffle": reflect.ValueOf(rand.Shuffle), "Uint32": reflect.ValueOf(rand.Uint32), "Uint32N": reflect.ValueOf(rand.Uint32N), "Uint64": reflect.ValueOf(rand.Uint64), "Uint64N": reflect.ValueOf(rand.Uint64N), "UintN": reflect.ValueOf(rand.UintN), // type definitions "ChaCha8": reflect.ValueOf((*rand.ChaCha8)(nil)), "PCG": reflect.ValueOf((*rand.PCG)(nil)), "Rand": reflect.ValueOf((*rand.Rand)(nil)), "Source": reflect.ValueOf((*rand.Source)(nil)), "Zipf": reflect.ValueOf((*rand.Zipf)(nil)), // interface wrapper definitions "_Source": reflect.ValueOf((*_math_rand_v2_Source)(nil)), } } // _math_rand_v2_Source is an interface wrapper for Source type type _math_rand_v2_Source struct { IValue interface{} WUint64 func() uint64 } func (W _math_rand_v2_Source) Uint64() uint64 { return W.WUint64() } yaegi-0.16.1/stdlib/go1_22_mime.go000066400000000000000000000016771460330105400165140ustar00rootroot00000000000000// Code generated by 'yaegi extract mime'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_mime_multipart.go000066400000000000000000000031421460330105400206020ustar00rootroot00000000000000// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_mime_quotedprintable.go000066400000000000000000000011041460330105400217570ustar00rootroot00000000000000// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_net.go000066400000000000000000000245351460330105400163510ustar00rootroot00000000000000// Code generated by 'yaegi extract net'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "FlagRunning": reflect.ValueOf(net.FlagRunning), "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) } yaegi-0.16.1/stdlib/go1_22_net_http.go000066400000000000000000000503361460330105400174060ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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(), "ErrSchemeMismatch": reflect.ValueOf(&http.ErrSchemeMismatch).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), "FileServerFS": reflect.ValueOf(http.FileServerFS), "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), "NewFileTransportFS": reflect.ValueOf(http.NewFileTransportFS), "NewRequest": reflect.ValueOf(http.NewRequest), "NewRequestWithContext": reflect.ValueOf(http.NewRequestWithContext), "NewResponseController": reflect.ValueOf(http.NewResponseController), "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), "ServeFileFS": reflect.ValueOf(http.ServeFileFS), "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)), "ResponseController": reflect.ValueOf((*http.ResponseController)(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) } yaegi-0.16.1/stdlib/go1_22_net_http_cgi.go000066400000000000000000000007761460330105400202330ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_net_http_cookiejar.go000066400000000000000000000022321460330105400214240ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_net_http_fcgi.go000066400000000000000000000010261460330105400203660ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_net_http_httptest.go000066400000000000000000000016141460330105400213400ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_net_http_httptrace.go000066400000000000000000000014671460330105400214650ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_net_http_httputil.go000066400000000000000000000040331460330105400213340ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), "ProxyRequest": reflect.ValueOf((*httputil.ProxyRequest)(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) } yaegi-0.16.1/stdlib/go1_22_net_http_pprof.go000066400000000000000000000010521460330105400206030ustar00rootroot00000000000000// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_net_mail.go000066400000000000000000000015221460330105400173420ustar00rootroot00000000000000// Code generated by 'yaegi extract net/mail'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_net_netip.go000066400000000000000000000030021460330105400175320ustar00rootroot00000000000000// Code generated by 'yaegi extract net/netip'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "IPv6LinkLocalAllRouters": reflect.ValueOf(netip.IPv6LinkLocalAllRouters), "IPv6Loopback": reflect.ValueOf(netip.IPv6Loopback), "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)), } } yaegi-0.16.1/stdlib/go1_22_net_rpc.go000066400000000000000000000065231460330105400172120ustar00rootroot00000000000000// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_net_rpc_jsonrpc.go000066400000000000000000000011031460330105400207350ustar00rootroot00000000000000// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_net_smtp.go000066400000000000000000000024321460330105400174040ustar00rootroot00000000000000// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_net_textproto.go000066400000000000000000000023121460330105400204660ustar00rootroot00000000000000// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_net_url.go000066400000000000000000000022541460330105400172250ustar00rootroot00000000000000// Code generated by 'yaegi extract net/url'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_os.go000066400000000000000000000203431460330105400161750ustar00rootroot00000000000000// Code generated by 'yaegi extract os'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_os_signal.go000066400000000000000000000011121460330105400175230ustar00rootroot00000000000000// Code generated by 'yaegi extract os/signal'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_os_user.go000066400000000000000000000017131460330105400172330ustar00rootroot00000000000000// Code generated by 'yaegi extract os/user'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_path.go000066400000000000000000000012741460330105400165120ustar00rootroot00000000000000// Code generated by 'yaegi extract path'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_path_filepath.go000066400000000000000000000034231460330105400203640ustar00rootroot00000000000000// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "IsLocal": reflect.ValueOf(filepath.IsLocal), "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)), "SkipAll": reflect.ValueOf(&filepath.SkipAll).Elem(), "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)), } } yaegi-0.16.1/stdlib/go1_22_reflect.go000066400000000000000000000173171460330105400172070ustar00rootroot00000000000000// Code generated by 'yaegi extract reflect'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_regexp.go000066400000000000000000000014471460330105400170520ustar00rootroot00000000000000// Code generated by 'yaegi extract regexp'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_regexp_syntax.go000066400000000000000000000125211460330105400204530ustar00rootroot00000000000000// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "ErrLarge": reflect.ValueOf(syntax.ErrLarge), "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)), } } yaegi-0.16.1/stdlib/go1_22_runtime.go000066400000000000000000000075731460330105400172510ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), "PanicNilError": reflect.ValueOf((*runtime.PanicNilError)(nil)), "Pinner": reflect.ValueOf((*runtime.Pinner)(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() } yaegi-0.16.1/stdlib/go1_22_runtime_debug.go000066400000000000000000000024241460330105400204050ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_runtime_metrics.go000066400000000000000000000017761460330105400207760ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_runtime_pprof.go000066400000000000000000000021451460330105400204450ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_runtime_trace.go000066400000000000000000000014361460330105400204170ustar00rootroot00000000000000// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_slices.go000066400000000000000000000003151460330105400170330ustar00rootroot00000000000000// Code generated by 'yaegi extract slices'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "reflect" ) func init() { Symbols["slices/slices"] = map[string]reflect.Value{} } yaegi-0.16.1/stdlib/go1_22_sort.go000066400000000000000000000037371460330105400165530ustar00rootroot00000000000000// Code generated by 'yaegi extract sort'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_strconv.go000066400000000000000000000056021460330105400172530ustar00rootroot00000000000000// Code generated by 'yaegi extract strconv'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_strings.go000066400000000000000000000064401460330105400172470ustar00rootroot00000000000000// Code generated by 'yaegi extract strings'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "ContainsFunc": reflect.ValueOf(strings.ContainsFunc), "ContainsRune": reflect.ValueOf(strings.ContainsRune), "Count": reflect.ValueOf(strings.Count), "Cut": reflect.ValueOf(strings.Cut), "CutPrefix": reflect.ValueOf(strings.CutPrefix), "CutSuffix": reflect.ValueOf(strings.CutSuffix), "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)), } } yaegi-0.16.1/stdlib/go1_22_sync.go000066400000000000000000000021261460330105400165270ustar00rootroot00000000000000// Code generated by 'yaegi extract sync'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "reflect" "sync" ) func init() { Symbols["sync/sync"] = map[string]reflect.Value{ // function, constant and variable definitions "NewCond": reflect.ValueOf(sync.NewCond), "OnceFunc": reflect.ValueOf(sync.OnceFunc), // 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() } yaegi-0.16.1/stdlib/go1_22_sync_atomic.go000066400000000000000000000047761460330105400201000ustar00rootroot00000000000000// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_testing.go000066400000000000000000000073051460330105400172340ustar00rootroot00000000000000// Code generated by 'yaegi extract testing'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "Testing": reflect.ValueOf(testing.Testing), "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() } yaegi-0.16.1/stdlib/go1_22_testing_fstest.go000066400000000000000000000007171460330105400206240ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_testing_iotest.go000066400000000000000000000015551460330105400206240ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/go1_22_testing_quick.go000066400000000000000000000022621460330105400204250ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/go1_22_testing_slogtest.go000066400000000000000000000006221460330105400211530ustar00rootroot00000000000000// Code generated by 'yaegi extract testing/slogtest'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "reflect" "testing/slogtest" ) func init() { Symbols["testing/slogtest/slogtest"] = map[string]reflect.Value{ // function, constant and variable definitions "Run": reflect.ValueOf(slogtest.Run), "TestHandler": reflect.ValueOf(slogtest.TestHandler), } } yaegi-0.16.1/stdlib/go1_22_text_scanner.go000066400000000000000000000037331460330105400202550ustar00rootroot00000000000000// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_text_tabwriter.go000066400000000000000000000016521460330105400206250ustar00rootroot00000000000000// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_text_template.go000066400000000000000000000023551460330105400204360ustar00rootroot00000000000000// Code generated by 'yaegi extract text/template'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/go1_22_text_template_parse.go000066400000000000000000000100751460330105400216260ustar00rootroot00000000000000// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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() } yaegi-0.16.1/stdlib/go1_22_time.go000066400000000000000000000131461460330105400165150ustar00rootroot00000000000000// Code generated by 'yaegi extract time'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "DateOnly": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02\"", token.STRING, 0)), "DateTime": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02 15:04:05\"", token.STRING, 0)), "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), "TimeOnly": reflect.ValueOf(constant.MakeFromLiteral("\"15:04:05\"", token.STRING, 0)), "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)), } } yaegi-0.16.1/stdlib/go1_22_unicode.go000066400000000000000000000576411460330105400172150ustar00rootroot00000000000000// Code generated by 'yaegi extract unicode'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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(), "Cypro_Minoan": reflect.ValueOf(&unicode.Cypro_Minoan).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(), "Kawi": reflect.ValueOf(&unicode.Kawi).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(), "Nag_Mundari": reflect.ValueOf(&unicode.Nag_Mundari).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(), "Old_Uyghur": reflect.ValueOf(&unicode.Old_Uyghur).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(), "Tangsa": reflect.ValueOf(&unicode.Tangsa).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), "Toto": reflect.ValueOf(&unicode.Toto).Elem(), "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("\"15.0.0\"", token.STRING, 0)), "Vithkuqi": reflect.ValueOf(&unicode.Vithkuqi).Elem(), "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)), } } yaegi-0.16.1/stdlib/go1_22_unicode_utf16.go000066400000000000000000000011171460330105400202250ustar00rootroot00000000000000// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package stdlib import ( "reflect" "unicode/utf16" ) func init() { Symbols["unicode/utf16/utf16"] = map[string]reflect.Value{ // function, constant and variable definitions "AppendRune": reflect.ValueOf(utf16.AppendRune), "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), } } yaegi-0.16.1/stdlib/go1_22_unicode_utf8.go000066400000000000000000000031441460330105400201500ustar00rootroot00000000000000// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/maptypes.go000066400000000000000000000034401460330105400163440ustar00rootroot00000000000000package stdlib import ( "encoding" "encoding/json" "encoding/xml" "fmt" "log" "reflect" ) func init() { mt := []reflect.Type{ reflect.TypeOf((*fmt.Formatter)(nil)).Elem(), reflect.TypeOf((*fmt.Stringer)(nil)).Elem(), } MapTypes[reflect.ValueOf(fmt.Errorf)] = mt MapTypes[reflect.ValueOf(fmt.Fprint)] = mt MapTypes[reflect.ValueOf(fmt.Fprintf)] = mt MapTypes[reflect.ValueOf(fmt.Fprintln)] = mt MapTypes[reflect.ValueOf(fmt.Print)] = mt MapTypes[reflect.ValueOf(fmt.Printf)] = mt MapTypes[reflect.ValueOf(fmt.Println)] = mt MapTypes[reflect.ValueOf(fmt.Sprint)] = mt MapTypes[reflect.ValueOf(fmt.Sprintf)] = mt MapTypes[reflect.ValueOf(fmt.Sprintln)] = mt MapTypes[reflect.ValueOf(log.Fatal)] = mt MapTypes[reflect.ValueOf(log.Fatalf)] = mt MapTypes[reflect.ValueOf(log.Fatalln)] = mt MapTypes[reflect.ValueOf(log.Panic)] = mt MapTypes[reflect.ValueOf(log.Panicf)] = mt MapTypes[reflect.ValueOf(log.Panicln)] = mt mt = []reflect.Type{reflect.TypeOf((*fmt.Scanner)(nil)).Elem()} MapTypes[reflect.ValueOf(fmt.Scan)] = mt MapTypes[reflect.ValueOf(fmt.Scanf)] = mt MapTypes[reflect.ValueOf(fmt.Scanln)] = mt MapTypes[reflect.ValueOf(json.Marshal)] = []reflect.Type{ reflect.TypeOf((*json.Marshaler)(nil)).Elem(), reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem(), } MapTypes[reflect.ValueOf(json.Unmarshal)] = []reflect.Type{ reflect.TypeOf((*json.Unmarshaler)(nil)).Elem(), reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem(), } MapTypes[reflect.ValueOf(xml.Marshal)] = []reflect.Type{ reflect.TypeOf((*xml.Marshaler)(nil)).Elem(), reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem(), } MapTypes[reflect.ValueOf(xml.Unmarshal)] = []reflect.Type{ reflect.TypeOf((*xml.Unmarshaler)(nil)).Elem(), reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem(), } } yaegi-0.16.1/stdlib/restricted.go000066400000000000000000000042061460330105400166530ustar00rootroot00000000000000package stdlib import ( "errors" "io" "log" "os" "strconv" ) var errRestricted = errors.New("restricted") // osExit invokes panic instead of exit. func osExit(code int) { panic("os.Exit(" + strconv.Itoa(code) + ")") } // osFindProcess returns os.FindProcess, except for self process. func osFindProcess(pid int) (*os.Process, error) { if pid == os.Getpid() { return nil, errRestricted } return os.FindProcess(pid) } // The following functions call Panic instead of Fatal to avoid exit. func logFatal(v ...interface{}) { log.Panic(v...) } func logFatalf(f string, v ...interface{}) { log.Panicf(f, v...) } func logFatalln(v ...interface{}) { log.Panicln(v...) } type logLogger struct { l *log.Logger } // logNew Returns a wrapped logger. func logNew(out io.Writer, prefix string, flag int) *logLogger { return &logLogger{log.New(out, prefix, flag)} } // The following methods call Panic instead of Fatal to avoid exit. func (l *logLogger) Fatal(v ...interface{}) { l.l.Panic(v...) } func (l *logLogger) Fatalf(f string, v ...interface{}) { l.l.Panicf(f, v...) } func (l *logLogger) Fatalln(v ...interface{}) { l.l.Panicln(v...) } // The following methods just forward to wrapped logger. func (l *logLogger) Flags() int { return l.l.Flags() } func (l *logLogger) Output(d int, s string) error { return l.l.Output(d, s) } func (l *logLogger) Panic(v ...interface{}) { l.l.Panic(v...) } func (l *logLogger) Panicf(f string, v ...interface{}) { l.l.Panicf(f, v...) } func (l *logLogger) Panicln(v ...interface{}) { l.l.Panicln(v...) } func (l *logLogger) Prefix() string { return l.l.Prefix() } func (l *logLogger) Print(v ...interface{}) { l.l.Print(v...) } func (l *logLogger) Printf(f string, v ...interface{}) { l.l.Printf(f, v...) } func (l *logLogger) Println(v ...interface{}) { l.l.Println(v...) } func (l *logLogger) SetFlags(flag int) { l.l.SetFlags(flag) } func (l *logLogger) SetOutput(w io.Writer) { l.l.SetOutput(w) } func (l *logLogger) Writer() io.Writer { return l.l.Writer() } yaegi-0.16.1/stdlib/stdlib-go1.22.go000066400000000000000000000001511460330105400166650ustar00rootroot00000000000000//go:build go1.22 package stdlib //go:generate ../internal/cmd/extract/extract go/version math/rand/v2 yaegi-0.16.1/stdlib/stdlib.go000066400000000000000000000100311460330105400157550ustar00rootroot00000000000000//go:build go1.21 // Package stdlib provides wrappers of standard library packages to be imported natively in Yaegi. package stdlib import "reflect" // Symbols variable stores the map of stdlib symbols per package. var Symbols = map[string]map[string]reflect.Value{} // MapTypes variable contains a map of functions which have an interface{} as parameter but // do something special if the parameter implements a given interface. var MapTypes = map[reflect.Value][]reflect.Type{} func init() { Symbols["github.com/traefik/yaegi/stdlib/stdlib"] = map[string]reflect.Value{ "Symbols": reflect.ValueOf(Symbols), } Symbols["."] = map[string]reflect.Value{ "MapTypes": reflect.ValueOf(MapTypes), } } // Provide access to go standard library (http://golang.org/pkg/) // go list std | grep -v internal | grep -v '\.' | grep -v unsafe | grep -v syscall //go:generate ../internal/cmd/extract/extract archive/tar archive/zip //go:generate ../internal/cmd/extract/extract bufio bytes cmp //go:generate ../internal/cmd/extract/extract compress/bzip2 compress/flate compress/gzip compress/lzw compress/zlib //go:generate ../internal/cmd/extract/extract container/heap container/list container/ring //go:generate ../internal/cmd/extract/extract context crypto crypto/aes crypto/cipher crypto/des crypto/dsa crypto/ecdsa crypto/ecdh //go:generate ../internal/cmd/extract/extract crypto/ed25519 crypto/elliptic crypto/hmac crypto/md5 crypto/rand //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/buildinfo debug/dwarf debug/elf debug/gosym debug/macho debug/pe debug/plan9obj //go:generate ../internal/cmd/extract/extract 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 //go:generate ../internal/cmd/extract/extract errors expvar flag fmt //go:generate ../internal/cmd/extract/extract go/ast go/build go/build/constraint go/constant go/doc go/doc/comment go/format //go:generate ../internal/cmd/extract/extract go/importer go/parser go/printer go/scanner go/token go/types //go:generate ../internal/cmd/extract/extract hash hash/adler32 hash/crc32 hash/crc64 hash/fnv hash/maphash //go:generate ../internal/cmd/extract/extract html html/template //go:generate ../internal/cmd/extract/extract image image/color image/color/palette //go:generate ../internal/cmd/extract/extract image/draw image/gif image/jpeg image/png index/suffixarray //go:generate ../internal/cmd/extract/extract io io/fs io/ioutil log log/syslog log/slog //go:generate ../internal/cmd/extract/extract maps math math/big math/bits math/cmplx math/rand //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/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 //go:generate ../internal/cmd/extract/extract slices sort strconv strings sync sync/atomic //go:generate ../internal/cmd/extract/extract testing testing/fstest testing/iotest testing/quick testing/slogtest //go:generate ../internal/cmd/extract/extract text/scanner text/tabwriter text/template text/template/parse //go:generate ../internal/cmd/extract/extract time unicode unicode/utf16 unicode/utf8 yaegi-0.16.1/stdlib/syscall/000077500000000000000000000000001460330105400156245ustar00rootroot00000000000000yaegi-0.16.1/stdlib/syscall/go1_21_syscall_aix_ppc64.go000066400000000000000000003623571460330105400225720ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_android_386.go000066400000000000000000006354141460330105400230120ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_android_amd64.go000066400000000000000000006265661460330105400234150ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_android_arm.go000066400000000000000000006413251460330105400232470ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_android_arm64.go000066400000000000000000006634251460330105400234260ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_darwin_amd64.go000066400000000000000000005562351460330105400232540ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_darwin_arm64.go000066400000000000000000005576401460330105400232730ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_dragonfly_amd64.go000066400000000000000000005676661460330105400237670ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_freebsd_386.go000066400000000000000000006477421460330105400230130ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_freebsd_amd64.go000066400000000000000000006501211460330105400233670ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_freebsd_arm.go000066400000000000000000006477431460330105400232530ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_freebsd_arm64.go000066400000000000000000006611541460330105400234150ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_freebsd_riscv64.go000066400000000000000000006611541460330105400237640ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_illumos_amd64.go000066400000000000000000004122451460330105400234440ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !solaris // +build go1.21,!go1.22,!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_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", 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), "Mmap": reflect.ValueOf(syscall.Mmap), "Munmap": reflect.ValueOf(syscall.Munmap), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_ios_amd64.go000066400000000000000000005562351460330105400225620ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_ios_arm64.go000066400000000000000000005576401460330105400226010ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_js_wasm.go000066400000000000000000000534741460330105400224350ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_386.go000066400000000000000000006353731460330105400225350ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_amd64.go000066400000000000000000006265451460330105400231310ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_arm.go000066400000000000000000006413041460330105400227630ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_arm64.go000066400000000000000000006634041460330105400231420ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_loong64.go000066400000000000000000007726351460330105400235100ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_mips.go000066400000000000000000007070111460330105400231520ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_mips64.go000066400000000000000000006746551460330105400233450ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_mips64le.go000066400000000000000000006746551460330105400236660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_mipsle.go000066400000000000000000007070111460330105400234730ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_ppc64.go000066400000000000000000007161131460330105400231410ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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("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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_ppc64le.go000066400000000000000000007227051460330105400234660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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("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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_riscv64.go000066400000000000000000006761551460330105400235200ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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_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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_linux_s390x.go000066400000000000000000007251021460330105400230710ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_netbsd_386.go000066400000000000000000006225741460330105400226540ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_netbsd_amd64.go000066400000000000000000006205771460330105400232500ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_netbsd_arm.go000066400000000000000000006157421460330105400231120ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_netbsd_arm64.go000066400000000000000000006205771460330105400232660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_openbsd_386.go000066400000000000000000005614561460330105400230300ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_openbsd_amd64.go000066400000000000000000005613041460330105400234130ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_openbsd_arm.go000066400000000000000000005621351460330105400232620ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_openbsd_arm64.go000066400000000000000000006053521460330105400234330ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_plan9_386.go000066400000000000000000000365711460330105400224140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_plan9_amd64.go000066400000000000000000000365711460330105400230070ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_plan9_arm.go000066400000000000000000000365711460330105400226530ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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) } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_solaris_amd64.go000066400000000000000000004113111460330105400234250ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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("48", 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_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", 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), "Mmap": reflect.ValueOf(syscall.Mmap), "Munmap": reflect.ValueOf(syscall.Munmap), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_wasip1_wasm.go000066400000000000000000000715631460330105400232240ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "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), "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), "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), "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), "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), "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), "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), "EROFS": reflect.ValueOf(syscall.EROFS), "ESPIPE": reflect.ValueOf(syscall.ESPIPE), "ESRCH": reflect.ValueOf(syscall.ESRCH), "ESTALE": reflect.ValueOf(syscall.ESTALE), "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), "EXDEV": reflect.ValueOf(syscall.EXDEV), "Environ": reflect.ValueOf(syscall.Environ), "FDFLAG_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "FDFLAG_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "FDFLAG_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "FDFLAG_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "FDFLAG_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), "FILESTAT_SET_ATIM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "FILESTAT_SET_ATIM_NOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "FILESTAT_SET_MTIM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "FILESTAT_SET_MTIM_NOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "FILETYPE_BLOCK_DEVICE": reflect.ValueOf(syscall.FILETYPE_BLOCK_DEVICE), "FILETYPE_CHARACTER_DEVICE": reflect.ValueOf(syscall.FILETYPE_CHARACTER_DEVICE), "FILETYPE_DIRECTORY": reflect.ValueOf(syscall.FILETYPE_DIRECTORY), "FILETYPE_REGULAR_FILE": reflect.ValueOf(syscall.FILETYPE_REGULAR_FILE), "FILETYPE_SOCKET_DGRAM": reflect.ValueOf(syscall.FILETYPE_SOCKET_DGRAM), "FILETYPE_SOCKET_STREAM": reflect.ValueOf(syscall.FILETYPE_SOCKET_STREAM), "FILETYPE_SYMBOLIC_LINK": reflect.ValueOf(syscall.FILETYPE_SYMBOLIC_LINK), "FILETYPE_UNKNOWN": reflect.ValueOf(syscall.FILETYPE_UNKNOWN), "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)), "Fchmod": reflect.ValueOf(syscall.Fchmod), "Fchown": reflect.ValueOf(syscall.Fchown), "Fstat": reflect.ValueOf(syscall.Fstat), "Fsync": reflect.ValueOf(syscall.Fsync), "Ftruncate": reflect.ValueOf(syscall.Ftruncate), "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), "Getrlimit": reflect.ValueOf(syscall.Getrlimit), "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), "LOOKUP_SYMLINK_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "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), "OFLAG_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "OFLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "OFLAG_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "OFLAG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "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), "Pipe": reflect.ValueOf(syscall.Pipe), "Pread": reflect.ValueOf(syscall.Pread), "Pwrite": reflect.ValueOf(syscall.Pwrite), "RIGHT_FDSTAT_SET_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "RIGHT_FD_ADVISE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), "RIGHT_FD_ALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), "RIGHT_FD_DATASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "RIGHT_FD_FILESTAT_GET": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), "RIGHT_FD_FILESTAT_SET_SIZE": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), "RIGHT_FD_FILESTAT_SET_TIMES": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), "RIGHT_FD_READ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "RIGHT_FD_READDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), "RIGHT_FD_SEEK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "RIGHT_FD_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), "RIGHT_FD_TELL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), "RIGHT_FD_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), "RIGHT_PATH_CREATE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), "RIGHT_PATH_CREATE_FILE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), "RIGHT_PATH_FILESTAT_GET": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), "RIGHT_PATH_FILESTAT_SET_SIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), "RIGHT_PATH_FILESTAT_SET_TIMES": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), "RIGHT_PATH_LINK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), "RIGHT_PATH_LINK_TARGET": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), "RIGHT_PATH_OPEN": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), "RIGHT_PATH_READLINK": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), "RIGHT_PATH_REMOVE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), "RIGHT_PATH_RENAME_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), "RIGHT_PATH_RENAME_TARGET": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), "RIGHT_PATH_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), "RIGHT_PATH_UNLINK_FILE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), "RIGHT_POLL_FD_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), "RIGHT_SOCK_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), "RIGHT_SOCK_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), "RandomGet": reflect.ValueOf(syscall.RandomGet), "Read": reflect.ValueOf(syscall.Read), "ReadDir": reflect.ValueOf(syscall.ReadDir), "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), "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("2", 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), "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), "SIGNONE": reflect.ValueOf(syscall.SIGNONE), "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), "SIGVTARLM": reflect.ValueOf(syscall.SIGVTARLM), "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), "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), "WHENCE_CUR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "WHENCE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "WHENCE_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), "Wait4": reflect.ValueOf(syscall.Wait4), "Write": reflect.ValueOf(syscall.Write), // type definitions "Conn": reflect.ValueOf((*syscall.Conn)(nil)), "Dircookie": reflect.ValueOf((*syscall.Dircookie)(nil)), "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), "Errno": reflect.ValueOf((*syscall.Errno)(nil)), "Filetype": reflect.ValueOf((*syscall.Filetype)(nil)), "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), "RawConn": reflect.ValueOf((*syscall.RawConn)(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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_windows_386.go000066400000000000000000003020621460330105400230520ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_windows_amd64.go000066400000000000000000003020621460330105400234450ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_windows_arm.go000066400000000000000000003020621460330105400233110ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_21_syscall_windows_arm64.go000066400000000000000000003020621460330105400234630ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_aix_ppc64.go000066400000000000000000003623341460330105400225660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_android_386.go000066400000000000000000006353711460330105400230150ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_android_amd64.go000066400000000000000000006265431460330105400234110ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_android_arm.go000066400000000000000000006413021460330105400232430ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_android_arm64.go000066400000000000000000006634021460330105400234220ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_darwin_amd64.go000066400000000000000000005562121460330105400232500ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_darwin_arm64.go000066400000000000000000005576151460330105400232760ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_dragonfly_amd64.go000066400000000000000000005676431460330105400237630ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_freebsd_386.go000066400000000000000000006477171460330105400230160ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_freebsd_amd64.go000066400000000000000000006500761460330105400234010ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_freebsd_arm.go000066400000000000000000006477201460330105400232470ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_freebsd_arm64.go000066400000000000000000006611311460330105400234110ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_freebsd_riscv64.go000066400000000000000000006611311460330105400237600ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("551", token.INT, 0)), "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("552", token.INT, 0)), "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("556", 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("554", 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("557", 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_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("559", 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_STATFS": reflect.ValueOf(constant.MakeFromLiteral("555", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_illumos_amd64.go000066400000000000000000004122221460330105400234400ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !solaris // +build go1.22,!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_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", 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), "Mmap": reflect.ValueOf(syscall.Mmap), "Munmap": reflect.ValueOf(syscall.Munmap), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_ios_amd64.go000066400000000000000000005562121460330105400225560ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_ios_arm64.go000066400000000000000000005576151460330105400226040ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_js_wasm.go000066400000000000000000000534531460330105400224330ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("128", token.INT, 0)), "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_386.go000066400000000000000000006353501460330105400225310ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_amd64.go000066400000000000000000006265221460330105400231250ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_arm.go000066400000000000000000006412611460330105400227660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_arm64.go000066400000000000000000006633611460330105400231450ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_loong64.go000066400000000000000000007726121460330105400235040ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_mips.go000066400000000000000000007067661460330105400231730ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_mips64.go000066400000000000000000006746321460330105400233410ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_mips64le.go000066400000000000000000006746321460330105400236620ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_mipsle.go000066400000000000000000007067661460330105400235140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_ppc64.go000066400000000000000000007160701460330105400231440ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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("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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_ppc64le.go000066400000000000000000007226621460330105400234710ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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("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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_riscv64.go000066400000000000000000006761321460330105400235140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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_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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_linux_s390x.go000066400000000000000000007250571460330105400231030ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_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), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_netbsd_386.go000066400000000000000000006225511460330105400226500ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_netbsd_amd64.go000066400000000000000000006205541460330105400232440ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_netbsd_arm.go000066400000000000000000006157171460330105400231150ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_netbsd_arm64.go000066400000000000000000006205541460330105400232620ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_openbsd_386.go000066400000000000000000005614331460330105400230240ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_openbsd_amd64.go000066400000000000000000005612611460330105400234160ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_openbsd_arm.go000066400000000000000000005621121460330105400232560ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_openbsd_arm64.go000066400000000000000000006053271460330105400234360ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_openbsd_ppc64.go000066400000000000000000006141641460330105400234400ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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_F_DIR_IN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), "BPF_F_DIR_MASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), "BPF_F_DIR_OUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), "BPF_F_DIR_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "BPF_F_FLOWID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "BPF_F_PRI_MASK": reflect.ValueOf(constant.MakeFromLiteral("7", 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_RND": reflect.ValueOf(constant.MakeFromLiteral("192", 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), "ETH64_8021_RSVD_MASK": reflect.ValueOf(constant.MakeFromLiteral("281474976710640", token.INT, 0)), "ETH64_8021_RSVD_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("1652522221568", token.INT, 0)), "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_EAPOL": reflect.ValueOf(constant.MakeFromLiteral("34958", 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_NHRP": reflect.ValueOf(constant.MakeFromLiteral("8193", 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_NSH": reflect.ValueOf(constant.MakeFromLiteral("38991", 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_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_EXCEPT": reflect.ValueOf(constant.MakeFromLiteral("-9", 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("9", 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("63488", 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_WIREGUARD": reflect.ValueOf(constant.MakeFromLiteral("251", 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_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_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)), "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("4096", 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("8", token.INT, 0)), "NET_RT_SOURCE": 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_OOB": reflect.ValueOf(constant.MakeFromLiteral("4", 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_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", 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("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("3227543870", 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)), "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", 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("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("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("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)), "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)), "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("168", 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("166", 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("49", 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("78", 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_PAD_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), "SYS_PAD_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), "SYS_PAD_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), "SYS_PAD_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), "SYS_PAD_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), "SYS_PAD_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), "SYS_PAD_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), "SYS_PAD_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), "SYS_PAD_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", 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("169", token.INT, 0)), "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("171", 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("170", token.INT, 0)), "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("172", 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_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("116", 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_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("117", 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("167", 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_YPCONNECT": reflect.ValueOf(constant.MakeFromLiteral("150", 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("24", 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_INFO": reflect.ValueOf(constant.MakeFromLiteral("9", 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_plan9_386.go000066400000000000000000000365461460330105400224170ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_plan9_amd64.go000066400000000000000000000365461460330105400230120ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_plan9_arm.go000066400000000000000000000365461460330105400226560ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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) } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_solaris_amd64.go000066400000000000000000004112661460330105400234370ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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("48", 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_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", 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), "Mmap": reflect.ValueOf(syscall.Mmap), "Munmap": reflect.ValueOf(syscall.Munmap), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_wasip1_wasm.go000066400000000000000000000715421460330105400232220ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "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), "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), "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), "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), "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), "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), "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), "EROFS": reflect.ValueOf(syscall.EROFS), "ESPIPE": reflect.ValueOf(syscall.ESPIPE), "ESRCH": reflect.ValueOf(syscall.ESRCH), "ESTALE": reflect.ValueOf(syscall.ESTALE), "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), "EXDEV": reflect.ValueOf(syscall.EXDEV), "Environ": reflect.ValueOf(syscall.Environ), "FDFLAG_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "FDFLAG_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "FDFLAG_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "FDFLAG_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "FDFLAG_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), "FILESTAT_SET_ATIM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "FILESTAT_SET_ATIM_NOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "FILESTAT_SET_MTIM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "FILESTAT_SET_MTIM_NOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "FILETYPE_BLOCK_DEVICE": reflect.ValueOf(syscall.FILETYPE_BLOCK_DEVICE), "FILETYPE_CHARACTER_DEVICE": reflect.ValueOf(syscall.FILETYPE_CHARACTER_DEVICE), "FILETYPE_DIRECTORY": reflect.ValueOf(syscall.FILETYPE_DIRECTORY), "FILETYPE_REGULAR_FILE": reflect.ValueOf(syscall.FILETYPE_REGULAR_FILE), "FILETYPE_SOCKET_DGRAM": reflect.ValueOf(syscall.FILETYPE_SOCKET_DGRAM), "FILETYPE_SOCKET_STREAM": reflect.ValueOf(syscall.FILETYPE_SOCKET_STREAM), "FILETYPE_SYMBOLIC_LINK": reflect.ValueOf(syscall.FILETYPE_SYMBOLIC_LINK), "FILETYPE_UNKNOWN": reflect.ValueOf(syscall.FILETYPE_UNKNOWN), "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)), "Fchmod": reflect.ValueOf(syscall.Fchmod), "Fchown": reflect.ValueOf(syscall.Fchown), "Fstat": reflect.ValueOf(syscall.Fstat), "Fsync": reflect.ValueOf(syscall.Fsync), "Ftruncate": reflect.ValueOf(syscall.Ftruncate), "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), "Getrlimit": reflect.ValueOf(syscall.Getrlimit), "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), "LOOKUP_SYMLINK_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "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), "OFLAG_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "OFLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "OFLAG_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "OFLAG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "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), "Pipe": reflect.ValueOf(syscall.Pipe), "Pread": reflect.ValueOf(syscall.Pread), "Pwrite": reflect.ValueOf(syscall.Pwrite), "RIGHT_FDSTAT_SET_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), "RIGHT_FD_ADVISE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), "RIGHT_FD_ALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), "RIGHT_FD_DATASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "RIGHT_FD_FILESTAT_GET": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), "RIGHT_FD_FILESTAT_SET_SIZE": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), "RIGHT_FD_FILESTAT_SET_TIMES": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), "RIGHT_FD_READ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "RIGHT_FD_READDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), "RIGHT_FD_SEEK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), "RIGHT_FD_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), "RIGHT_FD_TELL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), "RIGHT_FD_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), "RIGHT_PATH_CREATE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), "RIGHT_PATH_CREATE_FILE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), "RIGHT_PATH_FILESTAT_GET": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), "RIGHT_PATH_FILESTAT_SET_SIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), "RIGHT_PATH_FILESTAT_SET_TIMES": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), "RIGHT_PATH_LINK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), "RIGHT_PATH_LINK_TARGET": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), "RIGHT_PATH_OPEN": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), "RIGHT_PATH_READLINK": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), "RIGHT_PATH_REMOVE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), "RIGHT_PATH_RENAME_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), "RIGHT_PATH_RENAME_TARGET": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), "RIGHT_PATH_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), "RIGHT_PATH_UNLINK_FILE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), "RIGHT_POLL_FD_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), "RIGHT_SOCK_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), "RIGHT_SOCK_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), "RandomGet": reflect.ValueOf(syscall.RandomGet), "Read": reflect.ValueOf(syscall.Read), "ReadDir": reflect.ValueOf(syscall.ReadDir), "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), "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("2", 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), "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), "SIGNONE": reflect.ValueOf(syscall.SIGNONE), "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), "SIGVTARLM": reflect.ValueOf(syscall.SIGVTARLM), "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), "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("128", token.INT, 0)), "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", 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), "WHENCE_CUR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), "WHENCE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), "WHENCE_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), "Wait4": reflect.ValueOf(syscall.Wait4), "Write": reflect.ValueOf(syscall.Write), // type definitions "Conn": reflect.ValueOf((*syscall.Conn)(nil)), "Dircookie": reflect.ValueOf((*syscall.Dircookie)(nil)), "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), "Errno": reflect.ValueOf((*syscall.Errno)(nil)), "Filetype": reflect.ValueOf((*syscall.Filetype)(nil)), "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), "RawConn": reflect.ValueOf((*syscall.RawConn)(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)), "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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_windows_386.go000066400000000000000000003020371460330105400230550ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_windows_amd64.go000066400000000000000000003020371460330105400234500ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_windows_arm.go000066400000000000000000003020371460330105400233140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/go1_22_syscall_windows_arm64.go000066400000000000000000003020371460330105400234660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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{} } yaegi-0.16.1/stdlib/syscall/syscall.go000066400000000000000000000010131460330105400176200ustar00rootroot00000000000000// Package syscall provide wrapper of standard library syscall package for native import in Yaegi. package syscall import "reflect" // Symbols stores the map of syscall package symbols. var Symbols = map[string]map[string]reflect.Value{} func init() { Symbols["github.com/traefik/yaegi/stdlib/syscall/syscall"] = map[string]reflect.Value{ "Symbols": reflect.ValueOf(Symbols), } } //go:generate ../../internal/cmd/extract/extract -exclude=^Exec,Exit,ForkExec,Kill,Ptrace,Reboot,Shutdown,StartProcess,Syscall syscall yaegi-0.16.1/stdlib/unrestricted/000077500000000000000000000000001460330105400166655ustar00rootroot00000000000000yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_aix_ppc64.go000066400000000000000000000026061460330105400236170ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_android_386.go000066400000000000000000000037411460330105400240430ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_android_amd64.go000066400000000000000000000037411460330105400244360ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_android_arm.go000066400000000000000000000037411460330105400243020ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_android_arm64.go000066400000000000000000000037411460330105400244540ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !linux // +build go1.21,!go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_darwin_amd64.go000066400000000000000000000017341460330105400243020ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_darwin_arm64.go000066400000000000000000000017341460330105400243200ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_dragonfly_amd64.go000066400000000000000000000015521460330105400250010ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_freebsd_386.go000066400000000000000000000015521460330105400240330ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_freebsd_amd64.go000066400000000000000000000015521460330105400244260ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_freebsd_arm.go000066400000000000000000000015521460330105400242720ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_freebsd_arm64.go000066400000000000000000000015521460330105400244440ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_freebsd_riscv64.go000066400000000000000000000015521460330105400250130ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_illumos_amd64.go000066400000000000000000000015121460330105400244740ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 && !solaris // +build go1.21,!go1.22,!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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_ios_amd64.go000066400000000000000000000017341460330105400236100ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_ios_arm64.go000066400000000000000000000017341460330105400236260ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_js_wasm.go000066400000000000000000000013171460330105400234630ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_386.go000066400000000000000000000037201460330105400235570ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_amd64.go000066400000000000000000000037201460330105400241520ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_arm.go000066400000000000000000000037201460330105400240160ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_arm64.go000066400000000000000000000037201460330105400241700ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_loong64.go000066400000000000000000000037201460330105400245270ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_mips.go000066400000000000000000000040131460330105400242030ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_mips64.go000066400000000000000000000037201460330105400243610ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_mips64le.go000066400000000000000000000037201460330105400247020ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_mipsle.go000066400000000000000000000040131460330105400245240ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_ppc64.go000066400000000000000000000037201460330105400241730ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_ppc64le.go000066400000000000000000000037201460330105400245140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_riscv64.go000066400000000000000000000037201460330105400245370ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_linux_s390x.go000066400000000000000000000042171460330105400241270ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_netbsd_386.go000066400000000000000000000015521460330105400237000ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_netbsd_amd64.go000066400000000000000000000015521460330105400242730ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_netbsd_arm.go000066400000000000000000000015521460330105400241370ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_netbsd_arm64.go000066400000000000000000000015521460330105400243110ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_openbsd_386.go000066400000000000000000000015521460330105400240530ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_openbsd_amd64.go000066400000000000000000000015521460330105400244460ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_openbsd_arm.go000066400000000000000000000015521460330105400243120ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_openbsd_arm64.go000066400000000000000000000015521460330105400244640ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_plan9_386.go000066400000000000000000000013171460330105400234430ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_plan9_amd64.go000066400000000000000000000013171460330105400240360ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_plan9_arm.go000066400000000000000000000013171460330105400237020ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_solaris_amd64.go000066400000000000000000000013101460330105400244600ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_wasip1_wasm.go000066400000000000000000000014041460330105400242500ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), "ProcExit": reflect.ValueOf(syscall.ProcExit), "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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_windows_386.go000066400000000000000000000020611460330105400241070ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_windows_amd64.go000066400000000000000000000020611460330105400245020ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_windows_arm.go000066400000000000000000000020611460330105400243460ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_21_syscall_windows_arm64.go000066400000000000000000000020611460330105400245200ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_aix_ppc64.go000066400000000000000000000025631460330105400236220ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_android_386.go000066400000000000000000000037161460330105400240460ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_android_amd64.go000066400000000000000000000037161460330105400244410ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_android_arm.go000066400000000000000000000037161460330105400243050ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_android_arm64.go000066400000000000000000000037161460330105400244570ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !linux // +build go1.22,!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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_darwin_amd64.go000066400000000000000000000017111460330105400242760ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_darwin_arm64.go000066400000000000000000000017111460330105400243140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_dragonfly_amd64.go000066400000000000000000000015271460330105400250040ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_freebsd_386.go000066400000000000000000000015271460330105400240360ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_freebsd_amd64.go000066400000000000000000000015271460330105400244310ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_freebsd_arm.go000066400000000000000000000015271460330105400242750ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_freebsd_arm64.go000066400000000000000000000015271460330105400244470ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_freebsd_riscv64.go000066400000000000000000000015271460330105400250160ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_illumos_amd64.go000066400000000000000000000014671460330105400245060ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 && !solaris // +build go1.22,!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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_ios_amd64.go000066400000000000000000000017111460330105400236040ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_ios_arm64.go000066400000000000000000000017111460330105400236220ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_js_wasm.go000066400000000000000000000012741460330105400234660ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_386.go000066400000000000000000000036751460330105400235710ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_amd64.go000066400000000000000000000036751460330105400241640ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_arm.go000066400000000000000000000036751460330105400240300ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_arm64.go000066400000000000000000000036751460330105400242020ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_loong64.go000066400000000000000000000036751460330105400245410ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_mips.go000066400000000000000000000037701460330105400242150ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_mips64.go000066400000000000000000000036751460330105400243730ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_mips64le.go000066400000000000000000000036751460330105400247140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_mipsle.go000066400000000000000000000037701460330105400245360ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_ppc64.go000066400000000000000000000036751460330105400242050ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_ppc64le.go000066400000000000000000000036751460330105400245260ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_riscv64.go000066400000000000000000000036751460330105400245510ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_linux_s390x.go000066400000000000000000000041741460330105400241320ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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)), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_netbsd_386.go000066400000000000000000000015271460330105400237030ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_netbsd_amd64.go000066400000000000000000000015271460330105400242760ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_netbsd_arm.go000066400000000000000000000015271460330105400241420ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_netbsd_arm64.go000066400000000000000000000015271460330105400243140ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_openbsd_386.go000066400000000000000000000015271460330105400240560ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_openbsd_amd64.go000066400000000000000000000015271460330105400244510ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_openbsd_arm.go000066400000000000000000000015271460330105400243150ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_openbsd_arm64.go000066400000000000000000000015271460330105400244670ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_openbsd_ppc64.go000066400000000000000000000015271460330105400244720ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_plan9_386.go000066400000000000000000000012741460330105400234460ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_plan9_amd64.go000066400000000000000000000012741460330105400240410ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_plan9_arm.go000066400000000000000000000012741460330105400237050ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_solaris_amd64.go000066400000000000000000000012651460330105400244720ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_wasip1_wasm.go000066400000000000000000000013611460330105400242530ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), "ProcExit": reflect.ValueOf(syscall.ProcExit), "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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_windows_386.go000066400000000000000000000020361460330105400241120ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_windows_amd64.go000066400000000000000000000020361460330105400245050ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_windows_arm.go000066400000000000000000000020361460330105400243510ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/go1_22_syscall_windows_arm64.go000066400000000000000000000020361460330105400245230ustar00rootroot00000000000000// Code generated by 'yaegi extract syscall'. DO NOT EDIT. //go:build go1.22 // +build go1.22 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), } } yaegi-0.16.1/stdlib/unrestricted/unrestricted.go000066400000000000000000000026671460330105400217420ustar00rootroot00000000000000// Package unrestricted provides the original version of standard library symbols which may cause the interpreter process to exit. package unrestricted import ( "log" "os" "os/exec" "reflect" ) // Symbols stores the map of syscall package symbols. var Symbols = map[string]map[string]reflect.Value{} func init() { Symbols["os/os"] = map[string]reflect.Value{ "Exit": reflect.ValueOf(os.Exit), "FindProcess": reflect.ValueOf(os.FindProcess), } Symbols["os/exec/exec"] = map[string]reflect.Value{ "Command": reflect.ValueOf(exec.Command), "CommandContext": reflect.ValueOf(exec.CommandContext), "ErrNotFound": reflect.ValueOf(&exec.ErrNotFound).Elem(), "LookPath": reflect.ValueOf(exec.LookPath), "Cmd": reflect.ValueOf((*exec.Cmd)(nil)), "Error": reflect.ValueOf((*exec.Error)(nil)), "ExitError": reflect.ValueOf((*exec.ExitError)(nil)), } Symbols["log/log"] = map[string]reflect.Value{ "Fatal": reflect.ValueOf(log.Fatal), "Fatalf": reflect.ValueOf(log.Fatalf), "Fatalln": reflect.ValueOf(log.Fatalln), "New": reflect.ValueOf(log.New), "Logger": reflect.ValueOf((*log.Logger)(nil)), } Symbols["github.com/traefik/yaegi/stdlib/unrestricted/unrestricted"] = map[string]reflect.Value{ "Symbols": reflect.ValueOf(Symbols), } } //go:generate ../../internal/cmd/extract/extract -include=^Exec,Exit,ForkExec,Kill,Ptrace,Reboot,Shutdown,StartProcess,Syscall syscall yaegi-0.16.1/stdlib/unsafe/000077500000000000000000000000001460330105400154335ustar00rootroot00000000000000yaegi-0.16.1/stdlib/unsafe/go1_21_unsafe.go000066400000000000000000000004701460330105400203140ustar00rootroot00000000000000// Code generated by 'yaegi extract unsafe'. DO NOT EDIT. //go:build go1.21 && !go1.22 // +build go1.21,!go1.22 package unsafe import ( "reflect" "unsafe" ) func init() { Symbols["unsafe/unsafe"] = map[string]reflect.Value{ // type definitions "Pointer": reflect.ValueOf((*unsafe.Pointer)(nil)), } } yaegi-0.16.1/stdlib/unsafe/go1_22_unsafe.go000066400000000000000000000004451460330105400203170ustar00rootroot00000000000000// Code generated by 'yaegi extract unsafe'. DO NOT EDIT. //go:build go1.22 // +build go1.22 package unsafe import ( "reflect" "unsafe" ) func init() { Symbols["unsafe/unsafe"] = map[string]reflect.Value{ // type definitions "Pointer": reflect.ValueOf((*unsafe.Pointer)(nil)), } } yaegi-0.16.1/stdlib/unsafe/unsafe.go000066400000000000000000000041171460330105400172460ustar00rootroot00000000000000// Package unsafe provides wrapper of standard library unsafe package to be imported natively in Yaegi. package unsafe import ( "reflect" "unsafe" ) // Symbols stores the map of unsafe package symbols. var Symbols = map[string]map[string]reflect.Value{} func init() { Symbols["github.com/traefik/yaegi/stdlib/unsafe/unsafe"] = map[string]reflect.Value{ "Symbols": reflect.ValueOf(Symbols), } Symbols["github.com/traefik/yaegi/yaegi"] = map[string]reflect.Value{ "convert": reflect.ValueOf(convert), } Symbols["unsafe/unsafe"]["Add"] = reflect.ValueOf(add) // Add builtin functions to unsafe, also implemented in interp/cfg.go. Symbols["unsafe/unsafe"]["Sizeof"] = reflect.ValueOf(sizeof) Symbols["unsafe/unsafe"]["Alignof"] = reflect.ValueOf(alignof) // The following is used for signature check only. Symbols["unsafe/unsafe"]["Offsetof"] = reflect.ValueOf(func(interface{}) uintptr { return 0 }) } func convert(from, to reflect.Type) func(src, dest reflect.Value) { switch { case to.Kind() == reflect.UnsafePointer && from.Kind() == reflect.Uintptr: return uintptrToUnsafePtr case to.Kind() == reflect.UnsafePointer: return func(src, dest reflect.Value) { dest.SetPointer(unsafe.Pointer(src.Pointer())) } case to.Kind() == reflect.Uintptr && from.Kind() == reflect.UnsafePointer: return func(src, dest reflect.Value) { ptr := src.Interface().(unsafe.Pointer) dest.Set(reflect.ValueOf(uintptr(ptr))) } case from.Kind() == reflect.UnsafePointer: return func(src, dest reflect.Value) { ptr := src.Interface().(unsafe.Pointer) v := reflect.NewAt(dest.Type().Elem(), ptr) dest.Set(v) } default: return nil } } func add(ptr unsafe.Pointer, l int) unsafe.Pointer { return unsafe.Add(ptr, l) } func sizeof(i interface{}) uintptr { return reflect.ValueOf(i).Type().Size() } func alignof(i interface{}) uintptr { return uintptr(reflect.ValueOf(i).Type().Align()) } //go:nocheckptr func uintptrToUnsafePtr(src, dest reflect.Value) { dest.SetPointer(unsafe.Pointer(src.Interface().(uintptr))) //nolint:govet } //go:generate ../../internal/cmd/extract/extract unsafe yaegi-0.16.1/stdlib/wrapper-composed.go000066400000000000000000000043471460330105400200000ustar00rootroot00000000000000package stdlib import ( "bufio" "io" "net" "net/http" "reflect" ) // Wrappers for composed interfaces which trigger a special behavior in stdlib. // Note: it may become useless to pre-compile composed interface wrappers // once golang/go#15924 is resolved. // In net/http, a ResponseWriter may also implement a Hijacker. type _netHTTPResponseWriterHijacker struct { IValue interface{} WHeader func() http.Header WWrite func(a0 []byte) (int, error) WWriteHeader func(statusCode int) WHijack func() (net.Conn, *bufio.ReadWriter, error) } func (w _netHTTPResponseWriterHijacker) Header() http.Header { return w.WHeader() } func (w _netHTTPResponseWriterHijacker) Write(a0 []byte) (int, error) { return w.WWrite(a0) } func (w _netHTTPResponseWriterHijacker) WriteHeader(statusCode int) { w.WWriteHeader(statusCode) } func (w _netHTTPResponseWriterHijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { return w.WHijack() } // In io, a Reader may implement WriteTo, used by io.Copy(). type _ioReaderWriteTo struct { IValue interface{} WRead func(p []byte) (n int, err error) WWriteTo func(w io.Writer) (n int64, err error) } func (w _ioReaderWriteTo) Read(p []byte) (n int, err error) { return w.WRead(p) } func (w _ioReaderWriteTo) WriteTo(wr io.Writer) (n int64, err error) { return w.WWriteTo(wr) } // In io, a Writer may implement ReadFrom, used by io.Copy(). type _ioWriterReadFrom struct { IValue interface{} WWrite func(p []byte) (n int, err error) WReadFrom func(r io.Reader) (n int64, err error) } func (w _ioWriterReadFrom) Write(p []byte) (n int, err error) { return w.WWrite(p) } func (w _ioWriterReadFrom) ReadFrom(r io.Reader) (n int64, err error) { return w.WReadFrom(r) } // Each MapType value (each slice) must be sorted by complexity, i.e. by number // of interface methods. func init() { MapTypes[reflect.ValueOf((*_net_http_ResponseWriter)(nil))] = []reflect.Type{ reflect.ValueOf((*_netHTTPResponseWriterHijacker)(nil)).Type().Elem(), } MapTypes[reflect.ValueOf((*_io_Reader)(nil))] = []reflect.Type{ reflect.ValueOf((*_ioReaderWriteTo)(nil)).Type().Elem(), } MapTypes[reflect.ValueOf((*_io_Writer)(nil))] = []reflect.Type{ reflect.ValueOf((*_ioWriterReadFrom)(nil)).Type().Elem(), } }