SYMBOL INDEX (69107 symbols across 537 files) FILE: analyzer.go type Analyzer (line 16) | type Analyzer struct method HasDepMetadata (line 19) | func (a Analyzer) HasDepMetadata(path string) bool { method DeriveManifestAndLock (line 27) | func (a Analyzer) DeriveManifestAndLock(path string, n gps.ProjectRoot... method Info (line 48) | func (a Analyzer) Info() gps.ProjectAnalyzerInfo { FILE: analyzer_notwindows_test.go function makeUnreadable (line 14) | func makeUnreadable(path string) (io.Closer, error) { type closer (line 22) | type closer struct method Close (line 24) | func (closer) Close() error { return nil } FILE: analyzer_test.go function TestAnalyzerDeriveManifestAndLock (line 14) | func TestAnalyzerDeriveManifestAndLock(t *testing.T) { function TestAnalyzerDeriveManifestAndLockDoesNotExist (line 50) | func TestAnalyzerDeriveManifestAndLockDoesNotExist(t *testing.T) { function TestAnalyzerDeriveManifestAndLockCannotOpen (line 64) | func TestAnalyzerDeriveManifestAndLockCannotOpen(t *testing.T) { function TestAnalyzerDeriveManifestAndLockInvalidManifest (line 88) | func TestAnalyzerDeriveManifestAndLockInvalidManifest(t *testing.T) { function TestAnalyzerInfo (line 105) | func TestAnalyzerInfo(t *testing.T) { FILE: analyzer_windows_test.go function makeUnreadable (line 16) | func makeUnreadable(path string) (io.Closer, error) { FILE: cmd/dep/check.go constant checkShortHelp (line 24) | checkShortHelp = `Check if imports, Gopkg.toml, and Gopkg.lock are in sync` constant checkLongHelp (line 25) | checkLongHelp = ` type checkCommand (line 42) | type checkCommand struct method Name (line 47) | func (cmd *checkCommand) Name() string { return "check" } method Args (line 48) | func (cmd *checkCommand) Args() string { method ShortHelp (line 51) | func (cmd *checkCommand) ShortHelp() string { return checkShortHelp } method LongHelp (line 52) | func (cmd *checkCommand) LongHelp() string { return checkLongHelp } method Hidden (line 53) | func (cmd *checkCommand) Hidden() bool { return false } method Register (line 55) | func (cmd *checkCommand) Register(fs *flag.FlagSet) { method Run (line 61) | func (cmd *checkCommand) Run(ctx *dep.Ctx, args []string) error { function sprintLockUnsat (line 229) | func sprintLockUnsat(lsat verify.LockSatisfaction) string { FILE: cmd/dep/dep_test.go function TestMain (line 20) | func TestMain(m *testing.M) { FILE: cmd/dep/ensure.go constant ensureShortHelp (line 27) | ensureShortHelp = `Ensure a dependency is safely vendored in the project` constant ensureLongHelp (line 28) | ensureLongHelp = ` constant ensureExamples (line 59) | ensureExamples = ` type ensureCommand (line 143) | type ensureCommand struct method Name (line 126) | func (cmd *ensureCommand) Name() string { return "ensure" } method Args (line 127) | func (cmd *ensureCommand) Args() string { method ShortHelp (line 130) | func (cmd *ensureCommand) ShortHelp() string { return ensureShortHelp } method LongHelp (line 131) | func (cmd *ensureCommand) LongHelp() string { return ensureLongHelp } method Hidden (line 132) | func (cmd *ensureCommand) Hidden() bool { return false } method Register (line 134) | func (cmd *ensureCommand) Register(fs *flag.FlagSet) { method Run (line 152) | func (cmd *ensureCommand) Run(ctx *dep.Ctx, args []string) error { method validateFlags (line 221) | func (cmd *ensureCommand) validateFlags() error { method vendorBehavior (line 241) | func (cmd *ensureCommand) vendorBehavior() dep.VendorBehavior { method runDefault (line 248) | func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *d... method runVendorOnly (line 304) | func (cmd *ensureCommand) runVendorOnly(ctx *dep.Ctx, args []string, p... method runUpdate (line 332) | func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *de... method runAdd (line 379) | func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.P... function getProjectConstraint (line 687) | func getProjectConstraint(arg string, sm gps.SourceManager) (gps.Project... function checkErrors (line 726) | func checkErrors(m map[string]pkgtree.PackageOrErr, ignore *pkgtree.Igno... type pkgtreeErrs (line 770) | type pkgtreeErrs method Error (line 772) | func (e pkgtreeErrs) Error() string { function validateUpdateArgs (line 782) | func validateUpdateArgs(ctx *dep.Ctx, args []string, p *dep.Project, sm ... FILE: cmd/dep/ensure_test.go function TestInvalidEnsureFlagCombinations (line 22) | func TestInvalidEnsureFlagCombinations(t *testing.T) { function TestCheckErrors (line 62) | func TestCheckErrors(t *testing.T) { function TestValidateUpdateArgs (line 149) | func TestValidateUpdateArgs(t *testing.T) { FILE: cmd/dep/failures.go function handleAllTheFailuresOfTheWorld (line 16) | func handleAllTheFailuresOfTheWorld(err error) error { FILE: cmd/dep/feature_flags.go constant flagImportDuringSolveKey (line 13) | flagImportDuringSolveKey = "ImportDuringSolve" function parseFeatureFlag (line 24) | func parseFeatureFlag(flag string) bool { function readFeatureFlag (line 29) | func readFeatureFlag(flag string) (bool, error) { function importDuringSolve (line 37) | func importDuringSolve() bool { FILE: cmd/dep/gopath_scanner.go type gopathScanner (line 25) | type gopathScanner struct method InitializeRootManifestAndLock (line 47) | func (g *gopathScanner) InitializeRootManifestAndLock(rootM *dep.Manif... method overlay (line 87) | func (g *gopathScanner) overlay(rootM *dep.Manifest, rootL *dep.Lock) { method scanGopathForDependencies (line 203) | func (g *gopathScanner) scanGopathForDependencies() (projectData, erro... function newGopathScanner (line 35) | func newGopathScanner(ctx *dep.Ctx, directDeps map[gps.ProjectRoot]bool,... function trimPathPrefix (line 151) | func trimPathPrefix(p1, p2 string) string { function contains (line 159) | func contains(a []string, b string) bool { function getProjectPropertiesFromVersion (line 170) | func getProjectPropertiesFromVersion(v gps.Version) gps.ProjectProperties { type projectData (line 195) | type projectData struct FILE: cmd/dep/gopath_scanner_test.go constant testProject1 (line 18) | testProject1 = "github.com/sdboyer/deptest" constant testProject2 (line 19) | testProject2 = "github.com/sdboyer/deptestdos" function NewTestContext (line 22) | func NewTestContext(h *test.Helper) *dep.Ctx { function TestGopathScanner_OverlayManifestConstraints (line 34) | func TestGopathScanner_OverlayManifestConstraints(t *testing.T) { function TestGopathScanner_OverlayLockProjects (line 87) | func TestGopathScanner_OverlayLockProjects(t *testing.T) { function TestContains (line 135) | func TestContains(t *testing.T) { function TestGetProjectPropertiesFromVersion (line 147) | func TestGetProjectPropertiesFromVersion(t *testing.T) { FILE: cmd/dep/graphviz.go type graphviz (line 15) | type graphviz struct method New (line 37) | func (g graphviz) New() *graphviz { method output (line 46) | func (g *graphviz) output(project string) bytes.Buffer { method createProjectRelations (line 90) | func (g *graphviz) createProjectRelations() { method createProjectPackageRelations (line 112) | func (g *graphviz) createProjectPackageRelations(project string, clust... method createNode (line 166) | func (g *graphviz) createNode(project, version string, children []stri... method createSubgraph (line 231) | func (g *graphviz) createSubgraph(project string, packages map[string]... type gvnode (line 24) | type gvnode struct method hash (line 177) | func (dp gvnode) hash() uint32 { method label (line 183) | func (dp gvnode) label() string { type byGvnode (line 31) | type byGvnode method Len (line 33) | func (n byGvnode) Len() int { return len(n) } method Swap (line 34) | func (n byGvnode) Swap(i, j int) { n[i], n[j] = n[j], n[i] } method Less (line 35) | func (n byGvnode) Less(i, j int) bool { return n[i].project < n[j].pro... function isPathPrefix (line 203) | func isPathPrefix(path, pre string) bool { type gvsubgraph (line 213) | type gvsubgraph struct method hash (line 220) | func (sg gvsubgraph) hash() uint32 { function sortClusters (line 273) | func sortClusters(clusters map[string]*gvsubgraph) []*gvsubgraph { FILE: cmd/dep/graphviz_test.go function TestEmptyProject (line 14) | func TestEmptyProject(t *testing.T) { function TestSimpleProject (line 29) | func TestSimpleProject(t *testing.T) { function TestNoLinks (line 47) | func TestNoLinks(t *testing.T) { function TestIsPathPrefix (line 63) | func TestIsPathPrefix(t *testing.T) { function TestSimpleSubgraphs (line 86) | func TestSimpleSubgraphs(t *testing.T) { function TestCreateSubgraph (line 224) | func TestCreateSubgraph(t *testing.T) { FILE: cmd/dep/init.go constant initShortHelp (line 21) | initShortHelp = `Set up a new Go project, or migrate an existing one` constant initLongHelp (line 22) | initLongHelp = ` type initCommand (line 65) | type initCommand struct method Name (line 53) | func (cmd *initCommand) Name() string { return "init" } method Args (line 54) | func (cmd *initCommand) Args() string { return "[root]" } method ShortHelp (line 55) | func (cmd *initCommand) ShortHelp() string { return initShortHelp } method LongHelp (line 56) | func (cmd *initCommand) LongHelp() string { return initLongHelp } method Hidden (line 57) | func (cmd *initCommand) Hidden() bool { return false } method Register (line 59) | func (cmd *initCommand) Register(fs *flag.FlagSet) { method Run (line 71) | func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error { method establishProjectAt (line 197) | func (cmd *initCommand) establishProjectAt(root string, ctx *dep.Ctx) ... FILE: cmd/dep/integration_test.go function TestIntegration (line 23) | func TestIntegration(t *testing.T) { function TestDepCachedir (line 57) | func TestDepCachedir(t *testing.T) { function execCmd (line 118) | func execCmd(prog string, args []string, stdout, stderr io.Writer, dir s... function runMain (line 128) | func runMain(prog string, args []string, stdout, stderr io.Writer, dir s... function testIntegration (line 153) | func testIntegration(name, relPath, wd string, run integration.RunFunc) ... FILE: cmd/dep/main.go type command (line 32) | type command interface type silentfail (line 44) | type silentfail struct method Error (line 46) | func (silentfail) Error() string { function main (line 50) | func main() { type Config (line 93) | type Config struct method Run (line 101) | func (c *Config) Run() int { function commandList (line 233) | func commandList() []command { function fprintUsage (line 263) | func fprintUsage(w io.Writer) { function resetUsage (line 289) | func resetUsage(logger *log.Logger, fs *flag.FlagSet, name, args, longHe... function parseArgs (line 321) | func parseArgs(args []string) (cmdName string, printCmdUsage bool, exit ... function getEnv (line 347) | func getEnv(env []string, key string) string { type commentWriter (line 365) | type commentWriter struct method Write (line 370) | func (c *commentWriter) Write(p []byte) (int, error) { type profile (line 395) | type profile struct method start (line 409) | func (p *profile) start() error { method finish (line 430) | func (p *profile) finish() error { method createOutput (line 449) | func (p *profile) createOutput(name string) error { FILE: cmd/dep/prune.go constant pruneShortHelp (line 23) | pruneShortHelp = `Pruning is now performed automatically by dep ensure.` constant pruneLongHelp (line 24) | pruneLongHelp = ` type pruneCommand (line 30) | type pruneCommand struct method Name (line 33) | func (cmd *pruneCommand) Name() string { return "prune" } method Args (line 34) | func (cmd *pruneCommand) Args() string { return "" } method ShortHelp (line 35) | func (cmd *pruneCommand) ShortHelp() string { return pruneShortHelp } method LongHelp (line 36) | func (cmd *pruneCommand) LongHelp() string { return pruneLongHelp } method Hidden (line 37) | func (cmd *pruneCommand) Hidden() bool { return true } method Register (line 39) | func (cmd *pruneCommand) Register(fs *flag.FlagSet) { method Run (line 42) | func (cmd *pruneCommand) Run(ctx *dep.Ctx, args []string) error { function pruneProject (line 89) | func pruneProject(p *dep.Project, sm gps.SourceManager, logger *log.Logg... function calculatePrune (line 162) | func calculatePrune(vendorDir string, keep []string, logger *log.Logger)... function deleteDirs (line 190) | func deleteDirs(toDelete []string) error { type byLen (line 201) | type byLen method Len (line 203) | func (a byLen) Len() int { return len(a) } method Swap (line 204) | func (a byLen) Swap(i, j int) { a[i], a[j] = a[j], a[i] } method Less (line 205) | func (a byLen) Less(i, j int) bool { return len(a[i]) > len(a[j]) } FILE: cmd/dep/root_analyzer.go type rootAnalyzer (line 24) | type rootAnalyzer struct method InitializeRootManifestAndLock (line 40) | func (a *rootAnalyzer) InitializeRootManifestAndLock(dir string, pr gp... method cacheDeps (line 62) | func (a *rootAnalyzer) cacheDeps(pr gps.ProjectRoot) error { method importManifestAndLock (line 105) | func (a *rootAnalyzer) importManifestAndLock(dir string, pr gps.Projec... method removeTransitiveDependencies (line 132) | func (a *rootAnalyzer) removeTransitiveDependencies(m *dep.Manifest) { method DeriveManifestAndLock (line 143) | func (a *rootAnalyzer) DeriveManifestAndLock(dir string, pr gps.Projec... method FinalizeRootManifestAndLock (line 167) | func (a *rootAnalyzer) FinalizeRootManifestAndLock(m *dep.Manifest, l ... method Info (line 206) | func (a *rootAnalyzer) Info() gps.ProjectAnalyzerInfo { function newRootAnalyzer (line 31) | func newRootAnalyzer(skipTools bool, ctx *dep.Ctx, directDeps map[gps.Pr... FILE: cmd/dep/status.go constant availableTemplateVariables (line 30) | availableTemplateVariables = "ProjectRoot, Constraint, Version, Revision... constant availableDefaultTemplateVariables (line 31) | availableDefaultTemplateVariables = `.Projects[]{ constant statusShortHelp (line 41) | statusShortHelp = `Report the status of the project's dependencies` constant statusLongHelp (line 42) | statusLongHelp = ` constant statusExamples (line 59) | statusExamples = ` constant shortRev (line 107) | shortRev uint8 = iota constant longRev (line 108) | longRev type statusCommand (line 136) | type statusCommand struct method Name (line 118) | func (cmd *statusCommand) Name() string { return "status" } method Args (line 119) | func (cmd *statusCommand) Args() string { return "[package...]" } method ShortHelp (line 120) | func (cmd *statusCommand) ShortHelp() string { return statusShortHelp } method LongHelp (line 121) | func (cmd *statusCommand) LongHelp() string { return statusLongHelp } method Hidden (line 122) | func (cmd *statusCommand) Hidden() bool { return false } method Register (line 124) | func (cmd *statusCommand) Register(fs *flag.FlagSet) { method Run (line 433) | func (cmd *statusCommand) Run(ctx *dep.Ctx, args []string) error { method validateFlags (line 545) | func (cmd *statusCommand) validateFlags() error { method runOld (line 641) | func (cmd *statusCommand) runOld(ctx *dep.Ctx, out oldOutputter, p *de... method runStatusAll (line 888) | func (cmd *statusCommand) runStatusAll(ctx *dep.Ctx, out outputter, p ... type outputter (line 149) | type outputter interface type oldOutputter (line 162) | type oldOutputter interface type tableOutput (line 168) | type tableOutput struct method BasicHeader (line 170) | func (out *tableOutput) BasicHeader() error { method BasicFooter (line 175) | func (out *tableOutput) BasicFooter() error { method BasicLine (line 179) | func (out *tableOutput) BasicLine(bs *BasicStatus) error { method DetailHeader (line 192) | func (out *tableOutput) DetailHeader(metadata *dep.SolveMeta) error { method DetailFooter (line 197) | func (out *tableOutput) DetailFooter(metadata *dep.SolveMeta) error { method DetailLine (line 201) | func (out *tableOutput) DetailLine(ds *DetailStatus) error { method MissingHeader (line 215) | func (out *tableOutput) MissingHeader() error { method MissingLine (line 220) | func (out *tableOutput) MissingLine(ms *MissingStatus) error { method MissingFooter (line 229) | func (out *tableOutput) MissingFooter() error { method OldHeader (line 233) | func (out *tableOutput) OldHeader() error { method OldLine (line 238) | func (out *tableOutput) OldLine(os *OldStatus) error { method OldFooter (line 249) | func (out *tableOutput) OldFooter() error { type jsonOutput (line 253) | type jsonOutput struct method BasicHeader (line 261) | func (out *jsonOutput) BasicHeader() error { method BasicFooter (line 266) | func (out *jsonOutput) BasicFooter() error { method BasicLine (line 270) | func (out *jsonOutput) BasicLine(bs *BasicStatus) error { method DetailHeader (line 275) | func (out *jsonOutput) DetailHeader(metadata *dep.SolveMeta) error { method DetailFooter (line 280) | func (out *jsonOutput) DetailFooter(metadata *dep.SolveMeta) error { method DetailLine (line 289) | func (out *jsonOutput) DetailLine(ds *DetailStatus) error { method MissingHeader (line 294) | func (out *jsonOutput) MissingHeader() error { method MissingLine (line 299) | func (out *jsonOutput) MissingLine(ms *MissingStatus) error { method MissingFooter (line 304) | func (out *jsonOutput) MissingFooter() error { method OldHeader (line 308) | func (out *jsonOutput) OldHeader() error { method OldLine (line 313) | func (out *jsonOutput) OldLine(os *OldStatus) error { method OldFooter (line 318) | func (out *jsonOutput) OldFooter() error { type dotOutput (line 322) | type dotOutput struct method BasicHeader (line 329) | func (out *dotOutput) BasicHeader() error { method BasicFooter (line 341) | func (out *dotOutput) BasicFooter() error { method BasicLine (line 347) | func (out *dotOutput) BasicLine(bs *BasicStatus) error { method DetailHeader (line 352) | func (out *dotOutput) DetailHeader(metadata *dep.SolveMeta) error { method DetailFooter (line 356) | func (out *dotOutput) DetailFooter(metadata *dep.SolveMeta) error { method DetailLine (line 360) | func (out *dotOutput) DetailLine(ds *DetailStatus) error { method MissingHeader (line 364) | func (out *dotOutput) MissingHeader() error { return nil } method MissingLine (line 365) | func (out *dotOutput) MissingLine(ms *MissingStatus) error { return nil } method MissingFooter (line 366) | func (out *dotOutput) MissingFooter() error { return nil } type templateOutput (line 368) | type templateOutput struct method BasicHeader (line 374) | func (out *templateOutput) BasicHeader() error { return nil } method BasicFooter (line 375) | func (out *templateOutput) BasicFooter() error { return nil } method BasicLine (line 376) | func (out *templateOutput) BasicLine(bs *BasicStatus) error { method DetailHeader (line 388) | func (out *templateOutput) DetailHeader(metadata *dep.SolveMeta) error { method DetailFooter (line 394) | func (out *templateOutput) DetailFooter(metadata *dep.SolveMeta) error { method DetailLine (line 403) | func (out *templateOutput) DetailLine(ds *DetailStatus) error { method OldHeader (line 421) | func (out *templateOutput) OldHeader() error { return nil } method OldFooter (line 422) | func (out *templateOutput) OldFooter() error { return nil } method OldLine (line 423) | func (out *templateOutput) OldLine(os *OldStatus) error { method MissingHeader (line 427) | func (out *templateOutput) MissingHeader() error { return nil } method MissingFooter (line 428) | func (out *templateOutput) MissingFooter() error { return nil } method MissingLine (line 429) | func (out *templateOutput) MissingLine(ms *MissingStatus) error { type OldStatus (line 596) | type OldStatus struct method getConsolidatedConstraint (line 607) | func (os OldStatus) getConsolidatedConstraint() string { method getConsolidatedLatest (line 619) | func (os OldStatus) getConsolidatedLatest(revSize uint8) string { method marshalJSON (line 632) | func (os OldStatus) marshalJSON() *rawOldStatus { type rawOldStatus (line 603) | type rawOldStatus struct type rawStatus (line 726) | type rawStatus struct type rawDetail (line 737) | type rawDetail struct type rawDetailVersion (line 742) | type rawDetailVersion struct type rawDetailProject (line 748) | type rawDetailProject struct type rawDetailMetadata (line 760) | type rawDetailMetadata struct function newRawMetadata (line 769) | func newRawMetadata(metadata *dep.SolveMeta) rawDetailMetadata { type BasicStatus (line 785) | type BasicStatus struct method getConsolidatedConstraint (line 808) | func (bs *BasicStatus) getConsolidatedConstraint() string { method getConsolidatedVersion (line 825) | func (bs *BasicStatus) getConsolidatedVersion() string { method getConsolidatedLatest (line 833) | func (bs *BasicStatus) getConsolidatedLatest(revSize uint8) string { method marshalJSON (line 855) | func (bs *BasicStatus) marshalJSON() *rawStatus { type DetailStatus (line 800) | type DetailStatus struct method getPruneOpts (line 851) | func (ds *DetailStatus) getPruneOpts() string { method marshalJSON (line 866) | func (ds *DetailStatus) marshalJSON() *rawDetailProject { type MissingStatus (line 883) | type MissingStatus struct function basicOutputAll (line 1195) | func basicOutputAll(out outputter, slp []gps.LockedProject, bsMap map[st... function detailOutputAll (line 1213) | func detailOutputAll(out outputter, slp []gps.LockedProject, dsMap map[s... function formatVersion (line 1228) | func formatVersion(v gps.Version) string { function formatDetailVersion (line 1245) | func formatDetailVersion(v gps.Version, r gps.Revision) rawDetailVersion { function formatDetailLatestVersion (line 1269) | func formatDetailLatestVersion(v gps.Version, hasError bool) rawDetailVe... type projectConstraint (line 1280) | type projectConstraint struct type constraintsCollection (line 1288) | type constraintsCollection function collectConstraints (line 1293) | func collectConstraints(ctx *dep.Ctx, p *dep.Project, sm gps.SourceManag... type byProject (line 1400) | type byProject method Len (line 1402) | func (p byProject) Len() int { return len(p) } method Swap (line 1403) | func (p byProject) Swap(i, j int) { p[i], p[j] = p[j], p[i] } method Less (line 1404) | func (p byProject) Less(i, j int) bool { return p[i].Project < p[j].Pr... function parseStatusTemplate (line 1406) | func parseStatusTemplate(format string) (*template.Template, error) { function tomlStrSplit (line 1437) | func tomlStrSplit(strlist []string) string { constant statusLockTemplate (line 1457) | statusLockTemplate = `# This file is autogenerated, do not edit; changes... FILE: cmd/dep/status_test.go function TestStatusFormatVersion (line 26) | func TestStatusFormatVersion(t *testing.T) { function TestBasicLine (line 43) | func TestBasicLine(t *testing.T) { function TestDetailLine (line 201) | func TestDetailLine(t *testing.T) { function TestBasicStatusGetConsolidatedConstraint (line 425) | func TestBasicStatusGetConsolidatedConstraint(t *testing.T) { function TestBasicStatusGetConsolidatedVersion (line 478) | func TestBasicStatusGetConsolidatedVersion(t *testing.T) { function TestBasicStatusGetConsolidatedLatest (line 515) | func TestBasicStatusGetConsolidatedLatest(t *testing.T) { function TestCollectConstraints (line 572) | func TestCollectConstraints(t *testing.T) { function TestValidateFlags (line 791) | func TestValidateFlags(t *testing.T) { function execStatusTemplate (line 859) | func execStatusTemplate(w io.Writer, format string, data interface{}) er... constant expectedStatusDetail (line 867) | expectedStatusDetail = `# This file is autogenerated, do not edit; chang... function TestStatusDetailTemplates (line 878) | func TestStatusDetailTemplates(t *testing.T) { FILE: cmd/dep/testdata/cachedir/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/excess_inputs/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/missing_inputs/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/check/pruneopts_changed/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/pruneopts_changed/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/unmet_override/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/vendororphans/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/check/vendororphans/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/all-new-double/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/all-new/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/desync/final/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/desync/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/initial/main.go function main (line 7) | func main() {} FILE: cmd/dep/testdata/harness_tests/ensure/add/exists-imports/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/empty/case1/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/ensure/noverify/vendororphans/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/noverify/vendororphans/initial/vendor/github.com/sdboyer/deptest/deptest.go type Foo (line 3) | type Foo FILE: cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/case1/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/desync/final/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/desync/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/init/case1/initial/foo/bar.go function Foo (line 9) | func Foo() deptest.Foo { FILE: cmd/dep/testdata/harness_tests/init/case1/initial/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/case2/initial/foo/bar.go function Foo (line 9) | func Foo() deptest.Foo { FILE: cmd/dep/testdata/harness_tests/init/case2/initial/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/case3/initial/foo/bar.go function Foo (line 9) | func Foo() deptest.Foo { FILE: cmd/dep/testdata/harness_tests/init/case3/initial/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/case4/initial/foo/bar.go function Foo (line 9) | func Foo() deptest.Foo { FILE: cmd/dep/testdata/harness_tests/init/case4/initial/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/glide/case1/initial/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/glide/case1/initial/samples/samples.go function Sample1 (line 9) | func Sample1() int { FILE: cmd/dep/testdata/harness_tests/init/glide/case2/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/glide/case3/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/glide/case4/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/main.go type PointToDepTestGlideAv010 (line 11) | type PointToDepTestGlideAv010 FILE: cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/main.go type PointToDepTestGlideAv010 (line 12) | type PointToDepTestGlideAv010 type FooVersion2 (line 13) | type FooVersion2 FILE: cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/main.go type PointToDepTestGlideAv010 (line 12) | type PointToDepTestGlideAv010 type FooVersion2 (line 13) | type FooVersion2 FILE: cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/main.go type PointToDepTestGlideCv010 (line 12) | type PointToDepTestGlideCv010 type PointToDepTestGlideCv020 (line 13) | type PointToDepTestGlideCv020 FILE: cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/main.go type PointToDepTestGlideAv010 (line 11) | type PointToDepTestGlideAv010 FILE: cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/main.go type PointToDepTestGlideCv010 (line 12) | type PointToDepTestGlideCv010 type PointToDepTestGlideCv020 (line 13) | type PointToDepTestGlideCv020 FILE: cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/main.go type PointToDepTestGlideCv010 (line 12) | type PointToDepTestGlideCv010 type PointToDepTestGlideCv020 (line 13) | type PointToDepTestGlideCv020 FILE: cmd/dep/testdata/harness_tests/init/glock/case1/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/godep/case1/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/govend/case1/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/govendor/case1/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/govendor/case1/initial/samples/samples.go function Sample1 (line 9) | func Sample1() int { FILE: cmd/dep/testdata/harness_tests/init/gvt/case1/initial/main.go function main (line 15) | func main() { FILE: cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/foo/bar.go function Foo (line 9) | func Foo() deptest.Foo { FILE: cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/init/skip-hidden/initial/.foo/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/skip-hidden/initial/_foo/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/skip-hidden/initial/lib.go function Foo (line 9) | func Foo() deptest.Foo { FILE: cmd/dep/testdata/harness_tests/init/skip-hidden/initial/testdata/main.go function main (line 14) | func main() { FILE: cmd/dep/testdata/harness_tests/init/vndr/case1/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/status/case1/dot/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/status/case1/json/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/status/case1/table/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/status/case1/template/initial/main.go function main (line 12) | func main() { FILE: cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/status/old_constraints/initial/main.go function main (line 13) | func main() { FILE: cmd/dep/testdata/harness_tests/status/override_constraint/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/harness_tests/status/revision_constraint/initial/main.go function main (line 11) | func main() { FILE: cmd/dep/testdata/init/directdeps/main.go function main (line 9) | func main() {} FILE: cmd/dep/testdata/status/collect_constraints/main.go type FooBar (line 14) | type FooBar FILE: cmd/dep/version.go constant versionHelp (line 20) | versionHelp = `Show the dep version information` type versionCommand (line 32) | type versionCommand struct method Name (line 22) | func (cmd *versionCommand) Name() string { return "version" } method Args (line 23) | func (cmd *versionCommand) Args() string { method ShortHelp (line 26) | func (cmd *versionCommand) ShortHelp() string { return versionHelp } method LongHelp (line 27) | func (cmd *versionCommand) LongHelp() string { return versionHelp } method Hidden (line 28) | func (cmd *versionCommand) Hidden() bool { return false } method Register (line 30) | func (cmd *versionCommand) Register(fs *flag.FlagSet) {} method Run (line 34) | func (cmd *versionCommand) Run(ctx *dep.Ctx, args []string) error { FILE: context.go type Ctx (line 41) | type Ctx struct method SetPaths (line 55) | func (c *Ctx) SetPaths(wd string, GOPATHs ...string) error { method SourceManager (line 99) | func (c *Ctx) SourceManager() (*gps.SourceMgr, error) { method LoadProject (line 125) | func (c *Ctx) LoadProject() (*Project, error) { method DetectProjectGOPATH (line 256) | func (c *Ctx) DetectProjectGOPATH(p *Project) (string, error) { method detectGOPATH (line 298) | func (c *Ctx) detectGOPATH(path string) (string, error) { method ImportForAbs (line 313) | func (c *Ctx) ImportForAbs(path string) (string, error) { method AbsForImport (line 335) | func (c *Ctx) AbsForImport(path string) (string, error) { method ValidateParams (line 348) | func (c *Ctx) ValidateParams(sm gps.SourceManager, params gps.SolvePar... function defaultGOPATH (line 78) | func defaultGOPATH() string { function externalImportList (line 216) | func externalImportList(rpt pkgtree.PackageTree, m gps.RootManifest) []s... FILE: context_test.go function discardLogger (line 21) | func discardLogger() *log.Logger { function TestCtx_ProjectImport (line 25) | func TestCtx_ProjectImport(t *testing.T) { function TestAbsoluteProjectRoot (line 64) | func TestAbsoluteProjectRoot(t *testing.T) { function TestLoadProject (line 107) | func TestLoadProject(t *testing.T) { function TestExplicitRootProject (line 155) | func TestExplicitRootProject(t *testing.T) { function TestLoadProjectNotFoundErrors (line 218) | func TestLoadProjectNotFoundErrors(t *testing.T) { function TestLoadProjectManifestParseError (line 246) | func TestLoadProjectManifestParseError(t *testing.T) { function TestLoadProjectLockParseError (line 277) | func TestLoadProjectLockParseError(t *testing.T) { function TestLoadProjectNoSrcDir (line 308) | func TestLoadProjectNoSrcDir(t *testing.T) { function TestLoadProjectGopkgFilenames (line 330) | func TestLoadProjectGopkgFilenames(t *testing.T) { function TestCaseInsensitiveGOPATH (line 381) | func TestCaseInsensitiveGOPATH(t *testing.T) { function TestDetectProjectGOPATH (line 429) | func TestDetectProjectGOPATH(t *testing.T) { function TestDetectGOPATH (line 520) | func TestDetectGOPATH(t *testing.T) { function TestDepCachedir (line 561) | func TestDepCachedir(t *testing.T) { FILE: gps/_testdata/cmd/echosleep/echosleep.go function main (line 13) | func main() { FILE: gps/_testdata/cmd/stdout_stderr/stdout_stderr.go function main (line 11) | func main() { FILE: gps/bridge.go type sourceBridge (line 18) | type sourceBridge interface type bridge (line 40) | type bridge struct method GetManifestAndLock (line 80) | func (b *bridge) GetManifestAndLock(id ProjectIdentifier, v Version, a... method listVersions (line 91) | func (b *bridge) listVersions(id ProjectIdentifier) ([]Version, error) { method RevisionPresentIn (line 115) | func (b *bridge) RevisionPresentIn(id ProjectIdentifier, r Revision) (... method SourceExists (line 122) | func (b *bridge) SourceExists(id ProjectIdentifier) (bool, error) { method vendorCodeExists (line 129) | func (b *bridge) vendorCodeExists(id ProjectIdentifier) (bool, error) { method ListPackages (line 145) | func (b *bridge) ListPackages(id ProjectIdentifier, v Version) (pkgtre... method ExportProject (line 156) | func (b *bridge) ExportProject(id ProjectIdentifier, v Version, path s... method verifyRootDir (line 163) | func (b *bridge) verifyRootDir(path string) error { method DeduceProjectRoot (line 173) | func (b *bridge) DeduceProjectRoot(ip string) (ProjectRoot, error) { method breakLock (line 186) | func (b *bridge) breakLock() { method SyncSourceFor (line 211) | func (b *bridge) SyncSourceFor(id ProjectIdentifier) error { function mkBridge (line 71) | func mkBridge(s *solver, sm SourceManager, down bool) *bridge { FILE: gps/cmd.go method Args (line 11) | func (c cmd) Args() []string { method SetDir (line 15) | func (c cmd) SetDir(dir string) { method SetEnv (line 19) | func (c cmd) SetEnv(env []string) { function init (line 23) | func init() { FILE: gps/cmd_unix.go type cmd (line 21) | type cmd struct method CombinedOutput (line 46) | func (c cmd) CombinedOutput() ([]byte, error) { function commandContext (line 27) | func commandContext(ctx context.Context, name string, arg ...string) cmd { FILE: gps/cmd_windows.go type cmd (line 12) | type cmd struct function commandContext (line 16) | func commandContext(ctx context.Context, name string, arg ...string) cmd { FILE: gps/constraint.go type Constraint (line 26) | type Constraint interface function constraintFromCache (line 71) | func constraintFromCache(m *pb.Constraint) (Constraint, error) { function unpairedVersionFromCache (line 90) | func unpairedVersionFromCache(m *pb.Constraint) (UnpairedVersion, error) { function NewSemverConstraint (line 115) | func NewSemverConstraint(body string) (Constraint, error) { function NewSemverConstraintIC (line 135) | func NewSemverConstraintIC(body string) (Constraint, error) { type semverConstraint (line 148) | type semverConstraint struct method String (line 152) | func (c semverConstraint) String() string { method ImpliedCaretString (line 162) | func (c semverConstraint) ImpliedCaretString() string { method typedString (line 166) | func (c semverConstraint) typedString() string { method Matches (line 170) | func (c semverConstraint) Matches(v Version) bool { method MatchesAny (line 183) | func (c semverConstraint) MatchesAny(c2 Constraint) bool { method Intersect (line 187) | func (c semverConstraint) Intersect(c2 Constraint) Constraint { method identical (line 216) | func (c semverConstraint) identical(c2 Constraint) bool { method copyTo (line 224) | func (c semverConstraint) copyTo(msg *pb.Constraint) { function IsAny (line 230) | func IsAny(c Constraint) bool { function Any (line 236) | func Any() Constraint { type anyConstraint (line 242) | type anyConstraint struct method String (line 244) | func (anyConstraint) String() string { method ImpliedCaretString (line 248) | func (anyConstraint) ImpliedCaretString() string { method typedString (line 252) | func (anyConstraint) typedString() string { method Matches (line 256) | func (anyConstraint) Matches(Version) bool { method MatchesAny (line 260) | func (anyConstraint) MatchesAny(Constraint) bool { method Intersect (line 264) | func (anyConstraint) Intersect(c Constraint) Constraint { method identical (line 268) | func (anyConstraint) identical(c Constraint) bool { method copyTo (line 272) | func (anyConstraint) copyTo(*pb.Constraint) { type noneConstraint (line 278) | type noneConstraint struct method String (line 280) | func (noneConstraint) String() string { method ImpliedCaretString (line 284) | func (noneConstraint) ImpliedCaretString() string { method typedString (line 288) | func (noneConstraint) typedString() string { method Matches (line 292) | func (noneConstraint) Matches(Version) bool { method MatchesAny (line 296) | func (noneConstraint) MatchesAny(Constraint) bool { method Intersect (line 300) | func (noneConstraint) Intersect(Constraint) Constraint { method identical (line 304) | func (noneConstraint) identical(c Constraint) bool { method copyTo (line 309) | func (noneConstraint) copyTo(*pb.Constraint) { type ProjectConstraint (line 316) | type ProjectConstraint struct type ProjectConstraints (line 327) | type ProjectConstraints method overrideAll (line 370) | func (m ProjectConstraints) overrideAll(pcm ProjectConstraints) (out [... method override (line 387) | func (m ProjectConstraints) override(pr ProjectRoot, pp ProjectPropert... type workingConstraint (line 329) | type workingConstraint struct function pcSliceToMap (line 335) | func pcSliceToMap(l []ProjectConstraint, r ...[]ProjectConstraint) Proje... FILE: gps/constraint_test.go function gu (line 18) | func gu(v Constraint) string { function TestBranchConstraintOps (line 22) | func TestBranchConstraintOps(t *testing.T) { function TestVersionConstraintOps (line 203) | func TestVersionConstraintOps(t *testing.T) { function TestSemverVersionConstraintOps (line 384) | func TestSemverVersionConstraintOps(t *testing.T) { function TestSemverConstraintOps (line 584) | func TestSemverConstraintOps(t *testing.T) { function TestSemverConstraint_ImpliedCaret (line 678) | func TestSemverConstraint_ImpliedCaret(t *testing.T) { function TestTypedConstraintString (line 700) | func TestTypedConstraintString(t *testing.T) { function TestConstraintsIdentical (line 755) | func TestConstraintsIdentical(t *testing.T) { function testSemverConstraint (line 781) | func testSemverConstraint(t *testing.T, body string) Constraint { function TestConstraintEncoding (line 789) | func TestConstraintEncoding(t *testing.T) { FILE: gps/deduce.go constant gopkgUnstableSuffix (line 37) | gopkgUnstableSuffix = "-unstable" function validateVCSScheme (line 39) | func validateVCSScheme(scheme, typ string) bool { function pathDeducerTrie (line 91) | func pathDeducerTrie() *deducerTrie { type pathDeducer (line 105) | type pathDeducer interface type githubDeducer (line 116) | type githubDeducer struct method deduceRoot (line 120) | func (m githubDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 129) | func (m githubDeducer) deduceSource(path string, u *url.URL) (maybeSou... type bitbucketDeducer (line 163) | type bitbucketDeducer struct method deduceRoot (line 167) | func (m bitbucketDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 176) | func (m bitbucketDeducer) deduceSource(path string, u *url.URL) (maybe... type gopkginDeducer (line 245) | type gopkginDeducer struct method deduceRoot (line 249) | func (m gopkginDeducer) deduceRoot(p string) (string, error) { method parseAndValidatePath (line 258) | func (m gopkginDeducer) parseAndValidatePath(p string) ([]string, erro... method deduceSource (line 274) | func (m gopkginDeducer) deduceSource(p string, u *url.URL) (maybeSourc... type launchpadDeducer (line 323) | type launchpadDeducer struct method deduceRoot (line 327) | func (m launchpadDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 338) | func (m launchpadDeducer) deduceSource(path string, u *url.URL) (maybe... type launchpadGitDeducer (line 364) | type launchpadGitDeducer struct method deduceRoot (line 368) | func (m launchpadGitDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 378) | func (m launchpadGitDeducer) deduceSource(path string, u *url.URL) (ma... type jazzDeducer (line 404) | type jazzDeducer struct method deduceRoot (line 408) | func (m jazzDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 417) | func (m jazzDeducer) deduceSource(path string, u *url.URL) (maybeSourc... type apacheDeducer (line 437) | type apacheDeducer struct method deduceRoot (line 441) | func (m apacheDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 450) | func (m apacheDeducer) deduceSource(path string, u *url.URL) (maybeSou... type vcsExtensionDeducer (line 476) | type vcsExtensionDeducer struct method deduceRoot (line 480) | func (m vcsExtensionDeducer) deduceRoot(path string) (string, error) { method deduceSource (line 489) | func (m vcsExtensionDeducer) deduceSource(path string, u *url.URL) (ma... type deducer (line 559) | type deducer interface type deductionCoordinator (line 563) | type deductionCoordinator struct method deduceRootPath (line 587) | func (dc *deductionCoordinator) deduceRootPath(ctx context.Context, pa... method deduceKnownPaths (line 666) | func (dc *deductionCoordinator) deduceKnownPaths(path string) (pathDed... function newDeductionCoordinator (line 570) | func newDeductionCoordinator(superv *supervisor) *deductionCoordinator { type pathDeduction (line 659) | type pathDeduction struct type httpMetadataDeducer (line 706) | type httpMetadataDeducer struct method deduce (line 715) | func (hmd *httpMetadataDeducer) deduce(ctx context.Context, path strin... function normalizeURI (line 798) | func normalizeURI(p string) (*url.URL, string, error) { function fetchMetadata (line 833) | func fetchMetadata(ctx context.Context, path, scheme string) (rc io.Read... function doFetchMetadata (line 848) | func doFetchMetadata(ctx context.Context, scheme, path string) (io.ReadC... type netrcLine (line 873) | type netrcLine struct function parseNetrc (line 879) | func parseNetrc(data string) []netrcLine { function netrcPath (line 929) | func netrcPath() (string, error) { function readNetrc (line 944) | func readNetrc() { function addAuthFromNetrc (line 960) | func addAuthFromNetrc(rawurl string, req *http.Request) *http.Request { function getMetadata (line 982) | func getMetadata(ctx context.Context, path, scheme string) (string, stri... FILE: gps/deduce_test.go type pathDeductionFixture (line 17) | type pathDeductionFixture struct function mkurl (line 26) | func mkurl(s string) (u *url.URL) { function TestDeduceFromPath (line 506) | func TestDeduceFromPath(t *testing.T) { function TestVanityDeduction (line 606) | func TestVanityDeduction(t *testing.T) { function TestVanityDeductionSchemeMismatch (line 668) | func TestVanityDeductionSchemeMismatch(t *testing.T) { FILE: gps/discovery.go function charsetReader (line 23) | func charsetReader(charset string, input io.Reader) (io.Reader, error) { type metaImport (line 32) | type metaImport struct function parseMetaGoImports (line 41) | func parseMetaGoImports(r io.Reader) (imports []metaImport, err error) { function attrValue (line 83) | func attrValue(attrs []xml.Attr, name string) string { FILE: gps/error.go type errorSlice (line 12) | type errorSlice method Error (line 14) | func (errs errorSlice) Error() string { method Format (line 23) | func (errs errorSlice) Format(f fmt.State, c rune) { FILE: gps/example.go function main (line 29) | func main() { type NaiveAnalyzer (line 65) | type NaiveAnalyzer struct method DeriveManifestAndLock (line 71) | func (a NaiveAnalyzer) DeriveManifestAndLock(path string, n gps.Projec... method Info (line 77) | func (a NaiveAnalyzer) Info() gps.ProjectAnalyzerInfo { FILE: gps/filesystem.go type fsLink (line 16) | type fsLink struct type filesystemState (line 30) | type filesystemState struct method setup (line 37) | func (s filesystemState) setup() error { function deriveFilesystemState (line 86) | func deriveFilesystemState(root string) (filesystemState, error) { FILE: gps/filesystem_test.go type fsTestCase (line 19) | type fsTestCase struct method assert (line 25) | func (tc fsTestCase) assert(t *testing.T) { method setup (line 95) | func (tc fsTestCase) setup(t *testing.T) { function TestDeriveFilesystemState (line 101) | func TestDeriveFilesystemState(t *testing.T) { FILE: gps/identifier.go type ProjectRoot (line 41) | type ProjectRoot type ProjectIdentifier (line 78) | type ProjectIdentifier struct method Less (line 84) | func (i ProjectIdentifier) Less(j ProjectIdentifier) bool { method eq (line 94) | func (i ProjectIdentifier) eq(j ProjectIdentifier) bool { method equiv (line 122) | func (i ProjectIdentifier) equiv(j ProjectIdentifier) bool { method normalizedSource (line 137) | func (i ProjectIdentifier) normalizedSource() string { method String (line 144) | func (i ProjectIdentifier) String() string { method normalize (line 151) | func (i ProjectIdentifier) normalize() ProjectIdentifier { type ProjectProperties (line 165) | type ProjectProperties struct type bimodalIdentifier (line 171) | type bimodalIdentifier struct type atom (line 182) | type atom struct type atomWithPackages (line 192) | type atomWithPackages struct method bmi (line 202) | func (awp atomWithPackages) bmi() bimodalIdentifier { type completeDep (line 213) | type completeDep struct type dependency (line 223) | type dependency struct FILE: gps/internal/pb/source_cache.pb.go constant _ (line 30) | _ = proto.ProtoPackageIsVersion2 type Constraint_Type (line 32) | type Constraint_Type method String (line 57) | func (x Constraint_Type) String() string { method EnumDescriptor (line 60) | func (Constraint_Type) EnumDescriptor() ([]byte, []int) { return fileD... constant Constraint_Revision (line 35) | Constraint_Revision Constraint_Type = 0 constant Constraint_Branch (line 36) | Constraint_Branch Constraint_Type = 1 constant Constraint_DefaultBranch (line 37) | Constraint_DefaultBranch Constraint_Type = 2 constant Constraint_Version (line 38) | Constraint_Version Constraint_Type = 3 constant Constraint_Semver (line 39) | Constraint_Semver Constraint_Type = 4 type Constraint (line 63) | type Constraint struct method Reset (line 68) | func (m *Constraint) Reset() { *m = Constraint{} } method String (line 69) | func (m *Constraint) String() string { return proto.Compact... method ProtoMessage (line 70) | func (*Constraint) ProtoMessage() {} method Descriptor (line 71) | func (*Constraint) Descriptor() ([]byte, []int) { return fileDescripto... method GetType (line 73) | func (m *Constraint) GetType() Constraint_Type { method GetValue (line 80) | func (m *Constraint) GetValue() string { type ProjectProperties (line 88) | type ProjectProperties struct method Reset (line 94) | func (m *ProjectProperties) Reset() { *m = ProjectP... method String (line 95) | func (m *ProjectProperties) String() string { return proto.... method ProtoMessage (line 96) | func (*ProjectProperties) ProtoMessage() {} method Descriptor (line 97) | func (*ProjectProperties) Descriptor() ([]byte, []int) { return fileDe... method GetRoot (line 99) | func (m *ProjectProperties) GetRoot() string { method GetSource (line 106) | func (m *ProjectProperties) GetSource() string { method GetConstraint (line 113) | func (m *ProjectProperties) GetConstraint() *Constraint { type LockedProject (line 121) | type LockedProject struct method Reset (line 129) | func (m *LockedProject) Reset() { *m = LockedProjec... method String (line 130) | func (m *LockedProject) String() string { return proto.Comp... method ProtoMessage (line 131) | func (*LockedProject) ProtoMessage() {} method Descriptor (line 132) | func (*LockedProject) Descriptor() ([]byte, []int) { return fileDescri... method GetRoot (line 134) | func (m *LockedProject) GetRoot() string { method GetSource (line 141) | func (m *LockedProject) GetSource() string { method GetUnpairedVersion (line 148) | func (m *LockedProject) GetUnpairedVersion() *Constraint { method GetRevision (line 155) | func (m *LockedProject) GetRevision() string { method GetPackages (line 162) | func (m *LockedProject) GetPackages() []string { function init (line 169) | func init() { function init (line 176) | func init() { proto.RegisterFile("source_cache.proto", fileDescriptor0) } FILE: gps/lock.go type Lock (line 19) | type Lock interface function sortLockedProjects (line 30) | func sortLockedProjects(lps []LockedProject) []LockedProject { type LockedProject (line 48) | type LockedProject interface type lockedProject (line 57) | type lockedProject struct method Ident (line 121) | func (lp lockedProject) Ident() ProjectIdentifier { method Version (line 127) | func (lp lockedProject) Version() Version { method Eq (line 141) | func (lp lockedProject) Eq(lp2 LockedProject) bool { method Packages (line 198) | func (lp lockedProject) Packages() []string { method String (line 202) | func (lp lockedProject) String() string { type SimpleLock (line 66) | type SimpleLock method Projects (line 71) | func (l SimpleLock) Projects() []LockedProject { method InputImports (line 77) | func (l SimpleLock) InputImports() []string { function NewLockedProject (line 91) | func NewLockedProject(id ProjectIdentifier, v Version, pkgs []string) Lo... type safeLock (line 207) | type safeLock struct method InputImports (line 212) | func (sl safeLock) InputImports() []string { method Projects (line 216) | func (sl safeLock) Projects() []LockedProject { function prepLock (line 225) | func prepLock(l Lock) safeLock { FILE: gps/lock_test.go function TestLockedProjectSorting (line 13) | func TestLockedProjectSorting(t *testing.T) { function TestLockedProjectsEq (line 35) | func TestLockedProjectsEq(t *testing.T) { function TestLockedProjectsString (line 86) | func TestLockedProjectsString(t *testing.T) { FILE: gps/manager_test.go type naiveAnalyzer (line 30) | type naiveAnalyzer struct method DeriveManifestAndLock (line 32) | func (naiveAnalyzer) DeriveManifestAndLock(string, ProjectRoot) (Manif... method Info (line 36) | func (a naiveAnalyzer) Info() ProjectAnalyzerInfo { function mkNaiveSM (line 43) | func mkNaiveSM(t *testing.T) (*SourceMgr, func()) { function remakeNaiveSM (line 66) | func remakeNaiveSM(osm *SourceMgr, t *testing.T) (*SourceMgr, func()) { function TestSourceManagerInit (line 87) | func TestSourceManagerInit(t *testing.T) { function TestSourceInit (line 143) | func TestSourceInit(t *testing.T) { function TestDefaultBranchAssignment (line 279) | func TestDefaultBranchAssignment(t *testing.T) { function TestMgrMethodsFailWithBadPath (line 324) | func TestMgrMethodsFailWithBadPath(t *testing.T) { type sourceCreationTestFixture (line 354) | type sourceCreationTestFixture struct method run (line 359) | func (f sourceCreationTestFixture) run(t *testing.T) { function TestSourceCreationCounts (line 406) | func TestSourceCreationCounts(t *testing.T) { function TestGetSources (line 449) | func TestGetSources(t *testing.T) { function TestFSCaseSensitivityConvergesSources (line 516) | func TestFSCaseSensitivityConvergesSources(t *testing.T) { function TestGetInfoListVersionsOrdering (line 571) | func TestGetInfoListVersionsOrdering(t *testing.T) { function TestDeduceProjectRoot (line 599) | func TestDeduceProjectRoot(t *testing.T) { function TestMultiFetchThreadsafe (line 675) | func TestMultiFetchThreadsafe(t *testing.T) { function TestListVersionsRacey (line 782) | func TestListVersionsRacey(t *testing.T) { function TestErrAfterRelease (line 807) | func TestErrAfterRelease(t *testing.T) { function TestSignalHandling (line 869) | func TestSignalHandling(t *testing.T) { function TestUnreachableSource (line 936) | func TestUnreachableSource(t *testing.T) { function TestSupervisor (line 953) | func TestSupervisor(t *testing.T) { FILE: gps/manifest.go type Manifest (line 21) | type Manifest interface type RootManifest (line 28) | type RootManifest interface type SimpleManifest (line 68) | type SimpleManifest struct method DependencyConstraints (line 75) | func (m SimpleManifest) DependencyConstraints() ProjectConstraints { type simpleRootManifest (line 81) | type simpleRootManifest struct method DependencyConstraints (line 87) | func (m simpleRootManifest) DependencyConstraints() ProjectConstraints { method Overrides (line 90) | func (m simpleRootManifest) Overrides() ProjectConstraints { method IgnoredPackages (line 93) | func (m simpleRootManifest) IgnoredPackages() *pkgtree.IgnoredRuleset { method RequiredPackages (line 96) | func (m simpleRootManifest) RequiredPackages() map[string]bool { function prepManifest (line 106) | func prepManifest(m Manifest) SimpleManifest { FILE: gps/manifest_test.go function TestPrepManifest (line 10) | func TestPrepManifest(t *testing.T) { FILE: gps/maybe_source.go type maybeSource (line 24) | type maybeSource interface type maybeSources (line 31) | type maybeSources method possibleURLs (line 33) | func (mbs maybeSources) possibleURLs() []*url.URL { function sourceCachePath (line 42) | func sourceCachePath(cacheDir, sourceURL string) string { type maybeGitSource (line 46) | type maybeGitSource struct method try (line 50) | func (m maybeGitSource) try(ctx context.Context, cachedir string) (sou... method URL (line 70) | func (m maybeGitSource) URL() *url.URL { method String (line 74) | func (m maybeGitSource) String() string { type maybeGopkginSource (line 78) | type maybeGopkginSource struct method try (line 92) | func (m maybeGopkginSource) try(ctx context.Context, cachedir string) ... method URL (line 121) | func (m maybeGopkginSource) URL() *url.URL { method String (line 128) | func (m maybeGopkginSource) String() string { type maybeBzrSource (line 132) | type maybeBzrSource struct method try (line 136) | func (m maybeBzrSource) try(ctx context.Context, cachedir string) (sou... method URL (line 156) | func (m maybeBzrSource) URL() *url.URL { method String (line 160) | func (m maybeBzrSource) String() string { type maybeHgSource (line 164) | type maybeHgSource struct method try (line 168) | func (m maybeHgSource) try(ctx context.Context, cachedir string) (sour... method URL (line 188) | func (m maybeHgSource) URL() *url.URL { method String (line 192) | func (m maybeHgSource) String() string { function ufmt (line 198) | func ufmt(u *url.URL) string { FILE: gps/maybe_source_test.go function TestMaybeGitSource_try (line 21) | func TestMaybeGitSource_try(t *testing.T) { function TestMaybeGitSource_try_recovery (line 46) | func TestMaybeGitSource_try_recovery(t *testing.T) { function untar (line 98) | func untar(dst string, r io.Reader) error { FILE: gps/metrics.go type metrics (line 16) | type metrics struct method push (line 32) | func (m *metrics) push(name string) { method pop (line 40) | func (m *metrics) pop() { method dump (line 48) | func (m *metrics) dump(l *log.Logger) { function newMetrics (line 22) | func newMetrics() *metrics { type ndpair (line 75) | type ndpair struct type ndpairs (line 80) | type ndpairs method Less (line 82) | func (s ndpairs) Less(i, j int) bool { return s[i].d < s[j].d } method Swap (line 83) | func (s ndpairs) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Len (line 84) | func (s ndpairs) Len() int { return len(s) } FILE: gps/paths/paths.go function IsStandardImportPath (line 14) | func IsStandardImportPath(path string) bool { FILE: gps/paths/paths_test.go function TestIsStandardImportPath (line 13) | func TestIsStandardImportPath(t *testing.T) { FILE: gps/pkgtree/ignored_ruleset.go type IgnoredRuleset (line 16) | type IgnoredRuleset struct method IsIgnored (line 71) | func (ir *IgnoredRuleset) IsIgnored(path string) bool { method Len (line 81) | func (ir *IgnoredRuleset) Len() int { method ToSlice (line 92) | func (ir *IgnoredRuleset) ToSlice() []string { function NewIgnoredRuleset (line 27) | func NewIgnoredRuleset(ig []string) *IgnoredRuleset { FILE: gps/pkgtree/ignored_ruleset_test.go function TestIgnoredRuleset (line 9) | func TestIgnoredRuleset(t *testing.T) { FILE: gps/pkgtree/pkgtree.go type Package (line 25) | type Package struct function ListPackages (line 64) | func ListPackages(fileRoot, importRoot string) (PackageTree, error) { function fillPackage (line 212) | func fillPackage(p *build.Package) error { function findImportComment (line 330) | func findImportComment(pkgName *ast.Ident, c *ast.CommentGroup) string { type ConflictingImportComments (line 367) | type ConflictingImportComments struct method Error (line 372) | func (e *ConflictingImportComments) Error() string { type NonCanonicalImportRoot (line 379) | type NonCanonicalImportRoot struct method Error (line 384) | func (e *NonCanonicalImportRoot) Error() string { function quotedPaths (line 389) | func quotedPaths(ps []string) string { type LocalImportsError (line 401) | type LocalImportsError struct method Error (line 407) | func (e *LocalImportsError) Error() string { type wm (line 419) | type wm struct type PackageOrErr (line 427) | type PackageOrErr struct type ProblemImportError (line 434) | type ProblemImportError struct method Error (line 449) | func (e *ProblemImportError) Error() string { function missingPkgErr (line 461) | func missingPkgErr(pkg string) error { type PackageTree (line 469) | type PackageTree struct method ToReachMap (line 547) | func (t PackageTree) ToReachMap(main, tests, backprop bool, ignore *Ig... method Copy (line 608) | func (t PackageTree) Copy() PackageTree { method TrimHiddenPackages (line 679) | func (t PackageTree) TrimHiddenPackages(main, tests bool, ignore *Igno... function CopyPackages (line 616) | func CopyPackages(p map[string]PackageOrErr, fn func(string, PackageOrEr... function wmToReach (line 719) | func wmToReach(workmap map[string]wm, backprop bool) (ReachMap, map[stri... function eqOrSlashedPrefix (line 1057) | func eqOrSlashedPrefix(s, prefix string) bool { function dedupeStrings (line 1067) | func dedupeStrings(s1, s2 []string) (r []string) { function uniq (line 1092) | func uniq(a []string) []string { FILE: gps/pkgtree/pkgtree_test.go function TestWorkmapToReach (line 33) | func TestWorkmapToReach(t *testing.T) { function TestListPackagesNoDir (line 564) | func TestListPackagesNoDir(t *testing.T) { function TestListPackages (line 574) | func TestListPackages(t *testing.T) { function TestTrimHiddenPackages (line 1631) | func TestTrimHiddenPackages(t *testing.T) { function TestListPackagesNoPerms (line 1739) | func TestListPackagesNoPerms(t *testing.T) { function TestToReachMap (line 1822) | func TestToReachMap(t *testing.T) { function TestFlattenReachMap (line 2082) | func TestFlattenReachMap(t *testing.T) { type flattenReachMapCase (line 2287) | type flattenReachMapCase struct function testFlattenReachMap (line 2295) | func testFlattenReachMap(ptree *PackageTree, testCase *flattenReachMapCa... function TestToReachMapCycle (line 2310) | func TestToReachMapCycle(t *testing.T) { function TestToReachMapFilterDot (line 2331) | func TestToReachMapFilterDot(t *testing.T) { function getTestdataRootDir (line 2350) | func getTestdataRootDir(t *testing.T) string { function TestCanaryPackageTreeCopy (line 2360) | func TestCanaryPackageTreeCopy(t *testing.T) { function TestPackageTreeCopy (line 2393) | func TestPackageTreeCopy(t *testing.T) { FILE: gps/pkgtree/reachmap.go type ReachMap (line 17) | type ReachMap method FlattenFn (line 41) | func (rm ReachMap) FlattenFn(exclude func(string) bool) []string { function pkgFilter (line 26) | func pkgFilter(pkg string) bool { FILE: gps/prune.go type PruneOptions (line 20) | type PruneOptions method String (line 84) | func (po PruneOptions) String() string { constant PruneNestedVendorDirs (line 24) | PruneNestedVendorDirs PruneOptions = 1 << iota constant PruneUnusedPackages (line 26) | PruneUnusedPackages constant PruneNonGoFiles (line 30) | PruneNonGoFiles constant PruneGoTestFiles (line 32) | PruneGoTestFiles type PruneOptionSet (line 45) | type PruneOptionSet struct type CascadingPruneOptions (line 57) | type CascadingPruneOptions struct method PruneOptionsFor (line 108) | func (o CascadingPruneOptions) PruneOptionsFor(pr ProjectRoot) PruneOp... function ParsePruneOptions (line 64) | func ParsePruneOptions(input string) (PruneOptions, error) { function defaultCascadingPruneOptions (line 150) | func defaultCascadingPruneOptions() CascadingPruneOptions { function PruneProject (line 183) | func PruneProject(baseDir string, lp LockedProject, options PruneOptions... function pruneVendorDirs (line 222) | func pruneVendorDirs(fsState filesystemState) error { function pruneUnusedPackages (line 246) | func pruneUnusedPackages(lp LockedProject, fsState filesystemState) (map... function calculateUnusedPackages (line 260) | func calculateUnusedPackages(lp LockedProject, fsState filesystemState) ... function collectUnusedPackagesFiles (line 286) | func collectUnusedPackagesFiles(fsState filesystemState, unusedPackages ... function isSourceFile (line 306) | func isSourceFile(path string) bool { function pruneNonGoFiles (line 340) | func pruneNonGoFiles(fsState filesystemState) error { function isPreservedFile (line 368) | func isPreservedFile(name string) bool { function pruneGoTestFiles (line 391) | func pruneGoTestFiles(fsState filesystemState) error { function deleteEmptyDirs (line 409) | func deleteEmptyDirs(fsState filesystemState) error { function fileExt (line 430) | func fileExt(name string) string { FILE: gps/prune_test.go function TestCascadingPruneOptions (line 15) | func TestCascadingPruneOptions(t *testing.T) { function TestPruneProject (line 106) | func TestPruneProject(t *testing.T) { function TestPruneUnusedPackages (line 129) | func TestPruneUnusedPackages(t *testing.T) { function TestPruneNonGoFiles (line 264) | func TestPruneNonGoFiles(t *testing.T) { function TestPruneGoTestFiles (line 359) | func TestPruneGoTestFiles(t *testing.T) { function TestPruneVendorDirs (line 456) | func TestPruneVendorDirs(t *testing.T) { function pruneVendorDirsTestCase (line 666) | func pruneVendorDirsTestCase(tc fsTestCase) func(*testing.T) { function TestDeleteEmptyDirs (line 696) | func TestDeleteEmptyDirs(t *testing.T) { FILE: gps/rootdata.go type rootdata (line 16) | type rootdata struct method externalImportList (line 56) | func (rd rootdata) externalImportList(stdLibFn func(string) bool) []st... method getApplicableConstraints (line 82) | func (rd rootdata) getApplicableConstraints(stdLibFn func(string) bool... method combineConstraints (line 140) | func (rd rootdata) combineConstraints() []workingConstraint { method needVersionsFor (line 152) | func (rd rootdata) needVersionsFor(pr ProjectRoot) bool { method isRoot (line 175) | func (rd rootdata) isRoot(pr ProjectRoot) bool { method rootAtom (line 180) | func (rd rootdata) rootAtom() atomWithPackages { FILE: gps/rootdata_test.go function TestRootdataExternalImports (line 14) | func TestRootdataExternalImports(t *testing.T) { function TestGetApplicableConstraints (line 69) | func TestGetApplicableConstraints(t *testing.T) { FILE: gps/satisfy.go method check (line 13) | func (s *solver) check(a atomWithPackages, pkgonly bool) error { method checkAtomAllowable (line 81) | func (s *solver) checkAtomAllowable(pa atom) error { method checkRequiredPackagesExist (line 108) | func (s *solver) checkRequiredPackagesExist(a atomWithPackages) error { method checkDepsConstraintsAllowable (line 148) | func (s *solver) checkDepsConstraintsAllowable(a atomWithPackages, cdep ... method checkDepsDisallowsSelected (line 181) | func (s *solver) checkDepsDisallowsSelected(a atomWithPackages, cdep com... method checkIdentMatches (line 202) | func (s *solver) checkIdentMatches(a atomWithPackages, cdep completeDep)... method checkRootCaseConflicts (line 229) | func (s *solver) checkRootCaseConflicts(a atomWithPackages, cdep complet... method checkPackageImportsFromDepExist (line 277) | func (s *solver) checkPackageImportsFromDepExist(a atomWithPackages, cde... method checkRevisionExists (line 318) | func (s *solver) checkRevisionExists(a atomWithPackages, cdep completeDe... FILE: gps/selection.go type selection (line 7) | type selection struct method getDependenciesOn (line 26) | func (s *selection) getDependenciesOn(id ProjectIdentifier) []dependen... method getIdentFor (line 39) | func (s *selection) getIdentFor(pr ProjectRoot) (ProjectIdentifier, bo... method pushSelection (line 53) | func (s *selection) pushSelection(a atomWithPackages, pkgonly bool) { method popSelection (line 64) | func (s *selection) popSelection() (atomWithPackages, bool) { method findCaseConflicts (line 73) | func (s *selection) findCaseConflicts(pr ProjectRoot) (bool, ProjectRo... method pushDep (line 81) | func (s *selection) pushDep(dep dependency) { method popDep (line 91) | func (s *selection) popDep(id ProjectIdentifier) (dep dependency) { method depperCount (line 102) | func (s *selection) depperCount(id ProjectIdentifier) int { method getRequiredPackagesIn (line 108) | func (s *selection) getRequiredPackagesIn(id ProjectIdentifier) map[st... method getSelectedPackagesIn (line 129) | func (s *selection) getSelectedPackagesIn(id ProjectIdentifier) map[st... method getProjectImportMap (line 147) | func (s *selection) getProjectImportMap() map[ProjectRoot]map[string]s... method getConstraint (line 168) | func (s *selection) getConstraint(id ProjectIdentifier) Constraint { method selected (line 197) | func (s *selection) selected(id ProjectIdentifier) (atomWithPackages, ... type selected (line 21) | type selected struct type unselected (line 207) | type unselected struct method Len (line 212) | func (u unselected) Len() int { method Less (line 216) | func (u unselected) Less(i, j int) bool { method Swap (line 220) | func (u unselected) Swap(i, j int) { method Push (line 224) | func (u *unselected) Push(x interface{}) { method Pop (line 228) | func (u *unselected) Pop() (v interface{}) { method remove (line 243) | func (u *unselected) remove(bmi bimodalIdentifier) { FILE: gps/selection_test.go function TestUnselectedRemoval (line 13) | func TestUnselectedRemoval(t *testing.T) { FILE: gps/solution.go type Solution (line 20) | type Solution interface type solution (line 33) | type solution struct method Projects (line 152) | func (r solution) Projects() []LockedProject { method InputImports (line 156) | func (r solution) InputImports() []string { method Attempts (line 160) | func (r solution) Attempts() int { method AnalyzerName (line 164) | func (r solution) AnalyzerName() string { method AnalyzerVersion (line 168) | func (r solution) AnalyzerVersion() int { method SolverName (line 172) | func (r solution) SolverName() string { method SolverVersion (line 176) | func (r solution) SolverVersion() int { type WriteProgress (line 51) | type WriteProgress struct method String (line 58) | func (p WriteProgress) String() string { constant concurrentWriters (line 66) | concurrentWriters = 16 function WriteDepTree (line 78) | func WriteDepTree(basedir string, l Lock, sm SourceManager, co Cascading... FILE: gps/solution_test.go function pi (line 21) | func pi(n string) ProjectIdentifier { function init (line 27) | func init() { function testWriteDepTree (line 44) | func testWriteDepTree(t *testing.T) { function BenchmarkCreateVendorTree (line 120) | func BenchmarkCreateVendorTree(b *testing.B) { FILE: gps/solve_basic_test.go function nvSplit (line 25) | func nvSplit(info string) (id ProjectIdentifier, version string) { function nvrSplit (line 48) | func nvrSplit(info string) (id ProjectIdentifier, version string, revisi... function mkAtom (line 84) | func mkAtom(info string) atom { function mkPCstrnt (line 138) | func mkPCstrnt(info string) ProjectConstraint { function mkCDep (line 182) | func mkCDep(pdep string, pl ...string) completeDep { type depspec (line 195) | type depspec struct method DependencyConstraints (line 1556) | func (ds depspec) DependencyConstraints() ProjectConstraints { function mkDepspec (line 209) | func mkDepspec(pi string, deps ...string) depspec { function mkDep (line 227) | func mkDep(atom, pdep string, pl ...string) dependency { function mkADep (line 234) | func mkADep(atom, pdep string, c Constraint, pl ...string) dependency { function mkPI (line 254) | func mkPI(root string) ProjectIdentifier { function mkSVC (line 261) | func mkSVC(body string) Constraint { function mklock (line 270) | func mklock(pairs ...string) fixLock { function mkrevlock (line 282) | func mkrevlock(pairs ...string) fixLock { function mksolution (line 303) | func mksolution(inputs ...interface{}) map[ProjectIdentifier]LockedProje... function mklp (line 321) | func mklp(pair string, pkgs ...string) LockedProject { function computeBasicReachMap (line 331) | func computeBasicReachMap(ds []depspec) reachMap { type pident (line 354) | type pident struct type specfix (line 359) | type specfix interface type basicFixture (line 383) | type basicFixture struct method name (line 409) | func (f basicFixture) name() string { method specs (line 413) | func (f basicFixture) specs() []depspec { method maxTries (line 417) | func (f basicFixture) maxTries() int { method solution (line 421) | func (f basicFixture) solution() map[ProjectIdentifier]LockedProject { method rootmanifest (line 425) | func (f basicFixture) rootmanifest() RootManifest { method rootTree (line 432) | func (f basicFixture) rootTree() pkgtree.PackageTree { method failure (line 455) | func (f basicFixture) failure() error { function init (line 1253) | func init() { type reachMap (line 1290) | type reachMap type depspecSourceManager (line 1292) | type depspecSourceManager struct method GetManifestAndLock (line 1322) | func (sm *depspecSourceManager) GetManifestAndLock(id ProjectIdentifie... method ListPackages (line 1343) | func (sm *depspecSourceManager) ListPackages(id ProjectIdentifier, v V... method ListVersions (line 1392) | func (sm *depspecSourceManager) ListVersions(id ProjectIdentifier) ([]... method RevisionPresentIn (line 1421) | func (sm *depspecSourceManager) RevisionPresentIn(id ProjectIdentifier... method SourceExists (line 1432) | func (sm *depspecSourceManager) SourceExists(id ProjectIdentifier) (bo... method SyncSourceFor (line 1443) | func (sm *depspecSourceManager) SyncSourceFor(id ProjectIdentifier) er... method Release (line 1451) | func (sm *depspecSourceManager) Release() {} method ExportProject (line 1453) | func (sm *depspecSourceManager) ExportProject(context.Context, Project... method ExportPrunedProject (line 1457) | func (sm *depspecSourceManager) ExportPrunedProject(context.Context, L... method DeduceProjectRoot (line 1461) | func (sm *depspecSourceManager) DeduceProjectRoot(ip string) (ProjectR... method SourceURLsForPath (line 1472) | func (sm *depspecSourceManager) SourceURLsForPath(ip string) ([]*url.U... method rootSpec (line 1476) | func (sm *depspecSourceManager) rootSpec() depspec { method allSpecs (line 1480) | func (sm *depspecSourceManager) allSpecs() []depspec { method ignore (line 1484) | func (sm *depspecSourceManager) ignore() map[string]bool { method InferConstraint (line 1493) | func (sm *depspecSourceManager) InferConstraint(s string, pi ProjectId... type fixSM (line 1298) | type fixSM interface function newdepspecSM (line 1307) | func newdepspecSM(ds []depspec, ignore []string) *depspecSourceManager { type depspecBridge (line 1497) | type depspecBridge struct method listVersions (line 1501) | func (b *depspecBridge) listVersions(id ProjectIdentifier) ([]Version,... method verifyRootDir (line 1533) | func (b *depspecBridge) verifyRootDir(path string) error { method ListPackages (line 1542) | func (b *depspecBridge) ListPackages(id ProjectIdentifier, v Version) ... method vendorCodeExists (line 1546) | func (b *depspecBridge) vendorCodeExists(id ProjectIdentifier) (bool, ... type fixLock (line 1560) | type fixLock method Projects (line 1563) | func (l fixLock) Projects() []LockedProject { method InputImports (line 1568) | func (fixLock) InputImports() []string { type dummyLock (line 1572) | type dummyLock struct method Projects (line 1575) | func (dummyLock) Projects() []LockedProject { method InputImports (line 1580) | func (dummyLock) InputImports() []string { FILE: gps/solve_bimodal_test.go function dsp (line 18) | func dsp(ds depspec, pkgs ...tpkg) depspec { function pkg (line 24) | func pkg(path string, imports ...string) tpkg { function init (line 31) | func init() { type tpkg (line 1290) | type tpkg struct type bimodalFixture (line 1297) | type bimodalFixture struct method name (line 1328) | func (f bimodalFixture) name() string { method specs (line 1332) | func (f bimodalFixture) specs() []depspec { method maxTries (line 1336) | func (f bimodalFixture) maxTries() int { method solution (line 1340) | func (f bimodalFixture) solution() map[ProjectIdentifier]LockedProject { method rootmanifest (line 1344) | func (f bimodalFixture) rootmanifest() RootManifest { method rootTree (line 1358) | func (f bimodalFixture) rootTree() pkgtree.PackageTree { method failure (line 1380) | func (f bimodalFixture) failure() error { type bmSourceManager (line 1387) | type bmSourceManager struct method ListPackages (line 1404) | func (sm *bmSourceManager) ListPackages(id ProjectIdentifier, v Versio... method GetManifestAndLock (line 1451) | func (sm *bmSourceManager) GetManifestAndLock(id ProjectIdentifier, v ... function newbmSM (line 1394) | func newbmSM(bmf bimodalFixture) *bmSourceManager { function computeBimodalExternalMap (line 1473) | func computeBimodalExternalMap(specs []depspec) map[pident]map[string][]... FILE: gps/solve_failures.go function a2vs (line 14) | func a2vs(a atom) string { type traceError (line 22) | type traceError interface type noVersionError (line 26) | type noVersionError struct method Error (line 31) | func (e *noVersionError) Error() string { method traceString (line 45) | func (e *noVersionError) traceString() string { type caseMismatchFailure (line 65) | type caseMismatchFailure struct method Error (line 78) | func (e *caseMismatchFailure) Error() string { method traceString (line 96) | func (e *caseMismatchFailure) traceString() string { type wrongCaseFailure (line 112) | type wrongCaseFailure struct method Error (line 122) | func (e *wrongCaseFailure) Error() string { method traceString (line 140) | func (e *wrongCaseFailure) traceString() string { type disjointConstraintFailure (line 154) | type disjointConstraintFailure struct method Error (line 171) | func (e *disjointConstraintFailure) Error() string { method traceString (line 199) | func (e *disjointConstraintFailure) traceString() string { type constraintNotAllowedFailure (line 225) | type constraintNotAllowedFailure struct method Error (line 234) | func (e *constraintNotAllowedFailure) Error() string { method traceString (line 244) | func (e *constraintNotAllowedFailure) traceString() string { type versionNotAllowedFailure (line 258) | type versionNotAllowedFailure struct method Error (line 271) | func (e *versionNotAllowedFailure) Error() string { method traceString (line 292) | func (e *versionNotAllowedFailure) traceString() string { type missingSourceFailure (line 303) | type missingSourceFailure struct method Error (line 308) | func (e *missingSourceFailure) Error() string { type badOptsFailure (line 312) | type badOptsFailure method Error (line 314) | func (e badOptsFailure) Error() string { type sourceMismatchFailure (line 318) | type sourceMismatchFailure struct method Error (line 333) | func (e *sourceMismatchFailure) Error() string { method traceString (line 343) | func (e *sourceMismatchFailure) traceString() string { type errDeppers (line 355) | type errDeppers struct type checkeeHasProblemPackagesFailure (line 369) | type checkeeHasProblemPackagesFailure struct method Error (line 377) | func (e *checkeeHasProblemPackagesFailure) Error() string { method traceString (line 424) | func (e *checkeeHasProblemPackagesFailure) traceString() string { type depHasProblemPackagesFailure (line 459) | type depHasProblemPackagesFailure struct method Error (line 473) | func (e *depHasProblemPackagesFailure) Error() string { method traceString (line 518) | func (e *depHasProblemPackagesFailure) traceString() string { type nonexistentRevisionFailure (line 551) | type nonexistentRevisionFailure struct method Error (line 556) | func (e *nonexistentRevisionFailure) Error() string { method traceString (line 565) | func (e *nonexistentRevisionFailure) traceString() string { FILE: gps/solve_test.go function overrideMkBridge (line 21) | func overrideMkBridge(s *solver, sm SourceManager, down bool) sourceBrid... function fixSolve (line 25) | func fixSolve(params SolveParameters, sm SourceManager, t *testing.T) (S... function TestBasicSolves (line 45) | func TestBasicSolves(t *testing.T) { function solveBasicsAndCheck (line 62) | func solveBasicsAndCheck(fix basicFixture, t *testing.T) (res Solution, ... function TestBimodalSolves (line 91) | func TestBimodalSolves(t *testing.T) { function solveBimodalAndCheck (line 108) | func solveBimodalAndCheck(fix bimodalFixture, t *testing.T) (res Solutio... function fixtureSolveSimpleChecks (line 133) | func fixtureSolveSimpleChecks(fix specfix, soln Solution, err error, t *... function TestRootLockNoVersionPairMatching (line 217) | func TestRootLockNoVersionPairMatching(t *testing.T) { FILE: gps/solver.go type SolveParameters (line 32) | type SolveParameters struct method toRootdata (line 168) | func (params SolveParameters) toRootdata() (rootdata, error) { type solver (line 112) | type solver struct method Name (line 369) | func (s *solver) Name() string { method Version (line 373) | func (s *solver) Version() int { method Solve (line 424) | func (s *solver) Solve(ctx context.Context) (Solution, error) { method solve (line 474) | func (s *solver) solve(ctx context.Context) (map[atom]map[string]struc... method selectRoot (line 610) | func (s *solver) selectRoot() error { method getImportsAndConstraintsOf (line 645) | func (s *solver) getImportsAndConstraintsOf(a atomWithPackages) ([]str... method intersectConstraintsWithImports (line 728) | func (s *solver) intersectConstraintsWithImports(deps []workingConstra... method createVersionQueue (line 792) | func (s *solver) createVersionQueue(bmi bimodalIdentifier) (*versionQu... method findValidVersion (line 911) | func (s *solver) findValidVersion(q *versionQueue, pl []string) error { method getLockVersionIfValid (line 964) | func (s *solver) getLockVersionIfValid(id ProjectIdentifier) (Version,... method backtrack (line 1008) | func (s *solver) backtrack(ctx context.Context) (bool, error) { method nextUnselected (line 1112) | func (s *solver) nextUnselected() (bimodalIdentifier, bool) { method unselectedComparator (line 1120) | func (s *solver) unselectedComparator(i, j int) bool { method fail (line 1190) | func (s *solver) fail(id ProjectIdentifier) { method selectAtom (line 1212) | func (s *solver) selectAtom(a atomWithPackages, pkgonly bool) error { method unselectLast (line 1311) | func (s *solver) unselectLast() (atomWithPackages, bool, error) { function Prepare (line 273) | func Prepare(params SolveParameters, sm SourceManager) (Solver, error) { type Solver (line 325) | type Solver interface type DeductionErrs (line 378) | type DeductionErrs method Error (line 380) | func (e DeductionErrs) Error() string { function ValidateParams (line 385) | func ValidateParams(params SolveParameters, sm SourceManager) error { function pa2lp (line 1346) | func pa2lp(pa atom, pkgs map[string]struct{}) LockedProject { function contextCanceledOrSMReleased (line 1379) | func contextCanceledOrSMReleased(err error) bool { FILE: gps/solver_inputs_test.go function TestBadSolveOpts (line 21) | func TestBadSolveOpts(t *testing.T) { function TestValidateParams (line 177) | func TestValidateParams(t *testing.T) { FILE: gps/source.go type sourceState (line 22) | type sourceState method String (line 35) | func (state sourceState) String() string { constant sourceExistsUpstream (line 26) | sourceExistsUpstream sourceState = 1 << iota constant sourceExistsLocally (line 28) | sourceExistsLocally constant sourceHasLatestVersionList (line 30) | sourceHasLatestVersionList constant sourceHasLatestLocally (line 32) | sourceHasLatestLocally type srcReturn (line 56) | type srcReturn struct type sourceCoordinator (line 61) | type sourceCoordinator struct method close (line 92) | func (sc *sourceCoordinator) close() { method getSourceGatewayFor (line 98) | func (sc *sourceCoordinator) getSourceGatewayFor(ctx context.Context, ... function newSourceCoordinator (line 76) | func newSourceCoordinator(superv *supervisor, deducer deducer, cachedir ... type sourceGateway (line 264) | type sourceGateway struct method syncLocal (line 302) | func (sg *sourceGateway) syncLocal(ctx context.Context) error { method existsInCache (line 309) | func (sg *sourceGateway) existsInCache(ctx context.Context) error { method existsUpstream (line 316) | func (sg *sourceGateway) existsUpstream(ctx context.Context) error { method exportVersionTo (line 323) | func (sg *sourceGateway) exportVersionTo(ctx context.Context, v Versio... method exportPrunedVersionTo (line 358) | func (sg *sourceGateway) exportPrunedVersionTo(ctx context.Context, lp... method getManifestAndLock (line 387) | func (sg *sourceGateway) getManifestAndLock(ctx context.Context, pr Pr... method listPackages (line 440) | func (sg *sourceGateway) listPackages(ctx context.Context, pr ProjectR... method convertToRevision (line 494) | func (sg *sourceGateway) convertToRevision(ctx context.Context, v Vers... method listVersions (line 534) | func (sg *sourceGateway) listVersions(ctx context.Context) ([]PairedVe... method revisionPresentIn (line 552) | func (sg *sourceGateway) revisionPresentIn(ctx context.Context, r Revi... method disambiguateRevision (line 572) | func (sg *sourceGateway) disambiguateRevision(ctx context.Context, r R... method sourceExistsUpstream (line 586) | func (sg *sourceGateway) sourceExistsUpstream(ctx context.Context) (so... method initLocal (line 600) | func (sg *sourceGateway) initLocal(ctx context.Context) (sourceState, ... method loadLatestVersionList (line 612) | func (sg *sourceGateway) loadLatestVersionList(ctx context.Context) (s... method require (line 636) | func (sg *sourceGateway) require(ctx context.Context, wanted sourceSta... function newSourceGateway (line 275) | func newSourceGateway(ctx context.Context, src source, superv *superviso... type source (line 682) | type source interface type sourceFastPrune (line 705) | type sourceFastPrune interface FILE: gps/source_cache.go type sourceCache (line 19) | type sourceCache interface type singleSourceCache (line 29) | type singleSourceCache interface type memoryCache (line 77) | type memoryCache struct method newSingleSourceCache (line 79) | func (memoryCache) newSingleSourceCache(ProjectIdentifier) singleSourc... method close (line 83) | func (memoryCache) close() error { return nil } type singleSourceCacheMemory (line 85) | type singleSourceCacheMemory struct method setManifestAndLock (line 111) | func (c *singleSourceCacheMemory) setManifestAndLock(r Revision, pai P... method getManifestAndLock (line 128) | func (c *singleSourceCacheMemory) getManifestAndLock(r Revision, pai P... method setPackageTree (line 144) | func (c *singleSourceCacheMemory) setPackageTree(r Revision, ptree pkg... method getPackageTree (line 162) | func (c *singleSourceCacheMemory) getPackageTree(r Revision, pr Projec... method setVersionMap (line 186) | func (c *singleSourceCacheMemory) setVersionMap(versionList []PairedVe... method markRevisionExists (line 205) | func (c *singleSourceCacheMemory) markRevisionExists(r Revision) { method getVersionsFor (line 213) | func (c *singleSourceCacheMemory) getVersionsFor(r Revision) ([]Unpair... method getAllVersions (line 220) | func (c *singleSourceCacheMemory) getAllVersions() ([]PairedVersion, b... method getRevisionFor (line 233) | func (c *singleSourceCacheMemory) getRevisionFor(uv UnpairedVersion) (... method toRevision (line 240) | func (c *singleSourceCacheMemory) toRevision(v Version) (Revision, boo... method toUnpaired (line 256) | func (c *singleSourceCacheMemory) toUnpaired(v Version) (UnpairedVersi... function newMemoryCache (line 97) | func newMemoryCache() singleSourceCache { type projectInfo (line 106) | type projectInfo struct function locksAreEq (line 277) | func locksAreEq(l1, l2 Lock) bool { FILE: gps/source_cache_bolt.go constant boltCacheFilename (line 26) | boltCacheFilename = "bolt-v1.db" type boltCache (line 29) | type boltCache struct method newSingleSourceCache (line 60) | func (c *boltCache) newSingleSourceCache(pi ProjectIdentifier) singleS... method close (line 68) | func (c *boltCache) close() error { function newBoltCache (line 36) | func newBoltCache(cd string, epoch int64, logger *log.Logger) (*boltCach... type singleSourceCacheBolt (line 107) | type singleSourceCacheBolt struct method setManifestAndLock (line 112) | func (s *singleSourceCacheBolt) setManifestAndLock(rev Revision, ai Pr... method getManifestAndLock (line 155) | func (s *singleSourceCacheBolt) getManifestAndLock(rev Revision, ai Pr... method setPackageTree (line 194) | func (s *singleSourceCacheBolt) setPackageTree(rev Revision, ptree pkg... method getPackageTree (line 229) | func (s *singleSourceCacheBolt) getPackageTree(rev Revision, pr Projec... method markRevisionExists (line 268) | func (s *singleSourceCacheBolt) markRevisionExists(rev Revision) { method setVersionMap (line 277) | func (s *singleSourceCacheBolt) setVersionMap(pvs []PairedVersion) { method getVersionsFor (line 341) | func (s *singleSourceCacheBolt) getVersionsFor(rev Revision) (uvs []Un... method getAllVersions (line 370) | func (s *singleSourceCacheBolt) getAllVersions() (pvs []PairedVersion,... method getRevisionFor (line 398) | func (s *singleSourceCacheBolt) getRevisionFor(uv UnpairedVersion) (re... method toRevision (line 425) | func (s *singleSourceCacheBolt) toRevision(v Version) (rev Revision, o... method toUnpaired (line 439) | func (s *singleSourceCacheBolt) toUnpaired(v Version) (uv UnpairedVers... method viewSourceBucket (line 489) | func (s *singleSourceCacheBolt) viewSourceBucket(view func(b *bolt.Buc... method updateSourceBucket (line 500) | func (s *singleSourceCacheBolt) updateSourceBucket(update func(b *bolt... method viewRevBucket (line 511) | func (s *singleSourceCacheBolt) viewRevBucket(rev Revision, view func(... method updateRevBucket (line 522) | func (s *singleSourceCacheBolt) updateRevBucket(rev Revision, update f... function cacheRevisionName (line 481) | func cacheRevisionName(rev Revision) []byte { FILE: gps/source_cache_bolt_encode.go function propertiesFromCache (line 40) | func propertiesFromCache(m *pb.ProjectProperties) (ProjectRoot, ProjectP... type projectPropertiesMsgs (line 59) | type projectPropertiesMsgs struct method copyFrom (line 65) | func (ms *projectPropertiesMsgs) copyFrom(ip ProjectRoot, pp ProjectPr... function cachePutManifest (line 78) | func cachePutManifest(b *bolt.Bucket, m Manifest) error { function cacheGetManifest (line 170) | func cacheGetManifest(b *bolt.Bucket) (RootManifest, error) { method copyTo (line 244) | func (lp lockedProject) copyTo(msg *pb.LockedProject, c *pb.Constraint) { function copyLockedProjectTo (line 260) | func copyLockedProjectTo(lp LockedProject, msg *pb.LockedProject, c *pb.... function lockedProjectFromCache (line 288) | func lockedProjectFromCache(m *pb.LockedProject) (LockedProject, error) { function cachePutLock (line 309) | func cachePutLock(b *bolt.Bucket, l Lock) error { function cacheGetLock (line 342) | func cacheGetLock(b *bolt.Bucket) (*safeLock, error) { function cachePutPackageOrErr (line 370) | func cachePutPackageOrErr(b *bolt.Bucket, poe pkgtree.PackageOrErr) error { function cacheGetPackageOrErr (line 422) | func cacheGetPackageOrErr(b *bolt.Bucket) (pkgtree.PackageOrErr, error) { function cacheTimestampedKey (line 454) | func cacheTimestampedKey(pre byte, t time.Time) []byte { type boltTxOrBucket (line 462) | type boltTxOrBucket interface function cachePrefixDelete (line 469) | func cachePrefixDelete(tob boltTxOrBucket, pre byte) error { function cacheFindLatestValid (line 481) | func cacheFindLatestValid(tob boltTxOrBucket, pre byte, epoch int64) *bo... FILE: gps/source_cache_bolt_encode_test.go function TestPropertiesFromCache (line 15) | func TestPropertiesFromCache(t *testing.T) { function TestCacheTimestampedKey (line 61) | func TestCacheTimestampedKey(t *testing.T) { FILE: gps/source_cache_bolt_test.go function TestBoltCacheTimeout (line 18) | func TestBoltCacheTimeout(t *testing.T) { FILE: gps/source_cache_multi.go type multiCache (line 12) | type multiCache struct method processAsync (line 33) | func (c *multiCache) processAsync() { method close (line 41) | func (c *multiCache) close() error { method newSingleSourceCache (line 49) | func (c *multiCache) newSingleSourceCache(id ProjectIdentifier) single... function newMultiCache (line 22) | func newMultiCache(mem, disk sourceCache) *multiCache { type singleSourceMultiCache (line 65) | type singleSourceMultiCache struct method setManifestAndLock (line 71) | func (c *singleSourceMultiCache) setManifestAndLock(r Revision, ai Pro... method getManifestAndLock (line 76) | func (c *singleSourceMultiCache) getManifestAndLock(r Revision, ai Pro... method setPackageTree (line 91) | func (c *singleSourceMultiCache) setPackageTree(r Revision, ptree pkgt... method getPackageTree (line 96) | func (c *singleSourceMultiCache) getPackageTree(r Revision, pr Project... method markRevisionExists (line 111) | func (c *singleSourceMultiCache) markRevisionExists(r Revision) { method setVersionMap (line 116) | func (c *singleSourceMultiCache) setVersionMap(pvs []PairedVersion) { method getVersionsFor (line 121) | func (c *singleSourceMultiCache) getVersionsFor(rev Revision) ([]Unpai... method getAllVersions (line 130) | func (c *singleSourceMultiCache) getAllVersions() ([]PairedVersion, bo... method getRevisionFor (line 145) | func (c *singleSourceMultiCache) getRevisionFor(uv UnpairedVersion) (R... method toRevision (line 154) | func (c *singleSourceMultiCache) toRevision(v Version) (Revision, bool) { method toUnpaired (line 163) | func (c *singleSourceMultiCache) toUnpaired(v Version) (UnpairedVersio... FILE: gps/source_cache_test.go function Test_singleSourceCache (line 21) | func Test_singleSourceCache(t *testing.T) { type singleSourceCacheTest (line 71) | type singleSourceCacheTest struct method run (line 78) | func (test singleSourceCacheTest) run(t *testing.T) { function compareManifests (line 416) | func compareManifests(t *testing.T, want, got Manifest) { function comparePackageTree (line 462) | func comparePackageTree(t *testing.T, want, got pkgtree.PackageTree) { function projectConstraintsEqual (line 482) | func projectConstraintsEqual(want, got ProjectConstraints) bool { function mapStringBoolEqual (line 506) | func mapStringBoolEqual(exp, got map[string]bool) bool { function safeError (line 520) | func safeError(err error) string { function packageOrErrEqual (line 529) | func packageOrErrEqual(a, b pkgtree.PackageOrErr) bool { type discardCache (line 569) | type discardCache struct method newSingleSourceCache (line 571) | func (discardCache) newSingleSourceCache(ProjectIdentifier) singleSour... method close (line 575) | func (discardCache) close() error { return nil } type singleSourceDiscardCache (line 580) | type singleSourceDiscardCache struct method setManifestAndLock (line 582) | func (singleSourceDiscardCache) setManifestAndLock(Revision, ProjectAn... method getManifestAndLock (line 584) | func (singleSourceDiscardCache) getManifestAndLock(Revision, ProjectAn... method setPackageTree (line 588) | func (singleSourceDiscardCache) setPackageTree(Revision, pkgtree.Packa... method getPackageTree (line 590) | func (singleSourceDiscardCache) getPackageTree(Revision, ProjectRoot) ... method markRevisionExists (line 594) | func (singleSourceDiscardCache) markRevisionExists(r Revision) {} method setVersionMap (line 596) | func (singleSourceDiscardCache) setVersionMap(versionList []PairedVers... method getVersionsFor (line 598) | func (singleSourceDiscardCache) getVersionsFor(Revision) ([]UnpairedVe... method getAllVersions (line 602) | func (singleSourceDiscardCache) getAllVersions() ([]PairedVersion, boo... method getRevisionFor (line 606) | func (singleSourceDiscardCache) getRevisionFor(UnpairedVersion) (Revis... method toRevision (line 610) | func (singleSourceDiscardCache) toRevision(v Version) (Revision, bool) { method toUnpaired (line 614) | func (singleSourceDiscardCache) toUnpaired(v Version) (UnpairedVersion... FILE: gps/source_errors.go function unwrapVcsErr (line 15) | func unwrapVcsErr(err error) error { FILE: gps/source_errors_test.go function TestUnwrapVcsErrNonNil (line 13) | func TestUnwrapVcsErrNonNil(t *testing.T) { FILE: gps/source_manager.go type locker (line 37) | type locker interface type falseLocker (line 49) | type falseLocker struct method GetOwner (line 53) | func (fl falseLocker) GetOwner() (*os.Process, error) { method TryLock (line 58) | func (fl falseLocker) TryLock() error { method Unlock (line 63) | func (fl falseLocker) Unlock() error { type SourceManager (line 74) | type SourceManager interface type ProjectAnalyzer (line 137) | type ProjectAnalyzer interface type ProjectAnalyzerInfo (line 153) | type ProjectAnalyzerInfo struct method String (line 159) | func (p ProjectAnalyzerInfo) String() string { type SourceMgr (line 167) | type SourceMgr struct method Cachedir (line 322) | func (sm *SourceMgr) Cachedir() string { method UseDefaultSignalHandling (line 328) | func (sm *SourceMgr) UseDefaultSignalHandling() { method HandleSignals (line 346) | func (sm *SourceMgr) HandleSignals(sigch chan os.Signal) { method StopSignalHandling (line 386) | func (sm *SourceMgr) StopSignalHandling() { method Release (line 411) | func (sm *SourceMgr) Release() { method GetManifestAndLock (line 438) | func (sm *SourceMgr) GetManifestAndLock(id ProjectIdentifier, v Versio... method ListPackages (line 453) | func (sm *SourceMgr) ListPackages(id ProjectIdentifier, v Version) (pk... method ListVersions (line 478) | func (sm *SourceMgr) ListVersions(id ProjectIdentifier) ([]PairedVersi... method RevisionPresentIn (line 494) | func (sm *SourceMgr) RevisionPresentIn(id ProjectIdentifier, r Revisio... method SourceExists (line 510) | func (sm *SourceMgr) SourceExists(id ProjectIdentifier) (bool, error) { method SyncSourceFor (line 534) | func (sm *SourceMgr) SyncSourceFor(id ProjectIdentifier) error { method ExportProject (line 549) | func (sm *SourceMgr) ExportProject(ctx context.Context, id ProjectIden... method ExportPrunedProject (line 564) | func (sm *SourceMgr) ExportPrunedProject(ctx context.Context, lp Locke... method DeduceProjectRoot (line 584) | func (sm *SourceMgr) DeduceProjectRoot(ip string) (ProjectRoot, error) { method InferConstraint (line 602) | func (sm *SourceMgr) InferConstraint(s string, pi ProjectIdentifier) (... method SourceURLsForPath (line 649) | func (sm *SourceMgr) SourceURLsForPath(ip string) ([]*url.URL, error) { method disambiguateRevision (line 664) | func (sm *SourceMgr) disambiguateRevision(ctx context.Context, pi Proj... type SourceManagerConfig (line 188) | type SourceManagerConfig struct function NewSourceManager (line 210) | func NewSourceManager(c SourceManagerConfig) (*SourceMgr, error) { type CouldNotCreateLockError (line 399) | type CouldNotCreateLockError struct method Error (line 404) | func (e CouldNotCreateLockError) Error() string { type timeCount (line 672) | type timeCount struct type durCount (line 677) | type durCount struct type supervisor (line 682) | type supervisor struct method do (line 704) | func (sup *supervisor) do(inctx context.Context, name string, typ call... method start (line 722) | func (sup *supervisor) start(ci callInfo) (context.Context, error) { method count (line 743) | func (sup *supervisor) count() int { method done (line 749) | func (sup *supervisor) done(ci callInfo) { method wait (line 781) | func (sup *supervisor) wait() { function newSupervisor (line 690) | func newSupervisor(ctx context.Context) *supervisor { type callType (line 789) | type callType method String (line 803) | func (ct callType) String() string { constant ctHTTPMetadata (line 792) | ctHTTPMetadata callType = iota constant ctListVersions (line 793) | ctListVersions constant ctGetManifestAndLock (line 794) | ctGetManifestAndLock constant ctListPackages (line 795) | ctListPackages constant ctSourcePing (line 796) | ctSourcePing constant ctSourceInit (line 797) | ctSourceInit constant ctSourceFetch (line 798) | ctSourceFetch constant ctExportTree (line 799) | ctExportTree constant ctValidateLocal (line 800) | ctValidateLocal type callInfo (line 827) | type callInfo struct FILE: gps/source_manager_test.go function TestSourceManager_InferConstraint (line 15) | func TestSourceManager_InferConstraint(t *testing.T) { FILE: gps/source_test.go function testSourceGateway (line 21) | func testSourceGateway(t *testing.T) { FILE: gps/strings.go function toFold (line 20) | func toFold(s string) string { FILE: gps/trace.go constant successChar (line 16) | successChar = "✓" constant successCharSp (line 17) | successCharSp = successChar + " " constant failChar (line 18) | failChar = "✗" constant failCharSp (line 19) | failCharSp = failChar + " " constant backChar (line 20) | backChar = "←" constant innerIndent (line 21) | innerIndent = " " method traceCheckPkgs (line 24) | func (s *solver) traceCheckPkgs(bmi bimodalIdentifier) { method traceCheckQueue (line 33) | func (s *solver) traceCheckQueue(q *versionQueue, bmi bimodalIdentifier,... method traceStartBacktrack (line 61) | func (s *solver) traceStartBacktrack(bmi bimodalIdentifier, err error, p... method traceBacktrack (line 79) | func (s *solver) traceBacktrack(bmi bimodalIdentifier, pkgonly bool) { method traceFinish (line 96) | func (s *solver) traceFinish(sol solution, err error) { method traceSelectRoot (line 113) | func (s *solver) traceSelectRoot(ptree pkgtree.PackageTree, cdeps []comp... method traceSelect (line 136) | func (s *solver) traceSelect(awp atomWithPackages, pkgonly bool) { method traceInfo (line 152) | func (s *solver) traceInfo(args ...interface{}) { function getprei (line 182) | func getprei(i int) string { function tracePrefix (line 194) | func tracePrefix(msg, sep, fsep string) string { FILE: gps/typed_radix.go type deducerTrie (line 22) | type deducerTrie struct method Delete (line 37) | func (t *deducerTrie) Delete(s string) (pathDeducer, bool) { method Insert (line 47) | func (t *deducerTrie) Insert(s string, d pathDeducer) (pathDeducer, bo... method LongestPrefix (line 58) | func (t *deducerTrie) LongestPrefix(s string) (string, pathDeducer, bo... function newDeducerTrie (line 27) | func newDeducerTrie() *deducerTrie { function isPathPrefixOrEqual (line 82) | func isPathPrefixOrEqual(pre, path string) bool { FILE: gps/typed_radix_test.go function TestPathPrefixOrEqual (line 10) | func TestPathPrefixOrEqual(t *testing.T) { FILE: gps/vcs_repo.go type ctxRepo (line 21) | type ctxRepo interface type ensureCleaner (line 30) | type ensureCleaner interface type gitRepo (line 39) | type gitRepo struct method get (line 57) | func (r *gitRepo) get(ctx context.Context) error { method fetch (line 78) | func (r *gitRepo) fetch(ctx context.Context) error { method updateVersion (line 97) | func (r *gitRepo) updateVersion(ctx context.Context, v string) error { method defendAgainstSubmodules (line 110) | func (r *gitRepo) defendAgainstSubmodules(ctx context.Context) error { method ensureClean (line 161) | func (r *gitRepo) ensureClean(ctx context.Context) error { function newVcsRemoteErrorOr (line 43) | func newVcsRemoteErrorOr(err error, args []string, out, msg string) error { function newVcsLocalErrorOr (line 50) | func newVcsLocalErrorOr(err error, args []string, out, msg string) error { type bzrRepo (line 226) | type bzrRepo struct method get (line 230) | func (r *bzrRepo) get(ctx context.Context) error { method fetch (line 248) | func (r *bzrRepo) fetch(ctx context.Context) error { method updateVersion (line 258) | func (r *bzrRepo) updateVersion(ctx context.Context, version string) e... type hgRepo (line 268) | type hgRepo struct method get (line 272) | func (r *hgRepo) get(ctx context.Context) error { method fetch (line 282) | func (r *hgRepo) fetch(ctx context.Context) error { method updateVersion (line 292) | func (r *hgRepo) updateVersion(ctx context.Context, version string) er... type svnRepo (line 303) | type svnRepo struct method get (line 307) | func (r *svnRepo) get(ctx context.Context) error { method fetch (line 324) | func (r *svnRepo) fetch(ctx context.Context) error { method updateVersion (line 335) | func (r *svnRepo) updateVersion(ctx context.Context, version string) e... method CommitInfo (line 346) | func (r *svnRepo) CommitInfo(id string) (*vcs.CommitInfo, error) { FILE: gps/vcs_repo_test.go constant gitRemoteTestRepo (line 21) | gitRemoteTestRepo = "https://github.com/Masterminds/VCSTestRepo" function TestErrs (line 23) | func TestErrs(t *testing.T) { function testSvnRepo (line 51) | func testSvnRepo(t *testing.T) { function testHgRepo (line 144) | func testHgRepo(t *testing.T) { function testGitRepo (line 204) | func testGitRepo(t *testing.T) { function testBzrRepo (line 281) | func testBzrRepo(t *testing.T) { FILE: gps/vcs_source.go type baseVCSSource (line 22) | type baseVCSSource struct method sourceType (line 26) | func (bs *baseVCSSource) sourceType() string { method existsLocally (line 30) | func (bs *baseVCSSource) existsLocally(ctx context.Context) bool { method existsUpstream (line 34) | func (bs *baseVCSSource) existsUpstream(ctx context.Context) bool { method existsCallsListVersions (line 38) | func (*baseVCSSource) existsCallsListVersions() bool { method listVersionsRequiresLocal (line 42) | func (*baseVCSSource) listVersionsRequiresLocal() bool { method upstreamURL (line 46) | func (bs *baseVCSSource) upstreamURL() string { method disambiguateRevision (line 50) | func (bs *baseVCSSource) disambiguateRevision(ctx context.Context, r R... method getManifestAndLock (line 58) | func (bs *baseVCSSource) getManifestAndLock(ctx context.Context, pr Pr... method revisionPresentIn (line 76) | func (bs *baseVCSSource) revisionPresentIn(r Revision) (bool, error) { method initLocal (line 82) | func (bs *baseVCSSource) initLocal(ctx context.Context) error { method updateLocal (line 93) | func (bs *baseVCSSource) updateLocal(ctx context.Context) error { method maybeClean (line 114) | func (bs *baseVCSSource) maybeClean(ctx context.Context) error { method listPackages (line 126) | func (bs *baseVCSSource) listPackages(ctx context.Context, pr ProjectR... method exportRevisionTo (line 138) | func (bs *baseVCSSource) exportRevisionTo(ctx context.Context, r Revis... type gitSource (line 158) | type gitSource struct method exportRevisionTo (line 162) | func (s *gitSource) exportRevisionTo(ctx context.Context, rev Revision... method isValidHash (line 209) | func (s *gitSource) isValidHash(hash []byte) bool { method existsCallsListVersions (line 213) | func (*gitSource) existsCallsListVersions() bool { method listVersions (line 217) | func (s *gitSource) listVersions(ctx context.Context) (vlist []PairedV... type gopkginSource (line 356) | type gopkginSource struct method upstreamURL (line 365) | func (s *gopkginSource) upstreamURL() string { method listVersions (line 369) | func (s *gopkginSource) listVersions(ctx context.Context) ([]PairedVer... type bzrSource (line 453) | type bzrSource struct method exportRevisionTo (line 457) | func (s *bzrSource) exportRevisionTo(ctx context.Context, rev Revision... method listVersionsRequiresLocal (line 465) | func (s *bzrSource) listVersionsRequiresLocal() bool { method listVersions (line 469) | func (s *bzrSource) listVersions(ctx context.Context) ([]PairedVersion... method disambiguateRevision (line 507) | func (s *bzrSource) disambiguateRevision(ctx context.Context, r Revisi... type hgSource (line 524) | type hgSource struct method exportRevisionTo (line 528) | func (s *hgSource) exportRevisionTo(ctx context.Context, rev Revision,... method listVersionsRequiresLocal (line 538) | func (s *hgSource) listVersionsRequiresLocal() bool { method hgCmd (line 542) | func (s *hgSource) hgCmd(ctx context.Context, args ...string) cmd { method listVersions (line 552) | func (s *hgSource) listVersions(ctx context.Context) ([]PairedVersion,... FILE: gps/vcs_source_test.go function TestSlowVcs (line 25) | func TestSlowVcs(t *testing.T) { function testGitSourceInteractions (line 39) | func testGitSourceInteractions(t *testing.T) { function testGopkginSourceInteractions (line 133) | func testGopkginSourceInteractions(t *testing.T) { function testBzrSourceInteractions (line 296) | func testBzrSourceInteractions(t *testing.T) { function testHgSourceInteractions (line 406) | func testHgSourceInteractions(t *testing.T) { function TestGitSourceListVersionsNoHEAD (line 537) | func TestGitSourceListVersionsNoHEAD(t *testing.T) { function TestGitSourceListVersionsNoDupes (line 595) | func TestGitSourceListVersionsNoDupes(t *testing.T) { function TestGitSourceAdaptiveCleanup (line 657) | func TestGitSourceAdaptiveCleanup(t *testing.T) { function Test_bzrSource_exportRevisionTo_removeVcsFiles (line 751) | func Test_bzrSource_exportRevisionTo_removeVcsFiles(t *testing.T) { function Test_hgSource_exportRevisionTo_removeVcsFiles (line 808) | func Test_hgSource_exportRevisionTo_removeVcsFiles(t *testing.T) { function requiresBins (line 862) | func requiresBins(t *testing.T, bins ...string) { FILE: gps/vcs_version.go function VCSVersion (line 15) | func VCSVersion(path string) (Version, error) { function contains (line 60) | func contains(a []string, b string) bool { FILE: gps/vcs_version_test.go function TestVCSVersion (line 14) | func TestVCSVersion(t *testing.T) { FILE: gps/verify/digest.go constant HashVersion (line 28) | HashVersion = 1 constant osPathSeparator (line 30) | osPathSeparator = string(filepath.Separator) type lineEndingReader (line 44) | type lineEndingReader struct method Read (line 60) | func (f *lineEndingReader) Read(buf []byte) (int, error) { function newLineEndingReader (line 51) | func newLineEndingReader(src io.Reader) *lineEndingReader { function writeBytesWithNull (line 131) | func writeBytesWithNull(h hash.Hash, data []byte) { type dirWalkClosure (line 139) | type dirWalkClosure struct function DigestFromDirectory (line 160) | func DigestFromDirectory(osDirname string) (VersionedDigest, error) { type VendorStatus (line 270) | type VendorStatus method String (line 300) | func (ls VendorStatus) String() string { constant NotInLock (line 275) | NotInLock VendorStatus = iota constant NotInTree (line 279) | NotInTree constant NoMismatch (line 283) | NoMismatch constant EmptyDigestInLock (line 288) | EmptyDigestInLock constant DigestMismatchInLock (line 292) | DigestMismatchInLock constant HashVersionMismatch (line 297) | HashVersionMismatch type fsnode (line 323) | type fsnode struct type VersionedDigest (line 331) | type VersionedDigest struct method String (line 336) | func (vd VersionedDigest) String() string { method IsEmpty (line 341) | func (vd VersionedDigest) IsEmpty() bool { function ParseVersionedDigest (line 348) | func ParseVersionedDigest(input string) (VersionedDigest, error) { function CheckDepTree (line 376) | func CheckDepTree(osDirname string, wantDigests map[string]VersionedDige... function sortedChildrenFromDirname (line 537) | func sortedChildrenFromDirname(osDirname string) ([]string, error) { FILE: gps/verify/digest_test.go type crossBuffer (line 16) | type crossBuffer struct method Read (line 21) | func (cb *crossBuffer) Read(buf []byte) (int, error) { function streamThruLineEndingReader (line 29) | func streamThruLineEndingReader(t *testing.T, iterations []string) []byte { function TestLineEndingReader (line 41) | func TestLineEndingReader(t *testing.T) { function getTestdataVerifyRoot (line 95) | func getTestdataVerifyRoot(t *testing.T) string { function TestDigestFromDirectoryBailsUnlessDirectory (line 103) | func TestDigestFromDirectoryBailsUnlessDirectory(t *testing.T) { function TestDigestFromDirectory (line 112) | func TestDigestFromDirectory(t *testing.T) { function TestVerifyDepTree (line 144) | func TestVerifyDepTree(t *testing.T) { function TestParseVersionedDigest (line 267) | func TestParseVersionedDigest(t *testing.T) { function BenchmarkDigestFromDirectory (line 314) | func BenchmarkDigestFromDirectory(b *testing.B) { function BenchmarkVerifyDepTree (line 327) | func BenchmarkVerifyDepTree(b *testing.B) { FILE: gps/verify/helper_types_test.go function mkPI (line 17) | func mkPI(root string) gps.ProjectIdentifier { type safeLock (line 23) | type safeLock struct method InputImports (line 28) | func (sl safeLock) InputImports() []string { method Projects (line 32) | func (sl safeLock) Projects() []gps.LockedProject { method dup (line 36) | func (sl safeLock) dup() safeLock { method dup (line 51) | func (vp VerifiableProject) dup() VerifiableProject { type simpleRootManifest (line 69) | type simpleRootManifest struct method DependencyConstraints (line 75) | func (m simpleRootManifest) DependencyConstraints() gps.ProjectConstra... method Overrides (line 78) | func (m simpleRootManifest) Overrides() gps.ProjectConstraints { method IgnoredPackages (line 81) | func (m simpleRootManifest) IgnoredPackages() *pkgtree.IgnoredRuleset { method RequiredPackages (line 84) | func (m simpleRootManifest) RequiredPackages() map[string]bool { method dup (line 88) | func (m simpleRootManifest) dup() simpleRootManifest { function newVerifiableProject (line 111) | func newVerifiableProject(id gps.ProjectIdentifier, v gps.Version, pkgs ... FILE: gps/verify/lock.go type VerifiableProject (line 14) | type VerifiableProject struct FILE: gps/verify/lockdiff.go type DeltaDimension (line 17) | type DeltaDimension constant InputImportsChanged (line 22) | InputImportsChanged DeltaDimension = 1 << iota constant ProjectAdded (line 23) | ProjectAdded constant ProjectRemoved (line 24) | ProjectRemoved constant SourceChanged (line 25) | SourceChanged constant VersionChanged (line 26) | VersionChanged constant RevisionChanged (line 27) | RevisionChanged constant PackagesChanged (line 28) | PackagesChanged constant PruneOptsChanged (line 29) | PruneOptsChanged constant HashVersionChanged (line 30) | HashVersionChanged constant HashChanged (line 31) | HashChanged constant AnyChanged (line 32) | AnyChanged = (1 << iota) - 1 type LockDelta (line 36) | type LockDelta struct method Changed (line 231) | func (ld LockDelta) Changed(dims DeltaDimension) bool { method Changes (line 251) | func (ld LockDelta) Changes() DeltaDimension { type LockedProjectDelta (line 46) | type LockedProjectDelta struct method Changed (line 270) | func (ld LockedProjectDelta) Changed(dims DeltaDimension) bool { method Changes (line 285) | func (ld LockedProjectDelta) Changes() DeltaDimension { method WasRemoved (line 300) | func (ld LockedProjectDelta) WasRemoved() bool { method WasAdded (line 306) | func (ld LockedProjectDelta) WasAdded() bool { type LockedProjectPropertiesDelta (line 55) | type LockedProjectPropertiesDelta struct method Changed (line 316) | func (ld LockedProjectPropertiesDelta) Changed(dims DeltaDimension) bo... method Changes (line 344) | func (ld LockedProjectPropertiesDelta) Changes() DeltaDimension { method SourceChanged (line 373) | func (ld LockedProjectPropertiesDelta) SourceChanged() bool { method VersionChanged (line 382) | func (ld LockedProjectPropertiesDelta) VersionChanged() bool { method RevisionChanged (line 396) | func (ld LockedProjectPropertiesDelta) RevisionChanged() bool { method PackagesChanged (line 402) | func (ld LockedProjectPropertiesDelta) PackagesChanged() bool { method PruneOptsChanged (line 408) | func (ld LockedProjectPropertiesDelta) PruneOptsChanged() bool { method HashVersionChanged (line 414) | func (ld LockedProjectPropertiesDelta) HashVersionChanged() bool { method HashVersionWasZero (line 420) | func (ld LockedProjectPropertiesDelta) HashVersionWasZero() bool { function DiffLocks (line 67) | func DiffLocks(l1, l2 gps.Lock) LockDelta { function findAddedAndRemoved (line 143) | func findAddedAndRemoved(l1, l2 []string) (add, remove []string) { function DiffLockedProjectProperties (line 176) | func DiffLockedProjectProperties(lp1, lp2 gps.LockedProject) LockedProje... function sortLockedProjects (line 425) | func sortLockedProjects(lps []gps.LockedProject) []gps.LockedProject { FILE: gps/verify/lockdiff_test.go function contains (line 16) | func contains(haystack []string, needle string) bool { method String (line 25) | func (dd DeltaDimension) String() string { function TestLockDelta (line 59) | func TestLockDelta(t *testing.T) { function TestLockedProjectPropertiesDelta (line 161) | func TestLockedProjectPropertiesDelta(t *testing.T) { type lockTransformer (line 338) | type lockTransformer method compose (line 340) | func (lt lockTransformer) compose(lt2 lockTransformer) lockTransformer { method addDumbProject (line 349) | func (lt lockTransformer) addDumbProject(root string) lockTransformer { method rmProject (line 362) | func (lt lockTransformer) rmProject(pr string) lockTransformer { method addII (line 374) | func (lt lockTransformer) addII(path string) lockTransformer { method rmII (line 386) | func (lt lockTransformer) rmII(path string) lockTransformer { type lockedProjectTransformer (line 398) | type lockedProjectTransformer method compose (line 400) | func (lpt lockedProjectTransformer) compose(lpt2 lockedProjectTransfor... method addPkg (line 409) | func (lpt lockedProjectTransformer) addPkg(path string) lockedProjectT... method rmPkg (line 426) | func (lpt lockedProjectTransformer) rmPkg(path string) lockedProjectTr... method setSource (line 444) | func (lpt lockedProjectTransformer) setSource(source string) lockedPro... method setVersion (line 457) | func (lpt lockedProjectTransformer) setVersion(v gps.Version) lockedPr... method setPruneOpts (line 468) | func (lpt lockedProjectTransformer) setPruneOpts(po gps.PruneOptions) ... method setDigest (line 476) | func (lpt lockedProjectTransformer) setDigest(vd VersionedDigest) lock... method toPlainLP (line 484) | func (lpt lockedProjectTransformer) toPlainLP() lockedProjectTransform... FILE: gps/verify/locksat.go type LockSatisfaction (line 20) | type LockSatisfaction struct method Satisfied (line 158) | func (ls LockSatisfaction) Satisfied() bool { type ConstraintMismatch (line 40) | type ConstraintMismatch struct function LockSatisfiesInputs (line 53) | func LockSatisfiesInputs(l gps.Lock, m gps.RootManifest, ptree pkgtree.P... function findEffectualConstraints (line 182) | func findEffectualConstraints(m gps.Manifest, imports map[string]bool) m... FILE: gps/verify/locksat_test.go type lockUnsatisfactionDimension (line 15) | type lockUnsatisfactionDimension method String (line 25) | func (lsd lockUnsatisfactionDimension) String() string { constant noLock (line 18) | noLock lockUnsatisfactionDimension = 1 << iota constant missingImports (line 19) | missingImports constant excessImports (line 20) | excessImports constant unmatchedOverrides (line 21) | unmatchedOverrides constant unmatchedConstraints (line 22) | unmatchedConstraints function TestLockSatisfaction (line 47) | func TestLockSatisfaction(t *testing.T) { method unsatTypes (line 187) | func (ls LockSatisfaction) unsatTypes() lockUnsatisfactionDimension { type rootManifestTransformer (line 209) | type rootManifestTransformer method compose (line 211) | func (rmt rootManifestTransformer) compose(rmt2 rootManifestTransforme... method addReq (line 220) | func (rmt rootManifestTransformer) addReq(path string) rootManifestTra... method rmReq (line 227) | func (rmt rootManifestTransformer) rmReq(path string) rootManifestTran... method setConstraint (line 234) | func (rmt rootManifestTransformer) setConstraint(pr string, c gps.Cons... method setOverride (line 244) | func (rmt rootManifestTransformer) setOverride(pr string, c gps.Constr... method addIgnore (line 254) | func (rmt rootManifestTransformer) addIgnore(path string) rootManifest... FILE: gps/version.go type VersionType (line 17) | type VersionType constant IsRevision (line 21) | IsRevision VersionType = iota constant IsVersion (line 22) | IsVersion constant IsSemver (line 23) | IsSemver constant IsBranch (line 24) | IsBranch type Version (line 39) | type Version interface type PairedVersion (line 48) | type PairedVersion interface type UnpairedVersion (line 66) | type UnpairedVersion interface function NewBranch (line 84) | func NewBranch(body string) UnpairedVersion { function newDefaultBranch (line 97) | func newDefaultBranch(body string) UnpairedVersion { function NewVersion (line 106) | func NewVersion(body string) UnpairedVersion { type Revision (line 116) | type Revision method String (line 119) | func (r Revision) String() string { method ImpliedCaretString (line 126) | func (r Revision) ImpliedCaretString() string { method typedString (line 130) | func (r Revision) typedString() string { method Type (line 135) | func (r Revision) Type() VersionType { method Matches (line 141) | func (r Revision) Matches(v Version) bool { method MatchesAny (line 154) | func (r Revision) MatchesAny(c Constraint) bool { method Intersect (line 172) | func (r Revision) Intersect(c Constraint) Constraint { method identical (line 191) | func (r Revision) identical(c Constraint) bool { method copyTo (line 199) | func (r Revision) copyTo(msg *pb.Constraint) { type branchVersion (line 204) | type branchVersion struct method _pair (line 77) | func (branchVersion) _pair(bool) {} method String (line 209) | func (v branchVersion) String() string { method ImpliedCaretString (line 213) | func (v branchVersion) ImpliedCaretString() string { method typedString (line 217) | func (v branchVersion) typedString() string { method Type (line 221) | func (v branchVersion) Type() VersionType { method Matches (line 225) | func (v branchVersion) Matches(v2 Version) bool { method MatchesAny (line 237) | func (v branchVersion) MatchesAny(c Constraint) bool { method Intersect (line 254) | func (v branchVersion) Intersect(c Constraint) Constraint { method Pair (line 275) | func (v branchVersion) Pair(r Revision) PairedVersion { method identical (line 282) | func (v branchVersion) identical(c Constraint) bool { method copyTo (line 290) | func (v branchVersion) copyTo(msg *pb.Constraint) { type plainVersion (line 299) | type plainVersion method _pair (line 78) | func (plainVersion) _pair(bool) {} method String (line 301) | func (v plainVersion) String() string { method ImpliedCaretString (line 305) | func (v plainVersion) ImpliedCaretString() string { method typedString (line 309) | func (v plainVersion) typedString() string { method Type (line 313) | func (v plainVersion) Type() VersionType { method Matches (line 317) | func (v plainVersion) Matches(v2 Version) bool { method MatchesAny (line 329) | func (v plainVersion) MatchesAny(c Constraint) bool { method Intersect (line 346) | func (v plainVersion) Intersect(c Constraint) Constraint { method Pair (line 367) | func (v plainVersion) Pair(r Revision) PairedVersion { method identical (line 374) | func (v plainVersion) identical(c Constraint) bool { method copyTo (line 382) | func (v plainVersion) copyTo(msg *pb.Constraint) { type semVersion (line 387) | type semVersion struct method _pair (line 79) | func (semVersion) _pair(bool) {} method String (line 391) | func (v semVersion) String() string { method ImpliedCaretString (line 399) | func (v semVersion) ImpliedCaretString() string { method typedString (line 403) | func (v semVersion) typedString() string { method Type (line 407) | func (v semVersion) Type() VersionType { method Matches (line 411) | func (v semVersion) Matches(v2 Version) bool { method MatchesAny (line 423) | func (v semVersion) MatchesAny(c Constraint) bool { method Intersect (line 442) | func (v semVersion) Intersect(c Constraint) Constraint { method Pair (line 465) | func (v semVersion) Pair(r Revision) PairedVersion { method identical (line 472) | func (v semVersion) identical(c Constraint) bool { method copyTo (line 480) | func (v semVersion) copyTo(msg *pb.Constraint) { type versionPair (line 485) | type versionPair struct method _pair (line 80) | func (versionPair) _pair(int) {} method String (line 490) | func (v versionPair) String() string { method ImpliedCaretString (line 494) | func (v versionPair) ImpliedCaretString() string { method typedString (line 498) | func (v versionPair) typedString() string { method Type (line 502) | func (v versionPair) Type() VersionType { method Revision (line 506) | func (v versionPair) Revision() Revision { method Unpair (line 510) | func (v versionPair) Unpair() UnpairedVersion { method Matches (line 514) | func (v versionPair) Matches(v2 Version) bool { method MatchesAny (line 538) | func (v versionPair) MatchesAny(c2 Constraint) bool { method Intersect (line 542) | func (v versionPair) Intersect(c2 Constraint) Constraint { method identical (line 582) | func (v versionPair) identical(c Constraint) bool { method copyTo (line 593) | func (v versionPair) copyTo(*pb.Constraint) { function compareVersionType (line 602) | func compareVersionType(l, r Version) int { function SortForUpgrade (line 671) | func SortForUpgrade(vl []Version) { function SortPairedForUpgrade (line 677) | func SortPairedForUpgrade(vl []PairedVersion) { function SortForDowngrade (line 704) | func SortForDowngrade(vl []Version) { function SortPairedForDowngrade (line 710) | func SortPairedForDowngrade(vl []PairedVersion) { type upgradeVersionSorter (line 714) | type upgradeVersionSorter method Len (line 716) | func (vs upgradeVersionSorter) Len() int { method Swap (line 720) | func (vs upgradeVersionSorter) Swap(i, j int) { method Less (line 724) | func (vs upgradeVersionSorter) Less(i, j int) bool { type pvupgradeVersionSorter (line 729) | type pvupgradeVersionSorter method Len (line 731) | func (vs pvupgradeVersionSorter) Len() int { method Swap (line 735) | func (vs pvupgradeVersionSorter) Swap(i, j int) { method Less (line 738) | func (vs pvupgradeVersionSorter) Less(i, j int) bool { type downgradeVersionSorter (line 743) | type downgradeVersionSorter method Len (line 745) | func (vs downgradeVersionSorter) Len() int { method Swap (line 749) | func (vs downgradeVersionSorter) Swap(i, j int) { method Less (line 753) | func (vs downgradeVersionSorter) Less(i, j int) bool { type pvdowngradeVersionSorter (line 758) | type pvdowngradeVersionSorter method Len (line 760) | func (vs pvdowngradeVersionSorter) Len() int { method Swap (line 764) | func (vs pvdowngradeVersionSorter) Swap(i, j int) { method Less (line 767) | func (vs pvdowngradeVersionSorter) Less(i, j int) bool { function vLess (line 772) | func vLess(l, r Version, down bool) bool { function hidePair (line 821) | func hidePair(pvl []PairedVersion) []Version { function VersionComponentStrings (line 830) | func VersionComponentStrings(v Version) (revision string, branch string,... FILE: gps/version_queue.go type failedVersion (line 12) | type failedVersion struct type versionQueue (line 17) | type versionQueue struct method current (line 61) | func (vq *versionQueue) current() Version { method advance (line 71) | func (vq *versionQueue) advance(fail error) error { method isExhausted (line 144) | func (vq *versionQueue) isExhausted() bool { method String (line 151) | func (vq *versionQueue) String() string { function newVersionQueue (line 28) | func newVersionQueue(id ProjectIdentifier, lockv, prefv Version, b sourc... FILE: gps/version_queue_test.go type fakeBridge (line 14) | type fakeBridge struct method listVersions (line 31) | func (fb *fakeBridge) listVersions(id ProjectIdentifier) ([]Version, e... function init (line 27) | func init() { type fakeFailBridge (line 36) | type fakeFailBridge struct method listVersions (line 42) | func (fb *fakeFailBridge) listVersions(id ProjectIdentifier) ([]Versio... function TestVersionQueueSetup (line 46) | func TestVersionQueueSetup(t *testing.T) { function TestVersionQueueAdvance (line 137) | func TestVersionQueueAdvance(t *testing.T) { FILE: gps/version_test.go function TestVersionSorts (line 9) | func TestVersionSorts(t *testing.T) { FILE: hack/licenseok/main.go constant helpText (line 23) | helpText = `Usage: licenseok [flags] pattern [pattern ...] constant tmpl (line 31) | tmpl = `The Go Authors. All rights reserved. type file (line 39) | type file struct function init (line 44) | func init() { function main (line 60) | func main() { function walk (line 105) | func walk(ch chan<- *file, start string) { function addLicense (line 119) | func addLicense(b []byte, path string, fmode os.FileMode) error { function hashBang (line 160) | func hashBang(b []byte) []byte { function hasLicense (line 174) | func hasLicense(b []byte) bool { function prefix (line 183) | func prefix(top, mid, bot string) ([]byte, error) { FILE: internal/feedback/feedback.go constant ConsTypeConstraint (line 17) | ConsTypeConstraint = "constraint" constant ConsTypeHint (line 20) | ConsTypeHint = "hint" constant DepTypeDirect (line 23) | DepTypeDirect = "direct dep" constant DepTypeTransitive (line 27) | DepTypeTransitive = "transitive dep" constant DepTypeImported (line 30) | DepTypeImported = "imported dep" type ConstraintFeedback (line 34) | type ConstraintFeedback struct method LogFeedback (line 76) | func (cf ConstraintFeedback) LogFeedback(logger *log.Logger) { function NewConstraintFeedback (line 39) | func NewConstraintFeedback(pc gps.ProjectConstraint, depType string) *Co... function NewLockedProjectFeedback (line 56) | func NewLockedProjectFeedback(lp gps.LockedProject, depType string) *Con... type brokenImport (line 85) | type brokenImport interface type modifiedImport (line 89) | type modifiedImport struct method String (line 94) | func (mi modifiedImport) String() string { type removedImport (line 125) | type removedImport struct method String (line 130) | func (ri removedImport) String() string { type BrokenImportFeedback (line 154) | type BrokenImportFeedback struct method LogFeedback (line 193) | func (b BrokenImportFeedback) LogFeedback(logger *log.Logger) { function NewBrokenImportFeedback (line 160) | func NewBrokenImportFeedback(ld *LockDiff) *BrokenImportFeedback { function GetUsingFeedback (line 203) | func GetUsingFeedback(version, consType, depType, projectPath string) st... function GetLockingFeedback (line 215) | func GetLockingFeedback(version, revision, depType, projectPath string) ... function trimSHA (line 228) | func trimSHA(revision string) string { FILE: internal/feedback/feedback_test.go function TestFeedback_Constraint (line 17) | func TestFeedback_Constraint(t *testing.T) { function TestFeedback_LockedProject (line 59) | func TestFeedback_LockedProject(t *testing.T) { function TestFeedback_BrokenImport (line 97) | func TestFeedback_BrokenImport(t *testing.T) { FILE: internal/feedback/lockdiff.go type StringDiff (line 20) | type StringDiff struct method String (line 25) | func (diff *StringDiff) String() string { type LockDiff (line 47) | type LockDiff struct type LockedProjectDiff (line 55) | type LockedProjectDiff struct function DiffLocks (line 66) | func DiffLocks(l1, l2 gps.Lock) *LockDiff { function buildLockedProjectDiff (line 131) | func buildLockedProjectDiff(lp gps.LockedProject) LockedProjectDiff { function DiffProjects (line 165) | func DiffProjects(lp1, lp2 gps.LockedProject) *LockedProjectDiff { function sortLockedProjects (line 242) | func sortLockedProjects(lps []gps.LockedProject) []gps.LockedProject { FILE: internal/feedback/lockdiff_test.go function mkPI (line 19) | func mkPI(root string) gps.ProjectIdentifier { function TestStringDiff_NoChange (line 25) | func TestStringDiff_NoChange(t *testing.T) { function TestStringDiff_Add (line 34) | func TestStringDiff_Add(t *testing.T) { function TestStringDiff_Remove (line 42) | func TestStringDiff_Remove(t *testing.T) { function TestStringDiff_Modify (line 51) | func TestStringDiff_Modify(t *testing.T) { function TestDiffProjects_NoChange (line 60) | func TestDiffProjects_NoChange(t *testing.T) { function TestDiffProjects_Modify (line 70) | func TestDiffProjects_Modify(t *testing.T) { function TestDiffProjects_AddPackages (line 121) | func TestDiffProjects_AddPackages(t *testing.T) { function TestDiffProjects_RemovePackages (line 148) | func TestDiffProjects_RemovePackages(t *testing.T) { function TestDiffLocks_NoChange (line 177) | func TestDiffLocks_NoChange(t *testing.T) { function TestDiffLocks_AddProjects (line 191) | func TestDiffLocks_AddProjects(t *testing.T) { function TestDiffLocks_RemoveProjects (line 265) | func TestDiffLocks_RemoveProjects(t *testing.T) { function TestDiffLocks_ModifyProjects (line 338) | func TestDiffLocks_ModifyProjects(t *testing.T) { function TestDiffLocks_EmptyInitialLock (line 373) | func TestDiffLocks_EmptyInitialLock(t *testing.T) { function TestDiffLocks_EmptyFinalLock (line 385) | func TestDiffLocks_EmptyFinalLock(t *testing.T) { function TestDiffLocks_EmptyLocks (line 397) | func TestDiffLocks_EmptyLocks(t *testing.T) { FILE: internal/fs/fs.go function HasFilepathPrefix (line 33) | func HasFilepathPrefix(path, prefix string) (bool, error) { function EquivalentPaths (line 107) | func EquivalentPaths(p1, p2 string) (bool, error) { function RenameWithFallback (line 159) | func RenameWithFallback(src, dst string) error { function renameByCopy (line 175) | func renameByCopy(src, dst string) error { function IsCaseSensitiveFilesystem (line 215) | func IsCaseSensitiveFilesystem(dir string) (bool, error) { function genTestFilename (line 245) | func genTestFilename(str string) string { function ReadActualFilenames (line 276) | func ReadActualFilenames(dirPath string, names []string) (map[string]str... function CopyDir (line 356) | func CopyDir(src, dst string) error { function copyFile (line 411) | func copyFile(src, dst string) (err error) { function cloneSymlink (line 474) | func cloneSymlink(sl, dst string) error { function EnsureDir (line 487) | func EnsureDir(path string, perm os.FileMode) error { function IsDir (line 501) | func IsDir(name string) (bool, error) { function IsNonEmptyDir (line 513) | func IsNonEmptyDir(name string) (bool, error) { function IsRegular (line 541) | func IsRegular(name string) (bool, error) { function IsSymlink (line 557) | func IsSymlink(path string) (bool, error) { function fixLongPath (line 574) | func fixLongPath(path string) string { function isAbs (line 646) | func isAbs(path string) (b bool) { function volumeName (line 658) | func volumeName(path string) (v string) { FILE: internal/fs/fs_test.go function TestHasFilepathPrefix (line 33) | func TestHasFilepathPrefix(t *testing.T) { function TestHasFilepathPrefix_Files (line 110) | func TestHasFilepathPrefix_Files(t *testing.T) { function TestEquivalentPaths (line 155) | func TestEquivalentPaths(t *testing.T) { function TestRenameWithFallback (line 203) | func TestRenameWithFallback(t *testing.T) { function TestIsCaseSensitiveFilesystem (line 241) | func TestIsCaseSensitiveFilesystem(t *testing.T) { function TestReadActualFilenames (line 274) | func TestReadActualFilenames(t *testing.T) { function TestGenTestFilename (line 354) | func TestGenTestFilename(t *testing.T) { function BenchmarkGenTestFilename (line 377) | func BenchmarkGenTestFilename(b *testing.B) { function TestCopyDir (line 393) | func TestCopyDir(t *testing.T) { function TestCopyDirFail_SrcInaccessible (line 476) | func TestCopyDirFail_SrcInaccessible(t *testing.T) { function TestCopyDirFail_DstInaccessible (line 504) | func TestCopyDirFail_DstInaccessible(t *testing.T) { function TestCopyDirFail_SrcIsNotDir (line 536) | func TestCopyDirFail_SrcIsNotDir(t *testing.T) { function TestCopyDirFail_DstExists (line 562) | func TestCopyDirFail_DstExists(t *testing.T) { function TestCopyDirFailOpen (line 590) | func TestCopyDirFailOpen(t *testing.T) { function TestCopyFile (line 633) | func TestCopyFile(t *testing.T) { function TestCopyFileSymlink (line 680) | func TestCopyFileSymlink(t *testing.T) { function TestCopyFileLongFilePath (line 728) | func TestCopyFileLongFilePath(t *testing.T) { function TestCopyFileFail (line 760) | func TestCopyFileFail(t *testing.T) { function setupInaccessibleDir (line 807) | func setupInaccessibleDir(t *testing.T, op func(dir string) error) func() { function TestEnsureDir (line 846) | func TestEnsureDir(t *testing.T) { function TestIsRegular (line 897) | func TestIsRegular(t *testing.T) { function TestIsDir (line 957) | func TestIsDir(t *testing.T) { function TestIsNonEmptyDir (line 1002) | func TestIsNonEmptyDir(t *testing.T) { function TestIsSymlink (line 1057) | func TestIsSymlink(t *testing.T) { FILE: internal/fs/rename.go function renameFallback (line 18) | func renameFallback(err error, src, dst string) error { FILE: internal/fs/rename_windows.go function renameFallback (line 18) | func renameFallback(err error, src, dst string) error { FILE: internal/importers/base/importer.go type Importer (line 19) | type Importer struct method isTag (line 39) | func (i *Importer) isTag(pi gps.ProjectIdentifier, value string) (bool... method lookupVersionForLockedProject (line 62) | func (i *Importer) lookupVersionForLockedProject(pi gps.ProjectIdentif... method loadPackages (line 126) | func (i *Importer) loadPackages(packages []ImportedPackage) []imported... method ImportPackages (line 180) | func (i *Importer) ImportPackages(packages []ImportedPackage, defaultC... method isConstraintPinned (line 277) | func (i *Importer) isConstraintPinned(c gps.Constraint) bool { method testConstraint (line 288) | func (i *Importer) testConstraint(c gps.Constraint, v gps.Version) bool { method convertToConstraint (line 302) | func (i *Importer) convertToConstraint(v gps.Version) gps.Constraint { method isDefaultSource (line 315) | func (i *Importer) isDefaultSource(projectRoot gps.ProjectRoot, source... function NewImporter (line 28) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type ImportedPackage (line 104) | type ImportedPackage struct type importedProject (line 120) | type importedProject struct FILE: internal/importers/base/importer_test.go function TestBaseImporter_IsTag (line 18) | func TestBaseImporter_IsTag(t *testing.T) { function TestBaseImporter_LookupVersionForLockedProject (line 81) | func TestBaseImporter_LookupVersionForLockedProject(t *testing.T) { function TestBaseImporter_ImportProjects (line 145) | func TestBaseImporter_ImportProjects(t *testing.T) { FILE: internal/importers/glide/importer.go constant glideYamlName (line 23) | glideYamlName = "glide.yaml" constant glideLockName (line 24) | glideLockName = "glide.lock" type Importer (line 27) | type Importer struct method Name (line 70) | func (g *Importer) Name() string { method HasDepMetadata (line 75) | func (g *Importer) HasDepMetadata(dir string) bool { method Import (line 86) | func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method load (line 99) | func (g *Importer) load(projectDir string) error { method convert (line 138) | func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 35) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type glideYaml (line 39) | type glideYaml struct type glideLock (line 47) | type glideLock struct type glidePackage (line 52) | type glidePackage struct type glideLockedPackage (line 63) | type glideLockedPackage struct FILE: internal/importers/glide/importer_test.go function TestGlideConfig_Convert (line 20) | func TestGlideConfig_Convert(t *testing.T) { function TestGlideConfig_Import (line 176) | func TestGlideConfig_Import(t *testing.T) { FILE: internal/importers/glock/importer.go constant glockfile (line 21) | glockfile = "GLOCKFILE" type Importer (line 24) | type Importer struct method Name (line 36) | func (g *Importer) Name() string { method HasDepMetadata (line 41) | func (g *Importer) HasDepMetadata(dir string) bool { method Import (line 51) | func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method load (line 66) | func (g *Importer) load(projectDir string) error { method convert (line 119) | func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 31) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type glockPackage (line 61) | type glockPackage struct function parseGlockLine (line 99) | func parseGlockLine(line string) (*glockPackage, error) { FILE: internal/importers/glock/importer_test.go function TestGlockConfig_Convert (line 21) | func TestGlockConfig_Convert(t *testing.T) { function TestGlockConfig_LoadInvalid (line 73) | func TestGlockConfig_LoadInvalid(t *testing.T) { function TestGlockConfig_LoadEmptyLine (line 82) | func TestGlockConfig_LoadEmptyLine(t *testing.T) { function TestGlockConfig_Import (line 92) | func TestGlockConfig_Import(t *testing.T) { FILE: internal/importers/godep/importer.go constant godepPath (line 21) | godepPath = "Godeps" + string(os.PathSeparator) + "Godeps.json" type Importer (line 24) | type Importer struct method Name (line 46) | func (g *Importer) Name() string { method HasDepMetadata (line 51) | func (g *Importer) HasDepMetadata(dir string) bool { method Import (line 61) | func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method load (line 71) | func (g *Importer) load(projectDir string) error { method convert (line 89) | func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 30) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type godepJSON (line 34) | type godepJSON struct type godepPackage (line 39) | type godepPackage struct FILE: internal/importers/godep/importer_test.go function TestGodepConfig_Convert (line 21) | func TestGodepConfig_Convert(t *testing.T) { function TestGodepConfig_Import (line 114) | func TestGodepConfig_Import(t *testing.T) { function TestGodepConfig_JsonLoad (line 166) | func TestGodepConfig_JsonLoad(t *testing.T) { function equalImports (line 204) | func equalImports(a, b []godepPackage) bool { FILE: internal/importers/govend/importer.go constant govendYAMLName (line 22) | govendYAMLName = "vendor.yml" type Importer (line 25) | type Importer struct method Name (line 45) | func (g *Importer) Name() string { method HasDepMetadata (line 50) | func (g *Importer) HasDepMetadata(dir string) bool { method Import (line 60) | func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method load (line 71) | func (g *Importer) load(projectDir string) error { method convert (line 89) | func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 31) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type govendYAML (line 35) | type govendYAML struct type govendPackage (line 39) | type govendPackage struct FILE: internal/importers/govend/importer_test.go function TestGovendConfig_Convert (line 21) | func TestGovendConfig_Convert(t *testing.T) { function TestGovendConfig_Import (line 88) | func TestGovendConfig_Import(t *testing.T) { function TestGovendConfig_YAMLLoad (line 139) | func TestGovendConfig_YAMLLoad(t *testing.T) { function equalGovendImports (line 172) | func equalGovendImports(a, b []govendPackage) bool { FILE: internal/importers/govendor/importer.go constant govendorDir (line 22) | govendorDir = "vendor" constant govendorName (line 23) | govendorName = "vendor.json" type Importer (line 26) | type Importer struct method Name (line 54) | func (g *Importer) Name() string { method HasDepMetadata (line 59) | func (g *Importer) HasDepMetadata(dir string) bool { method Import (line 68) | func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method load (line 78) | func (g *Importer) load(projectDir string) error { method convert (line 95) | func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 33) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type govendorFile (line 38) | type govendorFile struct type govendorPackage (line 45) | type govendorPackage struct FILE: internal/importers/govendor/importer_test.go constant testGovendorProjectRoot (line 20) | testGovendorProjectRoot = "github.com/golang/notexist" function TestGovendorConfig_Import (line 22) | func TestGovendorConfig_Import(t *testing.T) { function TestGovendorConfig_Convert (line 69) | func TestGovendorConfig_Convert(t *testing.T) { FILE: internal/importers/gvt/importer.go constant gvtPath (line 20) | gvtPath = "vendor" + string(os.PathSeparator) + "manifest" type Importer (line 23) | type Importer struct method Name (line 45) | func (g *Importer) Name() string { method HasDepMetadata (line 50) | func (g *Importer) HasDepMetadata(dir string) bool { method Import (line 60) | func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method load (line 70) | func (g *Importer) load(projectDir string) error { method convert (line 88) | func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 29) | func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager)... type gvtManifest (line 33) | type gvtManifest struct type gvtPkg (line 37) | type gvtPkg struct FILE: internal/importers/gvt/importer_test.go function TestGvtConfig_Convert (line 21) | func TestGvtConfig_Convert(t *testing.T) { function TestGvtConfig_Import (line 132) | func TestGvtConfig_Import(t *testing.T) { function TestGvtConfig_JsonLoad (line 184) | func TestGvtConfig_JsonLoad(t *testing.T) { function equalImports (line 228) | func equalImports(a, b []gvtPkg) bool { FILE: internal/importers/importers.go type Importer (line 23) | type Importer interface function BuildAll (line 35) | func BuildAll(logger *log.Logger, verbose bool, sm gps.SourceManager) []... FILE: internal/importers/importertest/testcase.go type TestCase (line 23) | type TestCase struct method Execute (line 48) | func (tc TestCase) Execute(t *testing.T, convert func(logger *log.Logg... method validate (line 69) | func (tc TestCase) validate(manifest *dep.Manifest, lock *dep.Lock, ou... function NewTestContext (line 35) | func NewTestContext(h *test.Helper) *dep.Ctx { function equalSlice (line 169) | func equalSlice(a, b []string) bool { FILE: internal/importers/importertest/testdata.go constant RootProject (line 9) | RootProject = "github.com/golang/notexist" constant Project (line 12) | Project = "github.com/carolynvs/deptest-importers" constant ProjectSrc (line 15) | ProjectSrc = "https://github.com/carolynvs/deptest-importers.git" constant UntaggedRev (line 18) | UntaggedRev = "9b670d143bfb4a00f7461451d5c4a62f80e9d11d" constant UntaggedRevAbbrv (line 21) | UntaggedRevAbbrv = "v1.0.0-1-g9b670d1" constant Beta1Tag (line 24) | Beta1Tag = "beta1" constant Beta1Rev (line 27) | Beta1Rev = "7913ab26988c6fb1e16225f845a178e8849dd254" constant V2Branch (line 30) | V2Branch = "v2" constant V2Rev (line 33) | V2Rev = "45dcf5a09c64b48b6e836028a3bc672b19b9d11d" constant V2PatchTag (line 36) | V2PatchTag = "v2.0.0-alpha1" constant V2PatchRev (line 39) | V2PatchRev = "347760b50204948ea63e531dd6560e56a9adde8f" constant V1Tag (line 42) | V1Tag = "v1.0.0" constant V1Rev (line 45) | V1Rev = "d0c29640b17f77426b111f4c1640d716591aa70e" constant V1PatchTag (line 48) | V1PatchTag = "v1.0.2" constant V1PatchRev (line 51) | V1PatchRev = "788963efe22e3e6e24c776a11a57468bb2fcd780" constant V1Constraint (line 54) | V1Constraint = "^1.0.0" constant MultiTaggedRev (line 57) | MultiTaggedRev = "34cf993cc346f65601fe4356dd68bd54d20a1bfe" constant MultiTaggedSemverTag (line 60) | MultiTaggedSemverTag = "v1.0.4" constant MultiTaggedPlainTag (line 63) | MultiTaggedPlainTag = "stable" constant NonexistentPrj (line 66) | NonexistentPrj = "github.com/nonexistent/project" FILE: internal/importers/vndr/importer.go function vndrFile (line 20) | func vndrFile(dir string) string { type Importer (line 25) | type Importer struct method Name (line 36) | func (v *Importer) Name() string { return "vndr" } method HasDepMetadata (line 39) | func (v *Importer) HasDepMetadata(dir string) bool { method Import (line 45) | func (v *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manife... method loadVndrFile (line 57) | func (v *Importer) loadVndrFile(dir string) error { method convert (line 88) | func (v *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lo... function NewImporter (line 31) | func NewImporter(log *log.Logger, verbose bool, sm gps.SourceManager) *I... type vndrPackage (line 117) | type vndrPackage struct function parseVndrLine (line 123) | func parseVndrLine(line string) (*vndrPackage, error) { FILE: internal/importers/vndr/importer_test.go function TestVndrConfig_Convert (line 22) | func TestVndrConfig_Convert(t *testing.T) { function TestVndrConfig_Import (line 77) | func TestVndrConfig_Import(t *testing.T) { function TestParseVndrLine (line 152) | func TestParseVndrLine(t *testing.T) { FILE: internal/test/integration/testcase.go type TestCase (line 20) | type TestCase struct method InitialPath (line 64) | func (tc *TestCase) InitialPath() string { method UpdateFile (line 69) | func (tc *TestCase) UpdateFile(goldenPath, workingPath string) { method CompareFile (line 89) | func (tc *TestCase) CompareFile(goldenPath, working string) { method UpdateOutput (line 113) | func (tc *TestCase) UpdateOutput(stdout string) { method CompareOutput (line 130) | func (tc *TestCase) CompareOutput(stdout string) { method CompareError (line 158) | func (tc *TestCase) CompareError(err error, stderr string) { method CompareCmdFailure (line 179) | func (tc *TestCase) CompareCmdFailure(gotFail bool) { method CompareVendorPaths (line 192) | func (tc *TestCase) CompareVendorPaths(gotVendorPaths []string) { method WriteFile (line 209) | func (tc *TestCase) WriteFile(src string, content string) error { function NewTestCase (line 38) | func NewTestCase(t *testing.T, dir, name string) *TestCase { function normalizeLines (line 149) | func normalizeLines(s string) string { function getFile (line 213) | func getFile(path string) (bool, string, error) { FILE: internal/test/integration/testproj.go constant projectRoot (line 24) | projectRoot = "src/github.com/golang/notexist" type RunFunc (line 28) | type RunFunc type TestProject (line 32) | type TestProject struct method Cleanup (line 68) | func (p *TestProject) Cleanup() { method Path (line 73) | func (p *TestProject) Path(args ...string) string { method ProjPath (line 78) | func (p *TestProject) ProjPath(args ...string) string { method TempDir (line 84) | func (p *TestProject) TempDir(args ...string) { method TempProjDir (line 92) | func (p *TestProject) TempProjDir(args ...string) { method VendorPath (line 98) | func (p *TestProject) VendorPath(args ...string) string { method RunGo (line 105) | func (p *TestProject) RunGo(args ...string) { method RunGit (line 129) | func (p *TestProject) RunGit(dir string, args ...string) { method GetStdout (line 155) | func (p *TestProject) GetStdout() string { method GetStderr (line 160) | func (p *TestProject) GetStderr() string { method GetVendorGit (line 165) | func (p *TestProject) GetVendorGit(ip string) { method DoRun (line 173) | func (p *TestProject) DoRun(args []string) error { method CopyTree (line 201) | func (p *TestProject) CopyTree(src string) { method GetVendorPaths (line 234) | func (p *TestProject) GetVendorPaths() []string { method GetImportPaths (line 255) | func (p *TestProject) GetImportPaths() []string { method RecordImportPaths (line 276) | func (p *TestProject) RecordImportPaths() { method CompareImportPaths (line 281) | func (p *TestProject) CompareImportPaths() { method makeRootTempDir (line 296) | func (p *TestProject) makeRootTempDir() { method Setenv (line 312) | func (p *TestProject) Setenv(name, val string) { method Must (line 317) | func (p *TestProject) Must(err error) { function NewTestProject (line 44) | func NewTestProject(t *testing.T, initPath, wd string, run RunFunc) *Tes... function copyFile (line 217) | func copyFile(dest, src string) { FILE: internal/test/test.go constant manifestName (line 39) | manifestName = "Gopkg.toml" constant lockName (line 40) | lockName = "Gopkg.lock" function init (line 43) | func init() { type Helper (line 51) | type Helper struct method Must (line 73) | func (h *Helper) Must(err error) { method check (line 80) | func (h *Helper) check(err error) { method Parallel (line 87) | func (h *Helper) Parallel() { method pwd (line 107) | func (h *Helper) pwd() string { method Cd (line 118) | func (h *Helper) Cd(dir string) { method Setenv (line 136) | func (h *Helper) Setenv(name, val string) { method unsetenv (line 145) | func (h *Helper) unsetenv(name string) { method DoRun (line 159) | func (h *Helper) DoRun(args []string) error { method Run (line 203) | func (h *Helper) Run(args ...string) { method runFail (line 215) | func (h *Helper) runFail(args ...string) { method RunGo (line 224) | func (h *Helper) RunGo(args ...string) { method RunGit (line 264) | func (h *Helper) RunGit(dir string, args ...string) { method getStdout (line 290) | func (h *Helper) getStdout() string { method getStderr (line 298) | func (h *Helper) getStderr() string { method doGrepMatch (line 308) | func (h *Helper) doGrepMatch(match string, b *bytes.Buffer) bool { method doGrep (line 325) | func (h *Helper) doGrep(match string, b *bytes.Buffer, name, msg strin... method grepStdout (line 335) | func (h *Helper) grepStdout(match, msg string) { method grepStderr (line 341) | func (h *Helper) grepStderr(match, msg string) { method grepBoth (line 347) | func (h *Helper) grepBoth(match, msg string) { method doGrepNot (line 357) | func (h *Helper) doGrepNot(match string, b *bytes.Buffer, name, msg st... method grepStdoutNot (line 367) | func (h *Helper) grepStdoutNot(match, msg string) { method grepStderrNot (line 373) | func (h *Helper) grepStderrNot(match, msg string) { method grepBothNot (line 380) | func (h *Helper) grepBothNot(match, msg string) { method doGrepCount (line 388) | func (h *Helper) doGrepCount(match string, b *bytes.Buffer) int { method grepCountBoth (line 404) | func (h *Helper) grepCountBoth(match string) int { method creatingTemp (line 412) | func (h *Helper) creatingTemp(path string) { method makeTempdir (line 428) | func (h *Helper) makeTempdir() { method TempFile (line 437) | func (h *Helper) TempFile(path, contents string) { method WriteTestFile (line 452) | func (h *Helper) WriteTestFile(src string, content string) error { method GetFile (line 458) | func (h *Helper) GetFile(path string) io.ReadCloser { method GetTestFile (line 468) | func (h *Helper) GetTestFile(src string) io.ReadCloser { method GetTestFileString (line 475) | func (h *Helper) GetTestFileString(src string) string { method TempCopy (line 488) | func (h *Helper) TempCopy(dest, src string) { method TempDir (line 501) | func (h *Helper) TempDir(path string) { method Path (line 511) | func (h *Helper) Path(name string) string { method MustExist (line 532) | func (h *Helper) MustExist(path string) { method ShouldExist (line 539) | func (h *Helper) ShouldExist(path string) error { method Exist (line 548) | func (h *Helper) Exist(path string) bool { method MustNotExist (line 560) | func (h *Helper) MustNotExist(path string) { method ShouldNotExist (line 567) | func (h *Helper) ShouldNotExist(path string) error { method Cleanup (line 576) | func (h *Helper) Cleanup() { method ReadManifest (line 600) | func (h *Helper) ReadManifest() string { method ReadLock (line 610) | func (h *Helper) ReadLock() string { method GetCommit (line 621) | func (h *Helper) GetCommit(repo string) string { function NewHelper (line 64) | func NewHelper(t *testing.T) *Helper { function NeedsExternalNetwork (line 249) | func NeedsExternalNetwork(t *testing.T) { function NeedsGit (line 257) | func NeedsGit(t *testing.T) { FILE: internal/test/writer.go type Writer (line 14) | type Writer struct method Write (line 18) | func (t Writer) Write(b []byte) (n int, err error) { FILE: lock.go constant LockName (line 19) | LockName = "Gopkg.lock" type Lock (line 22) | type Lock struct method Projects (line 133) | func (l *Lock) Projects() []gps.LockedProject { method InputImports (line 142) | func (l *Lock) InputImports() []string { method HasProjectWithRoot (line 153) | func (l *Lock) HasProjectWithRoot(root gps.ProjectRoot) bool { method dup (line 163) | func (l *Lock) dup() *Lock { method toRaw (line 177) | func (l *Lock) toRaw() rawLock { method MarshalTOML (line 219) | func (l *Lock) MarshalTOML() ([]byte, error) { type SolveMeta (line 29) | type SolveMeta struct type rawLock (line 37) | type rawLock struct type solveMeta (line 42) | type solveMeta struct type rawLockedProject (line 50) | type rawLockedProject struct function readLock (line 61) | func readLock(r io.Reader) (*Lock, error) { function fromRawLock (line 77) | func fromRawLock(raw rawLock) (*Lock, error) { function LockFromSolution (line 233) | func LockFromSolution(in gps.Solution, prune gps.CascadingPruneOptions) ... FILE: lock_test.go function TestReadLock (line 17) | func TestReadLock(t *testing.T) { function TestWriteLock (line 82) | func TestWriteLock(t *testing.T) { function TestReadLockErrors (line 155) | func TestReadLockErrors(t *testing.T) { FILE: manifest.go constant ManifestName (line 23) | ManifestName = "Gopkg.toml" type Manifest (line 48) | type Manifest struct method MarshalTOML (line 528) | func (m *Manifest) MarshalTOML() ([]byte, error) { method toRaw (line 537) | func (m *Manifest) toRaw() rawManifest { method DependencyConstraints (line 610) | func (m *Manifest) DependencyConstraints() gps.ProjectConstraints { method Overrides (line 615) | func (m *Manifest) Overrides() gps.ProjectConstraints { method IgnoredPackages (line 620) | func (m *Manifest) IgnoredPackages() *pkgtree.IgnoredRuleset { method HasConstraintsOn (line 629) | func (m *Manifest) HasConstraintsOn(root gps.ProjectRoot) bool { method RequiredPackages (line 641) | func (m *Manifest) RequiredPackages() map[string]bool { type rawManifest (line 60) | type rawManifest struct type rawProject (line 69) | type rawProject struct type rawPruneOptions (line 77) | type rawPruneOptions struct constant pruneOptionUnusedPackages (line 87) | pruneOptionUnusedPackages = "unused-packages" constant pruneOptionGoTests (line 88) | pruneOptionGoTests = "go-tests" constant pruneOptionNonGo (line 89) | pruneOptionNonGo = "non-go" constant pvnone (line 94) | pvnone uint8 = 0 constant pvtrue (line 95) | pvtrue uint8 = 1 constant pvfalse (line 96) | pvfalse uint8 = 2 function NewManifest (line 100) | func NewManifest() *Manifest { function validateManifest (line 111) | func validateManifest(s string) ([]error, error) { function validatePruneOptions (line 226) | func validatePruneOptions(val interface{}, root bool) (warns []error, er... function checkRedundantPruneOptions (line 273) | func checkRedundantPruneOptions(co gps.CascadingPruneOptions) (warns []e... function ValidateProjectRoots (line 298) | func ValidateProjectRoots(c *Ctx, m *Manifest, sm gps.SourceManager) err... function readManifest (line 344) | func readManifest(r io.Reader) (*Manifest, []error, error) { function fromRawManifest (line 371) | func fromRawManifest(raw rawManifest, buf *bytes.Buffer) (*Manifest, err... function fromRawPruneOptions (line 419) | func fromRawPruneOptions(prunemap map[string]interface{}) gps.CascadingP... function toRawPruneOptions (line 472) | func toRawPruneOptions(co gps.CascadingPruneOptions) rawPruneOptions { function toProject (line 496) | func toProject(raw rawProject) (n gps.ProjectRoot, pp gps.ProjectPropert... type sortedRawProjects (line 561) | type sortedRawProjects method Len (line 563) | func (s sortedRawProjects) Len() int { return len(s) } method Swap (line 564) | func (s sortedRawProjects) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 565) | func (s sortedRawProjects) Less(i, j int) bool { function toRawProject (line 578) | func toRawProject(name gps.ProjectRoot, project gps.ProjectProperties) r... FILE: manifest_test.go function TestReadManifest (line 21) | func TestReadManifest(t *testing.T) { function TestWriteManifest (line 70) | func TestWriteManifest(t *testing.T) { function TestReadManifestErrors (line 110) | func TestReadManifestErrors(t *testing.T) { function TestValidateManifest (line 136) | func TestValidateManifest(t *testing.T) { function TestCheckRedundantPruneOptions (line 468) | func TestCheckRedundantPruneOptions(t *testing.T) { function TestValidateProjectRoots (line 554) | func TestValidateProjectRoots(t *testing.T) { function TestToRawPruneOptions (line 760) | func TestToRawPruneOptions(t *testing.T) { function TestToRawPruneOptions_Panic (line 797) | func TestToRawPruneOptions_Panic(t *testing.T) { function containsErr (line 814) | func containsErr(s []error, e error) bool { FILE: project.go function findProjectRoot (line 28) | func findProjectRoot(from string) (string, error) { function checkGopkgFilenames (line 58) | func checkGopkgFilenames(projectRoot string) error { type Project (line 98) | type Project struct method VerifyVendor (line 133) | func (p *Project) VerifyVendor() (map[string]verify.VendorStatus, erro... method SetRoot (line 155) | func (p *Project) SetRoot(root string) error { method MakeParams (line 167) | func (p *Project) MakeParams() gps.SolveParameters { method parseRootPackageTree (line 192) | func (p *Project) parseRootPackageTree() (pkgtree.PackageTree, error) { method GetDirectDependencyNames (line 224) | func (p *Project) GetDirectDependencyNames(sm gps.SourceManager) (map[... method FindIneffectualConstraints (line 254) | func (p *Project) FindIneffectualConstraints(sm gps.SourceManager) []g... function BackupVendor (line 279) | func BackupVendor(vpath, suffix string) (string, error) { FILE: project_test.go function TestFindRoot (line 19) | func TestFindRoot(t *testing.T) { function TestCheckGopkgFilenames (line 66) | func TestCheckGopkgFilenames(t *testing.T) { function TestProjectMakeParams (line 141) | func TestProjectMakeParams(t *testing.T) { function TestBackupVendor (line 164) | func TestBackupVendor(t *testing.T) { FILE: test_project_context_test.go type TestProjectContext (line 16) | type TestProjectContext struct method CopyFile (line 54) | func (pc *TestProjectContext) CopyFile(projectPath string, testdataPat... method Load (line 60) | func (pc *TestProjectContext) Load() { method getLockPath (line 88) | func (pc *TestProjectContext) getLockPath() string { method getManifestPath (line 93) | func (pc *TestProjectContext) getManifestPath() string { method getVendorPath (line 98) | func (pc *TestProjectContext) getVendorPath() string { method LockShouldMatchGolden (line 105) | func (pc *TestProjectContext) LockShouldMatchGolden(goldenLockPath str... method LockShouldNotExist (line 111) | func (pc *TestProjectContext) LockShouldNotExist() error { method ManifestShouldMatchGolden (line 118) | func (pc *TestProjectContext) ManifestShouldMatchGolden(goldenManifest... method ManifestShouldNotExist (line 124) | func (pc *TestProjectContext) ManifestShouldNotExist() error { method ShouldMatchGolden (line 131) | func (pc *TestProjectContext) ShouldMatchGolden(goldenFile string, got... method VendorShouldExist (line 147) | func (pc *TestProjectContext) VendorShouldExist() error { method VendorFileShouldExist (line 153) | func (pc *TestProjectContext) VendorFileShouldExist(filePath string) e... method VendorShouldNotExist (line 159) | func (pc *TestProjectContext) VendorShouldNotExist() error { method Release (line 164) | func (pc *TestProjectContext) Release() { function NewTestProjectContext (line 27) | func NewTestProjectContext(h *test.Helper, projectName string) *TestProj... FILE: txn_writer.go constant anyExceptHash (line 24) | anyExceptHash verify.DeltaDimension = verify.AnyChanged & ^verify.HashVe... type SafeWriter (line 69) | type SafeWriter struct method HasLock (line 139) | func (sw *SafeWriter) HasLock() bool { method HasManifest (line 144) | func (sw *SafeWriter) HasManifest() bool { method validate (line 162) | func (sw SafeWriter) validate(root string, sm gps.SourceManager) error { method Write (line 190) | func (sw *SafeWriter) Write(root string, sm gps.SourceManager, example... method PrintPreparedActions (line 362) | func (sw *SafeWriter) PrintPreparedActions(output *log.Logger, verbose... function NewSafeWriter (line 93) | func NewSafeWriter(manifest *Manifest, oldLock, newLock *Lock, vendor Ve... type VendorBehavior (line 149) | type VendorBehavior constant VendorOnChanged (line 155) | VendorOnChanged VendorBehavior = iota constant VendorAlways (line 157) | VendorAlways constant VendorNever (line 159) | VendorNever function hasDotGit (line 406) | func hasDotGit(path string) bool { type DeltaWriter (line 415) | type DeltaWriter struct method Write (line 545) | func (dw *DeltaWriter) Write(path string, sm gps.SourceManager, exampl... method PrintPreparedActions (line 752) | func (dw *DeltaWriter) PrintPreparedActions(output *log.Logger, verbos... type changeType (line 423) | type changeType constant hashMismatch (line 426) | hashMismatch changeType = iota + 1 constant hashVersionMismatch (line 427) | hashVersionMismatch constant hashAbsent (line 428) | hashAbsent constant noVerify (line 429) | noVerify constant solveChanged (line 430) | solveChanged constant pruneOptsChanged (line 431) | pruneOptsChanged constant missingFromTree (line 432) | missingFromTree constant projectAdded (line 433) | projectAdded constant projectRemoved (line 434) | projectRemoved constant pathPreserved (line 435) | pathPreserved function NewDeltaWriter (line 442) | func NewDeltaWriter(p *Project, newLock *Lock, behavior VendorBehavior) ... function changeExplanation (line 704) | func changeExplanation(c changeType, lpd verify.LockedProjectDelta) stri... type TreeWriter (line 787) | type TreeWriter interface function trimSHA (line 793) | func trimSHA(revision gps.Revision) string { FILE: txn_writer_test.go constant safeWriterProject (line 19) | safeWriterProject = "safewritertest" constant safeWriterGoldenManifest (line 20) | safeWriterGoldenManifest = "txn_writer/expected_manifest.toml" constant safeWriterGoldenLock (line 21) | safeWriterGoldenLock = "txn_writer/expected_lock.toml" function defaultCascadingPruneOptions (line 23) | func defaultCascadingPruneOptions() gps.CascadingPruneOptions { function TestSafeWriter_BadInput_MissingRoot (line 30) | func TestSafeWriter_BadInput_MissingRoot(t *testing.T) { function TestSafeWriter_BadInput_MissingSourceManager (line 46) | func TestSafeWriter_BadInput_MissingSourceManager(t *testing.T) { function TestSafeWriter_BadInput_ForceVendorMissingLock (line 64) | func TestSafeWriter_BadInput_ForceVendorMissingLock(t *testing.T) { function TestSafeWriter_BadInput_OldLockOnly (line 78) | func TestSafeWriter_BadInput_OldLockOnly(t *testing.T) { function TestSafeWriter_BadInput_NonexistentRoot (line 94) | func TestSafeWriter_BadInput_NonexistentRoot(t *testing.T) { function TestSafeWriter_BadInput_RootIsFile (line 112) | func TestSafeWriter_BadInput_RootIsFile(t *testing.T) { function TestSafeWriter_Manifest (line 130) | func TestSafeWriter_Manifest(t *testing.T) { function TestSafeWriter_ManifestAndUnmodifiedLock (line 171) | func TestSafeWriter_ManifestAndUnmodifiedLock(t *testing.T) { function TestSafeWriter_ManifestAndUnmodifiedLockWithForceVendor (line 216) | func TestSafeWriter_ManifestAndUnmodifiedLockWithForceVendor(t *testing.... function TestSafeWriter_ForceVendorWhenVendorAlreadyExists (line 264) | func TestSafeWriter_ForceVendorWhenVendorAlreadyExists(t *testing.T) { function TestSafeWriter_NewLock (line 313) | func TestSafeWriter_NewLock(t *testing.T) { function TestSafeWriter_NewLockSkipVendor (line 360) | func TestSafeWriter_NewLockSkipVendor(t *testing.T) { function TestHasDotGit (line 407) | func TestHasDotGit(t *testing.T) { function TestSafeWriter_VendorDotGitPreservedWithForceVendor (line 421) | func TestSafeWriter_VendorDotGitPreservedWithForceVendor(t *testing.T) { FILE: vendor/github.com/Masterminds/semver/collection.go type Collection (line 6) | type Collection method Len (line 10) | func (c Collection) Len() int { method Less (line 16) | func (c Collection) Less(i, j int) bool { method Swap (line 22) | func (c Collection) Swap(i, j int) { FILE: vendor/github.com/Masterminds/semver/constraints.go constant cvRegex (line 14) | cvRegex string = `v?([0-9|x|X|\*]+)(\.[0-9|x|X|\*]+)?(\.[0-9|x|X|\*]+)?` + function init (line 18) | func init() { type Constraint (line 51) | type Constraint interface type realConstraint (line 93) | type realConstraint interface type ccache (line 104) | type ccache struct function NewConstraint (line 116) | func NewConstraint(in string) (Constraint, error) { function NewConstraintIC (line 122) | func NewConstraintIC(in string) (Constraint, error) { function newConstraint (line 126) | func newConstraint(in string, ic bool, cache map[string]ccache) (Constra... function Intersection (line 177) | func Intersection(cg ...Constraint) Constraint { function Union (line 205) | func Union(cg ...Constraint) Constraint { FILE: vendor/github.com/Masterminds/semver/error.go constant rerrLT (line 18) | rerrLT = iota constant rerrLTE (line 19) | rerrLTE constant rerrGT (line 20) | rerrGT constant rerrGTE (line 21) | rerrGTE constant rerrNE (line 22) | rerrNE constant rerrPre (line 23) | rerrPre type MatchFailure (line 27) | type MatchFailure interface type RangeMatchFailure (line 36) | type RangeMatchFailure struct method Error (line 42) | func (rce RangeMatchFailure) Error() string { method Pair (line 48) | func (rce RangeMatchFailure) Pair() (v Version, r Constraint) { type VersionMatchFailure (line 53) | type VersionMatchFailure struct method Error (line 57) | func (vce VersionMatchFailure) Error() string { method Pair (line 63) | func (vce VersionMatchFailure) Pair() (v Version, r Constraint) { type MultiMatchFailure (line 69) | type MultiMatchFailure method Error (line 71) | func (mmf MultiMatchFailure) Error() string { FILE: vendor/github.com/Masterminds/semver/magic.go type any (line 8) | type any struct method String (line 15) | func (any) String() string { method ImpliedCaretString (line 19) | func (any) ImpliedCaretString() string { method Matches (line 25) | func (any) Matches(v Version) error { method Intersect (line 34) | func (any) Intersect(c Constraint) Constraint { method MatchesAny (line 41) | func (any) MatchesAny(c Constraint) bool { method Union (line 48) | func (any) Union(c Constraint) Constraint { method _private (line 52) | func (any) _private() {} function Any (line 11) | func Any() Constraint { type none (line 55) | type none struct method String (line 62) | func (none) String() string { method ImpliedCaretString (line 66) | func (none) ImpliedCaretString() string { method Matches (line 72) | func (none) Matches(v Version) error { method Intersect (line 80) | func (none) Intersect(Constraint) Constraint { method Union (line 84) | func (none) Union(c Constraint) Constraint { method MatchesAny (line 90) | func (none) MatchesAny(c Constraint) bool { method _private (line 94) | func (none) _private() {} function None (line 58) | func None() Constraint { function IsNone (line 98) | func IsNone(c Constraint) bool { function IsAny (line 104) | func IsAny(c Constraint) bool { FILE: vendor/github.com/Masterminds/semver/parse.go function rewriteRange (line 9) | func rewriteRange(i string) string { function parseConstraint (line 23) | func parseConstraint(c string, cbd bool) (Constraint, error) { function expandCaret (line 94) | func expandCaret(v Version) Constraint { function expandTilde (line 111) | func expandTilde(v Version, wildMinor bool) Constraint { function expandNeq (line 137) | func expandNeq(v Version, wildMinor, wildPatch bool) Constraint { function expandGreater (line 177) | func expandGreater(v Version, wildMinor, wildPatch, eq bool) Constraint { function expandLess (line 207) | func expandLess(v Version, wildMinor, wildPatch, eq bool) Constraint { function isX (line 234) | func isX(x string) bool { FILE: vendor/github.com/Masterminds/semver/range.go type rangeConstraint (line 9) | type rangeConstraint struct method Matches (line 15) | func (rc rangeConstraint) Matches(v Version) error { method dup (line 73) | func (rc rangeConstraint) dup() rangeConstraint { method minIsZero (line 92) | func (rc rangeConstraint) minIsZero() bool { method maxIsInf (line 96) | func (rc rangeConstraint) maxIsInf() bool { method Intersect (line 100) | func (rc rangeConstraint) Intersect(c Constraint) Constraint { method Union (line 174) | func (rc rangeConstraint) Union(c Constraint) Constraint { method isSupersetOf (line 367) | func (rc rangeConstraint) isSupersetOf(rc2 rangeConstraint) bool { method String (line 383) | func (rc rangeConstraint) String() string { method ImpliedCaretString (line 387) | func (rc rangeConstraint) ImpliedCaretString() string { method toString (line 391) | func (rc rangeConstraint) toString(impliedCaret bool) string { method MatchesAny (line 494) | func (rc rangeConstraint) MatchesAny(c Constraint) bool { method _private (line 518) | func (rangeConstraint) _private() {} method _real (line 519) | func (rangeConstraint) _real() {} function areAdjacent (line 476) | func areAdjacent(c1, c2 Constraint) bool { function dedupeExcls (line 501) | func dedupeExcls(ex1, ex2 []Version) []Version { FILE: vendor/github.com/Masterminds/semver/union.go type unionConstraint (line 5) | type unionConstraint method Matches (line 7) | func (uc unionConstraint) Matches(v Version) error { method Intersect (line 21) | func (uc unionConstraint) Intersect(c2 Constraint) Constraint { method MatchesAny (line 53) | func (uc unionConstraint) MatchesAny(c Constraint) bool { method Union (line 62) | func (uc unionConstraint) Union(c Constraint) Constraint { method String (line 66) | func (uc unionConstraint) String() string { method ImpliedCaretString (line 75) | func (uc unionConstraint) ImpliedCaretString() string { method _private (line 84) | func (unionConstraint) _private() {} type constraintList (line 86) | type constraintList method Len (line 88) | func (cl constraintList) Len() int { method Swap (line 92) | func (cl constraintList) Swap(i, j int) { method Less (line 96) | func (cl constraintList) Less(i, j int) bool { method Push (line 143) | func (cl *constraintList) Push(x interface{}) { method Pop (line 147) | func (cl *constraintList) Pop() interface{} { FILE: vendor/github.com/Masterminds/semver/version.go type badVersionSegment (line 24) | type badVersionSegment struct method Error (line 28) | func (b badVersionSegment) Error() string { type vcache (line 38) | type vcache struct constant SemVerRegex (line 44) | SemVerRegex string = `v?([0-9]+)(\.[0-9]+)?(\.[0-9]+)?` + type specialVersion (line 48) | type specialVersion constant notSpecial (line 51) | notSpecial specialVersion = iota constant zeroVersion (line 52) | zeroVersion constant infiniteVersion (line 53) | infiniteVersion type Version (line 57) | type Version struct method String (line 159) | func (v Version) String() string { method ImpliedCaretString (line 166) | func (v Version) ImpliedCaretString() string { method toString (line 170) | func (v Version) toString(ic bool) string { method Original (line 192) | func (v Version) Original() string { method Major (line 197) | func (v *Version) Major() uint64 { method Minor (line 202) | func (v *Version) Minor() uint64 { method Patch (line 207) | func (v *Version) Patch() uint64 { method Prerelease (line 212) | func (v Version) Prerelease() string { method Metadata (line 217) | func (v Version) Metadata() string { method LessThan (line 222) | func (v Version) LessThan(o Version) bool { method GreaterThan (line 227) | func (v Version) GreaterThan(o Version) bool { method Equal (line 234) | func (v Version) Equal(o Version) bool { method Compare (line 243) | func (v Version) Compare(o Version) int { method Matches (line 296) | func (v Version) Matches(v2 Version) error { method MatchesAny (line 306) | func (v Version) MatchesAny(c Constraint) bool { method Intersect (line 319) | func (v Version) Intersect(c Constraint) Constraint { method Union (line 333) | func (v Version) Union(c Constraint) Constraint { method _private (line 341) | func (Version) _private() {} method _real (line 342) | func (Version) _real() {} function init (line 65) | func init() { function NewVersion (line 71) | func NewVersion(v string) (Version, error) { function compareSegment (line 344) | func compareSegment(v, o uint64) int { function comparePrerelease (line 355) | func comparePrerelease(v, o string) int { function comparePrePart (line 398) | func comparePrePart(s, o string) int { function numPartsEq (line 427) | func numPartsEq(v1, v2 Version) bool { FILE: vendor/github.com/Masterminds/vcs/bzr.go function NewBzrRepo (line 18) | func NewBzrRepo(remote, local string) (*BzrRepo, error) { type BzrRepo (line 63) | type BzrRepo struct method Vcs (line 68) | func (s BzrRepo) Vcs() Type { method Get (line 73) | func (s *BzrRepo) Get() error { method Init (line 92) | func (s *BzrRepo) Init() error { method Update (line 122) | func (s *BzrRepo) Update() error { method UpdateVersion (line 135) | func (s *BzrRepo) UpdateVersion(version string) error { method Version (line 144) | func (s *BzrRepo) Version() (string, error) { method Current (line 158) | func (s *BzrRepo) Current() (string, error) { method Date (line 185) | func (s *BzrRepo) Date() (time.Time, error) { method CheckLocal (line 198) | func (s *BzrRepo) CheckLocal() bool { method Branches (line 210) | func (s *BzrRepo) Branches() ([]string, error) { method Tags (line 216) | func (s *BzrRepo) Tags() ([]string, error) { method IsReference (line 227) | func (s *BzrRepo) IsReference(r string) bool { method IsDirty (line 234) | func (s *BzrRepo) IsDirty() bool { method CommitInfo (line 240) | func (s *BzrRepo) CommitInfo(id string) (*CommitInfo, error) { method TagsFromCommit (line 283) | func (s *BzrRepo) TagsFromCommit(id string) ([]string, error) { method Ping (line 294) | func (s *BzrRepo) Ping() bool { method ExportDir (line 318) | func (s *BzrRepo) ExportDir(dir string) error { method isUnableToCreateDir (line 330) | func (s *BzrRepo) isUnableToCreateDir(err error) bool { FILE: vendor/github.com/Masterminds/vcs/errors.go type RemoteError (line 59) | type RemoteError struct function NewRemoteError (line 64) | func NewRemoteError(msg string, err error, out string) error { type LocalError (line 74) | type LocalError struct function NewLocalError (line 79) | func NewLocalError(msg string, err error, out string) error { type vcsError (line 88) | type vcsError struct method Error (line 95) | func (e *vcsError) Error() string { method Original (line 100) | func (e *vcsError) Original() error { method Out (line 105) | func (e *vcsError) Out() string { FILE: vendor/github.com/Masterminds/vcs/git.go function NewGitRepo (line 17) | func NewGitRepo(remote, local string) (*GitRepo, error) { type GitRepo (line 62) | type GitRepo struct method Vcs (line 68) | func (s GitRepo) Vcs() Type { method Get (line 73) | func (s *GitRepo) Get() error { method Init (line 103) | func (s *GitRepo) Init() error { method Update (line 133) | func (s *GitRepo) Update() error { method UpdateVersion (line 160) | func (s *GitRepo) UpdateVersion(version string) error { method defendAgainstSubmodules (line 171) | func (s *GitRepo) defendAgainstSubmodules() error { method Version (line 193) | func (s *GitRepo) Version() (string, error) { method Current (line 206) | func (s *GitRepo) Current() (string, error) { method Date (line 231) | func (s *GitRepo) Date() (time.Time, error) { method Branches (line 244) | func (s *GitRepo) Branches() ([]string, error) { method Tags (line 254) | func (s *GitRepo) Tags() ([]string, error) { method CheckLocal (line 264) | func (s *GitRepo) CheckLocal() bool { method IsReference (line 274) | func (s *GitRepo) IsReference(r string) bool { method IsDirty (line 289) | func (s *GitRepo) IsDirty() bool { method CommitInfo (line 295) | func (s *GitRepo) CommitInfo(id string) (*CommitInfo, error) { method TagsFromCommit (line 329) | func (s *GitRepo) TagsFromCommit(id string) ([]string, error) { method Ping (line 356) | func (s *GitRepo) Ping() bool { method ExportDir (line 390) | func (s *GitRepo) ExportDir(dir string) error { method isUnableToCreateDir (line 444) | func (s *GitRepo) isUnableToCreateDir(err error) bool { function EscapePathSeparator (line 369) | func EscapePathSeparator(path string) (string) { function isDetachedHead (line 426) | func isDetachedHead(dir string) (bool, error) { FILE: vendor/github.com/Masterminds/vcs/hg.go function NewHgRepo (line 16) | func NewHgRepo(remote, local string) (*HgRepo, error) { type HgRepo (line 62) | type HgRepo struct method Vcs (line 67) | func (s HgRepo) Vcs() Type { method Get (line 72) | func (s *HgRepo) Get() error { method Init (line 81) | func (s *HgRepo) Init() error { method Update (line 90) | func (s *HgRepo) Update() error { method UpdateVersion (line 95) | func (s *HgRepo) UpdateVersion(version string) error { method Version (line 112) | func (s *HgRepo) Version() (string, error) { method Current (line 127) | func (s *HgRepo) Current() (string, error) { method Date (line 161) | func (s *HgRepo) Date() (time.Time, error) { method CheckLocal (line 178) | func (s *HgRepo) CheckLocal() bool { method Branches (line 187) | func (s *HgRepo) Branches() ([]string, error) { method Tags (line 197) | func (s *HgRepo) Tags() ([]string, error) { method IsReference (line 208) | func (s *HgRepo) IsReference(r string) bool { method IsDirty (line 215) | func (s *HgRepo) IsDirty() bool { method CommitInfo (line 221) | func (s *HgRepo) CommitInfo(id string) (*CommitInfo, error) { method TagsFromCommit (line 268) | func (s *HgRepo) TagsFromCommit(id string) ([]string, error) { method Ping (line 302) | func (s *HgRepo) Ping() bool { method ExportDir (line 308) | func (s *HgRepo) ExportDir(dir string) error { FILE: vendor/github.com/Masterminds/vcs/repo.go function init (line 45) | func init() { constant longForm (line 52) | longForm = "2006-01-02 15:04:05 -0700" type Type (line 55) | type Type constant NoVCS (line 59) | NoVCS Type = "" constant Git (line 60) | Git Type = "git" constant Svn (line 61) | Svn Type = "svn" constant Bzr (line 62) | Bzr Type = "bzr" constant Hg (line 63) | Hg Type = "hg" type Repo (line 69) | type Repo interface function NewRepo (line 146) | func NewRepo(remote, local string) (Repo, error) { type CommitInfo (line 177) | type CommitInfo struct type base (line 191) | type base struct method log (line 196) | func (b *base) log(v interface{}) { method Remote (line 201) | func (b *base) Remote() string { method LocalPath (line 206) | func (b *base) LocalPath() string { method setRemote (line 210) | func (b *base) setRemote(remote string) { method setLocalPath (line 214) | func (b *base) setLocalPath(local string) { method run (line 218) | func (b base) run(cmd string, args ...string) ([]byte, error) { method CmdFromDir (line 227) | func (b *base) CmdFromDir(cmd string, args ...string) *exec.Cmd { method RunFromDir (line 234) | func (b *base) RunFromDir(cmd string, args ...string) ([]byte, error) { method referenceList (line 240) | func (b *base) referenceList(c, r string) []string { function envForDir (line 250) | func envForDir(dir string) []string { function mergeEnvLists (line 255) | func mergeEnvLists(in, out []string) []string { function depInstalled (line 270) | func depInstalled(name string) bool { FILE: vendor/github.com/Masterminds/vcs/svn.go function NewSvnRepo (line 18) | func NewSvnRepo(remote, local string) (*SvnRepo, error) { type SvnRepo (line 64) | type SvnRepo struct method Vcs (line 69) | func (s SvnRepo) Vcs() Type { method Get (line 76) | func (s *SvnRepo) Get() error { method Init (line 91) | func (s *SvnRepo) Init() error { method Update (line 118) | func (s *SvnRepo) Update() error { method UpdateVersion (line 127) | func (s *SvnRepo) UpdateVersion(version string) error { method Version (line 136) | func (s *SvnRepo) Version() (string, error) { method Current (line 161) | func (s *SvnRepo) Current() (string, error) { method Date (line 180) | func (s *SvnRepo) Date() (time.Time, error) { method CheckLocal (line 198) | func (s *SvnRepo) CheckLocal() bool { method Tags (line 226) | func (s *SvnRepo) Tags() ([]string, error) { method Branches (line 236) | func (s *SvnRepo) Branches() ([]string, error) { method IsReference (line 242) | func (s *SvnRepo) IsReference(r string) bool { method IsDirty (line 260) | func (s *SvnRepo) IsDirty() bool { method CommitInfo (line 266) | func (s *SvnRepo) CommitInfo(id string) (*CommitInfo, error) { method TagsFromCommit (line 336) | func (s *SvnRepo) TagsFromCommit(id string) ([]string, error) { method Ping (line 343) | func (s *SvnRepo) Ping() bool { method ExportDir (line 349) | func (s *SvnRepo) ExportDir(dir string) error { method isUnableToCreateDir (line 362) | func (s *SvnRepo) isUnableToCreateDir(err error) bool { function detectRemoteFromInfoCommand (line 371) | func detectRemoteFromInfoCommand(infoOut string) (string, error) { FILE: vendor/github.com/Masterminds/vcs/vcs_local_lookup.go function DetectVcsFromFS (line 11) | func DetectVcsFromFS(vcsPath string) (Type, error) { FILE: vendor/github.com/Masterminds/vcs/vcs_remote_lookup.go type vcsInfo (line 15) | type vcsInfo struct function init (line 71) | func init() { function detectVcsFromRemote (line 81) | func detectVcsFromRemote(vcsURL string) (Type, string, error) { function detectVcsFromURL (line 133) | func detectVcsFromURL(vcsURL string) (Type, error) { function checkBitbucket (line 237) | func checkBitbucket(i map[string]string, ul *url.URL) (Type, error) { function checkURL (line 270) | func checkURL(i map[string]string, u *url.URL) (Type, error) { function get (line 274) | func get(url string) ([]byte, error) { function expand (line 295) | func expand(match map[string]string, s string) string { function parseImportFromBody (line 302) | func parseImportFromBody(ur *url.URL, r io.ReadCloser) (tp Type, u strin... function charsetReader (line 358) | func charsetReader(charset string, input io.Reader) (io.Reader, error) { function attrValue (line 367) | func attrValue(attrs []xml.Attr, name string) string { FILE: vendor/github.com/armon/go-radix/radix.go type WalkFn (line 11) | type WalkFn type leafNode (line 14) | type leafNode struct type edge (line 20) | type edge struct type node (line 25) | type node struct method isLeaf (line 38) | func (n *node) isLeaf() bool { method addEdge (line 42) | func (n *node) addEdge(e edge) { method replaceEdge (line 47) | func (n *node) replaceEdge(e edge) { method getEdge (line 59) | func (n *node) getEdge(label byte) *node { method delEdge (line 70) | func (n *node) delEdge(label byte) { method mergeChild (line 295) | func (n *node) mergeChild() { type edges (line 82) | type edges method Len (line 84) | func (e edges) Len() int { method Less (line 88) | func (e edges) Less(i, j int) bool { method Swap (line 92) | func (e edges) Swap(i, j int) { method Sort (line 96) | func (e edges) Sort() { type Tree (line 104) | type Tree struct method Len (line 125) | func (t *Tree) Len() int { method Insert (line 147) | func (t *Tree) Insert(s string, v interface{}) (interface{}, bool) { method Delete (line 240) | func (t *Tree) Delete(s string) (interface{}, bool) { method Get (line 305) | func (t *Tree) Get(s string) (interface{}, bool) { method LongestPrefix (line 335) | func (t *Tree) LongestPrefix(s string) (string, interface{}, bool) { method Minimum (line 370) | func (t *Tree) Minimum() (string, interface{}, bool) { method Maximum (line 386) | func (t *Tree) Maximum() (string, interface{}, bool) { method Walk (line 402) | func (t *Tree) Walk(fn WalkFn) { method WalkPrefix (line 407) | func (t *Tree) WalkPrefix(prefix string, fn WalkFn) { method WalkPath (line 442) | func (t *Tree) WalkPath(path string, fn WalkFn) { method ToMap (line 489) | func (t *Tree) ToMap() map[string]interface{} { function New (line 110) | func New() *Tree { function NewFromMap (line 116) | func NewFromMap(m map[string]interface{}) *Tree { function longestPrefix (line 131) | func longestPrefix(k1, k2 string) int { function recursiveWalk (line 473) | func recursiveWalk(n *node, fn WalkFn) bool { FILE: vendor/github.com/boltdb/bolt/bolt_386.go constant maxMapSize (line 4) | maxMapSize = 0x7FFFFFFF constant maxAllocSize (line 7) | maxAllocSize = 0xFFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_amd64.go constant maxMapSize (line 4) | maxMapSize = 0xFFFFFFFFFFFF constant maxAllocSize (line 7) | maxAllocSize = 0x7FFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_arm.go constant maxMapSize (line 6) | maxMapSize = 0x7FFFFFFF constant maxAllocSize (line 9) | maxAllocSize = 0xFFFFFFF function init (line 14) | func init() { FILE: vendor/github.com/boltdb/bolt/bolt_arm64.go constant maxMapSize (line 6) | maxMapSize = 0xFFFFFFFFFFFF constant maxAllocSize (line 9) | maxAllocSize = 0x7FFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_linux.go function fdatasync (line 8) | func fdatasync(db *DB) error { FILE: vendor/github.com/boltdb/bolt/bolt_openbsd.go constant msAsync (line 9) | msAsync = 1 << iota constant msSync (line 10) | msSync constant msInvalidate (line 11) | msInvalidate function msync (line 14) | func msync(db *DB) error { function fdatasync (line 22) | func fdatasync(db *DB) error { FILE: vendor/github.com/boltdb/bolt/bolt_ppc.go constant maxMapSize (line 6) | maxMapSize = 0x7FFFFFFF constant maxAllocSize (line 9) | maxAllocSize = 0xFFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_ppc64.go constant maxMapSize (line 6) | maxMapSize = 0xFFFFFFFFFFFF constant maxAllocSize (line 9) | maxAllocSize = 0x7FFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_ppc64le.go constant maxMapSize (line 6) | maxMapSize = 0xFFFFFFFFFFFF constant maxAllocSize (line 9) | maxAllocSize = 0x7FFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_s390x.go constant maxMapSize (line 6) | maxMapSize = 0xFFFFFFFFFFFF constant maxAllocSize (line 9) | maxAllocSize = 0x7FFFFFFF FILE: vendor/github.com/boltdb/bolt/bolt_unix.go function flock (line 14) | func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Durati... function funlock (line 43) | func funlock(db *DB) error { function mmap (line 48) | func mmap(db *DB, sz int) error { function munmap (line 68) | func munmap(db *DB) error { function madvise (line 83) | func madvise(b []byte, advice int) (err error) { FILE: vendor/github.com/boltdb/bolt/bolt_unix_solaris.go function flock (line 14) | func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Durati... function funlock (line 48) | func funlock(db *DB) error { function mmap (line 58) | func mmap(db *DB, sz int) error { function munmap (line 78) | func munmap(db *DB) error { FILE: vendor/github.com/boltdb/bolt/bolt_windows.go constant lockExt (line 19) | lockExt = ".lock" constant flagLockExclusive (line 22) | flagLockExclusive = 2 constant flagLockFailImmediately (line 23) | flagLockFailImmediately = 1 constant errLockViolation (line 26) | errLockViolation syscall.Errno = 0x21 function lockFileEx (line 29) | func lockFileEx(h syscall.Handle, flags, reserved, locklow, lockhigh uin... function unlockFileEx (line 37) | func unlockFileEx(h syscall.Handle, reserved, locklow, lockhigh uint32, ... function fdatasync (line 46) | func fdatasync(db *DB) error { function flock (line 51) | func flock(db *DB, mode os.FileMode, exclusive bool, timeout time.Durati... function funlock (line 89) | func funlock(db *DB) error { function mmap (line 98) | func mmap(db *DB, sz int) error { function munmap (line 134) | func munmap(db *DB) error { FILE: vendor/github.com/boltdb/bolt/boltsync_unix.go function fdatasync (line 6) | func fdatasync(db *DB) error { FILE: vendor/github.com/boltdb/bolt/bucket.go constant MaxKeySize (line 11) | MaxKeySize = 32768 constant MaxValueSize (line 14) | MaxValueSize = (1 << 31) - 2 constant maxUint (line 18) | maxUint = ^uint(0) constant minUint (line 19) | minUint = 0 constant maxInt (line 20) | maxInt = int(^uint(0) >> 1) constant minInt (line 21) | minInt = -maxInt - 1 constant bucketHeaderSize (line 24) | bucketHeaderSize = int(unsafe.Sizeof(bucket{})) constant minFillPercent (line 27) | minFillPercent = 0.1 constant maxFillPercent (line 28) | maxFillPercent = 1.0 constant DefaultFillPercent (line 33) | DefaultFillPercent = 0.5 type Bucket (line 36) | type Bucket struct method Tx (line 72) | func (b *Bucket) Tx() *Tx { method Root (line 77) | func (b *Bucket) Root() pgid { method Writable (line 82) | func (b *Bucket) Writable() bool { method Cursor (line 89) | func (b *Bucket) Cursor() *Cursor { method Bucket (line 103) | func (b *Bucket) Bucket(name []byte) *Bucket { method openBucket (line 130) | func (b *Bucket) openBucket(value []byte) *Bucket { method CreateBucket (line 161) | func (b *Bucket) CreateBucket(key []byte) (*Bucket, error) { method CreateBucketIfNotExists (line 205) | func (b *Bucket) CreateBucketIfNotExists(key []byte) (*Bucket, error) { method DeleteBucket (line 217) | func (b *Bucket) DeleteBucket(key []byte) error { method Get (line 266) | func (b *Bucket) Get(key []byte) []byte { method Put (line 285) | func (b *Bucket) Put(key []byte, value []byte) error { method Delete (line 317) | func (b *Bucket) Delete(key []byte) error { method Sequence (line 340) | func (b *Bucket) Sequence() uint64 { return b.bucket.sequence } method SetSequence (line 343) | func (b *Bucket) SetSequence(v uint64) error { method NextSequence (line 362) | func (b *Bucket) NextSequence() (uint64, error) { method ForEach (line 384) | func (b *Bucket) ForEach(fn func(k, v []byte) error) error { method Stats (line 398) | func (b *Bucket) Stats() BucketStats { method forEachPage (line 480) | func (b *Bucket) forEachPage(fn func(*page, int)) { method forEachPageNode (line 493) | func (b *Bucket) forEachPageNode(fn func(*page, *node, int)) { method _forEachPageNode (line 502) | func (b *Bucket) _forEachPageNode(pgid pgid, depth int, fn func(*page,... method spill (line 526) | func (b *Bucket) spill() error { method inlineable (line 586) | func (b *Bucket) inlineable() bool { method maxInlineBucketSize (line 611) | func (b *Bucket) maxInlineBucketSize() int { method write (line 616) | func (b *Bucket) write() []byte { method rebalance (line 633) | func (b *Bucket) rebalance() { method node (line 643) | func (b *Bucket) node(pgid pgid, parent *node) *node { method free (line 676) | func (b *Bucket) free() { method dereference (line 693) | func (b *Bucket) dereference() { method pageNode (line 705) | func (b *Bucket) pageNode(id pgid) (*page, *node) { type bucket (line 56) | type bucket struct function newBucket (line 62) | func newBucket(tx *Tx) Bucket { type BucketStats (line 730) | type BucketStats struct method Add (line 753) | func (s *BucketStats) Add(other BucketStats) { function cloneBytes (line 773) | func cloneBytes(v []byte) []byte { FILE: vendor/github.com/boltdb/bolt/cursor.go type Cursor (line 18) | type Cursor struct method Bucket (line 24) | func (c *Cursor) Bucket() *Bucket { method First (line 31) | func (c *Cursor) First() (key []byte, value []byte) { method Last (line 55) | func (c *Cursor) Last() (key []byte, value []byte) { method Next (line 73) | func (c *Cursor) Next() (key []byte, value []byte) { method Prev (line 85) | func (c *Cursor) Prev() (key []byte, value []byte) { method Seek (line 117) | func (c *Cursor) Seek(seek []byte) (key []byte, value []byte) { method Delete (line 135) | func (c *Cursor) Delete() error { method seek (line 154) | func (c *Cursor) seek(seek []byte) (key []byte, value []byte, flags ui... method first (line 172) | func (c *Cursor) first() { method last (line 193) | func (c *Cursor) last() { method next (line 218) | func (c *Cursor) next() (key []byte, value []byte, flags uint32) { method search (line 253) | func (c *Cursor) search(key []byte, pgid pgid) { method searchNode (line 274) | func (c *Cursor) searchNode(key []byte, n *node) { method searchPage (line 294) | func (c *Cursor) searchPage(key []byte, p *page) { method nsearch (line 318) | func (c *Cursor) nsearch(key []byte) { method keyValue (line 340) | func (c *Cursor) keyValue() ([]byte, []byte, uint32) { method node (line 358) | func (c *Cursor) node() *node { type elemRef (line 380) | type elemRef struct method isLeaf (line 387) | func (r *elemRef) isLeaf() bool { method count (line 395) | func (r *elemRef) count() int { FILE: vendor/github.com/boltdb/bolt/db.go constant maxMmapStep (line 18) | maxMmapStep = 1 << 30 constant version (line 21) | version = 2 constant magic (line 24) | magic uint32 = 0xED0CDAED constant IgnoreNoSync (line 30) | IgnoreNoSync = runtime.GOOS == "openbsd" constant DefaultMaxBatchSize (line 34) | DefaultMaxBatchSize int = 1000 constant DefaultMaxBatchDelay (line 35) | DefaultMaxBatchDelay = 10 * time.Millisecond constant DefaultAllocSize (line 36) | DefaultAllocSize = 16 * 1024 * 1024 type DB (line 45) | type DB struct method Path (line 133) | func (db *DB) Path() string { method GoString (line 138) | func (db *DB) GoString() string { method String (line 143) | func (db *DB) String() string { method mmap (line 245) | func (db *DB) mmap(minsz int) error { method munmap (line 298) | func (db *DB) munmap() error { method mmapSize (line 308) | func (db *DB) mmapSize(size int) (int, error) { method init (line 343) | func (db *DB) init() error { method Close (line 391) | func (db *DB) Close() error { method close (line 404) | func (db *DB) close() error { method Begin (line 459) | func (db *DB) Begin(writable bool) (*Tx, error) { method beginTx (line 466) | func (db *DB) beginTx() (*Tx, error) { method beginRWTx (line 504) | func (db *DB) beginRWTx() (*Tx, error) { method removeTx (line 545) | func (db *DB) removeTx(tx *Tx) { method Update (line 581) | func (db *DB) Update(fn func(*Tx) error) error { method View (line 612) | func (db *DB) View(fn func(*Tx) error) error { method Batch (line 660) | func (db *DB) Batch(fn func(*Tx) error) error { method Sync (line 777) | func (db *DB) Sync() error { return fdatasync(db) } method Stats (line 781) | func (db *DB) Stats() Stats { method Info (line 789) | func (db *DB) Info() *Info { method page (line 794) | func (db *DB) page(id pgid) *page { method pageInBuffer (line 800) | func (db *DB) pageInBuffer(b []byte, id pgid) *page { method meta (line 805) | func (db *DB) meta() *meta { method allocate (line 829) | func (db *DB) allocate(count int) (*page, error) { method grow (line 861) | func (db *DB) grow(sz int) error { method IsReadOnly (line 892) | func (db *DB) IsReadOnly() bool { function Open (line 150) | func Open(path string, mode os.FileMode, options *Options) (*DB, error) { type call (line 685) | type call struct type batch (line 690) | type batch struct method trigger (line 698) | func (b *batch) trigger() { method run (line 704) | func (b *batch) run() { type panicked (line 753) | type panicked struct method Error (line 757) | func (p panicked) Error() string { function safelyCall (line 764) | func safelyCall(fn func(*Tx) error, tx *Tx) (err error) { type Options (line 897) | type Options struct type Stats (line 932) | type Stats struct method Sub (line 949) | func (s *Stats) Sub(other *Stats) Stats { method add (line 963) | func (s *Stats) add(other *Stats) { type Info (line 967) | type Info struct type meta (line 972) | type meta struct method validate (line 985) | func (m *meta) validate() error { method copy (line 997) | func (m *meta) copy(dest *meta) { method write (line 1002) | func (m *meta) write(p *page) { method sum64 (line 1020) | func (m *meta) sum64() uint64 { function _assert (line 1027) | func _assert(condition bool, msg string, v ...interface{}) { function warn (line 1033) | func warn(v ...interface{}) { fmt.Fprintln(os.Stderr, v...) } function warnf (line 1034) | func warnf(msg string, v ...interface{}) { fmt.Fprintf(os.Stderr, msg+"\... function printstack (line 1036) | func printstack() { FILE: vendor/github.com/boltdb/bolt/freelist.go type freelist (line 11) | type freelist struct method size (line 26) | func (f *freelist) size() int { method count (line 36) | func (f *freelist) count() int { method free_count (line 41) | func (f *freelist) free_count() int { method pending_count (line 46) | func (f *freelist) pending_count() int { method copyall (line 56) | func (f *freelist) copyall(dst []pgid) { method allocate (line 67) | func (f *freelist) allocate(n int) pgid { method free (line 111) | func (f *freelist) free(txid txid, p *page) { method release (line 132) | func (f *freelist) release(txid txid) { method rollback (line 147) | func (f *freelist) rollback(txid txid) { method freed (line 158) | func (f *freelist) freed(pgid pgid) bool { method read (line 163) | func (f *freelist) read(p *page) { method write (line 191) | func (f *freelist) write(p *page) error { method reload (line 215) | func (f *freelist) reload(p *page) { method reindex (line 242) | func (f *freelist) reindex() { function newFreelist (line 18) | func newFreelist() *freelist { FILE: vendor/github.com/boltdb/bolt/node.go type node (line 11) | type node struct method root (line 24) | func (n *node) root() *node { method minKeys (line 32) | func (n *node) minKeys() int { method size (line 40) | func (n *node) size() int { method sizeLessThan (line 52) | func (n *node) sizeLessThan(v int) bool { method pageElementSize (line 65) | func (n *node) pageElementSize() int { method childAt (line 73) | func (n *node) childAt(index int) *node { method childIndex (line 81) | func (n *node) childIndex(child *node) int { method numChildren (line 87) | func (n *node) numChildren() int { method nextSibling (line 92) | func (n *node) nextSibling() *node { method prevSibling (line 104) | func (n *node) prevSibling() *node { method put (line 116) | func (n *node) put(oldKey, newKey, value []byte, pgid pgid, flags uint... method del (line 144) | func (n *node) del(key []byte) { method read (line 161) | func (n *node) read(p *page) { method write (line 191) | func (n *node) write(p *page) { method split (line 250) | func (n *node) split(pageSize int) []*node { method splitTwo (line 273) | func (n *node) splitTwo(pageSize int) (*node, *node) { method splitIndex (line 315) | func (n *node) splitIndex(threshold int) (index, sz int) { method spill (line 339) | func (n *node) spill() error { method rebalance (line 409) | func (n *node) rebalance() { method removeChild (line 512) | func (n *node) removeChild(target *node) { method dereference (line 523) | func (n *node) dereference() { method free (line 554) | func (n *node) free() { type nodes (line 588) | type nodes method Len (line 590) | func (s nodes) Len() int { return len(s) } method Swap (line 591) | func (s nodes) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 592) | func (s nodes) Less(i, j int) bool { return bytes.Compare(s[i].inodes[... type inode (line 597) | type inode struct type inodes (line 604) | type inodes FILE: vendor/github.com/boltdb/bolt/page.go constant pageHeaderSize (line 10) | pageHeaderSize = int(unsafe.Offsetof(((*page)(nil)).ptr)) constant minKeysPerPage (line 12) | minKeysPerPage = 2 constant branchPageElementSize (line 14) | branchPageElementSize = int(unsafe.Sizeof(branchPageElement{})) constant leafPageElementSize (line 15) | leafPageElementSize = int(unsafe.Sizeof(leafPageElement{})) constant branchPageFlag (line 18) | branchPageFlag = 0x01 constant leafPageFlag (line 19) | leafPageFlag = 0x02 constant metaPageFlag (line 20) | metaPageFlag = 0x04 constant freelistPageFlag (line 21) | freelistPageFlag = 0x10 constant bucketLeafFlag (line 25) | bucketLeafFlag = 0x01 type pgid (line 28) | type pgid type page (line 30) | type page struct method typ (line 39) | func (p *page) typ() string { method meta (line 53) | func (p *page) meta() *meta { method leafPageElement (line 58) | func (p *page) leafPageElement(index uint16) *leafPageElement { method leafPageElements (line 64) | func (p *page) leafPageElements() []leafPageElement { method branchPageElement (line 72) | func (p *page) branchPageElement(index uint16) *branchPageElement { method branchPageElements (line 77) | func (p *page) branchPageElements() []branchPageElement { method hexdump (line 85) | func (p *page) hexdump(n int) { type pages (line 90) | type pages method Len (line 92) | func (s pages) Len() int { return len(s) } method Swap (line 93) | func (s pages) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 94) | func (s pages) Less(i, j int) bool { return s[i].id < s[j].id } type branchPageElement (line 97) | type branchPageElement struct method key (line 104) | func (n *branchPageElement) key() []byte { type leafPageElement (line 110) | type leafPageElement struct method key (line 118) | func (n *leafPageElement) key() []byte { method value (line 124) | func (n *leafPageElement) value() []byte { type PageInfo (line 130) | type PageInfo struct type pgids (line 137) | type pgids method Len (line 139) | func (s pgids) Len() int { return len(s) } method Swap (line 140) | func (s pgids) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 141) | func (s pgids) Less(i, j int) bool { return s[i] < s[j] } method merge (line 144) | func (a pgids) merge(b pgids) pgids { function mergepgids (line 159) | func mergepgids(dst, a, b pgids) { FILE: vendor/github.com/boltdb/bolt/tx.go type txid (line 14) | type txid type Tx (line 24) | type Tx struct method init (line 44) | func (tx *Tx) init(db *DB) { method ID (line 65) | func (tx *Tx) ID() int { method DB (line 70) | func (tx *Tx) DB() *DB { method Size (line 75) | func (tx *Tx) Size() int64 { method Writable (line 80) | func (tx *Tx) Writable() bool { method Cursor (line 88) | func (tx *Tx) Cursor() *Cursor { method Stats (line 93) | func (tx *Tx) Stats() TxStats { method Bucket (line 100) | func (tx *Tx) Bucket(name []byte) *Bucket { method CreateBucket (line 107) | func (tx *Tx) CreateBucket(name []byte) (*Bucket, error) { method CreateBucketIfNotExists (line 114) | func (tx *Tx) CreateBucketIfNotExists(name []byte) (*Bucket, error) { method DeleteBucket (line 120) | func (tx *Tx) DeleteBucket(name []byte) error { method ForEach (line 127) | func (tx *Tx) ForEach(fn func(name []byte, b *Bucket) error) error { method OnCommit (line 137) | func (tx *Tx) OnCommit(fn func()) { method Commit (line 144) | func (tx *Tx) Commit() error { method Rollback (line 240) | func (tx *Tx) Rollback() error { method rollback (line 249) | func (tx *Tx) rollback() { method close (line 260) | func (tx *Tx) close() { method Copy (line 295) | func (tx *Tx) Copy(w io.Writer) error { method WriteTo (line 302) | func (tx *Tx) WriteTo(w io.Writer) (n int64, err error) { method CopyFile (line 353) | func (tx *Tx) CopyFile(path string, mode os.FileMode) error { method Check (line 375) | func (tx *Tx) Check() <-chan error { method check (line 381) | func (tx *Tx) check(ch chan error) { method checkBucket (line 416) | func (tx *Tx) checkBucket(b *Bucket, reachable map[pgid]*page, freed m... method allocate (line 455) | func (tx *Tx) allocate(count int) (*page, error) { method write (line 472) | func (tx *Tx) write() error { method writeMeta (line 545) | func (tx *Tx) writeMeta() error { method page (line 569) | func (tx *Tx) page(id pgid) *page { method forEachPage (line 582) | func (tx *Tx) forEachPage(pgid pgid, depth int, fn func(*page, int)) { method Page (line 599) | func (tx *Tx) Page(id int) (*PageInfo, error) { type TxStats (line 625) | type TxStats struct method add (line 651) | func (s *TxStats) add(other *TxStats) { method Sub (line 669) | func (s *TxStats) Sub(other *TxStats) TxStats { FILE: vendor/github.com/golang/protobuf/proto/clone.go function Clone (line 44) | func Clone(pb Message) Message { function Merge (line 60) | func Merge(dst, src Message) { function mergeStruct (line 77) | func mergeStruct(out, in reflect.Value) { function mergeAny (line 111) | func mergeAny(out, in reflect.Value, viaPtr bool, prop *Properties) { function mergeExtension (line 214) | func mergeExtension(out, in map[int32]Extension) { FILE: vendor/github.com/golang/protobuf/proto/decode.go function DecodeVarint (line 63) | func DecodeVarint(buf []byte) (x uint64, n int) { method decodeVarintSlow (line 80) | func (p *Buffer) decodeVarintSlow() (x uint64, err error) { method DecodeVarint (line 107) | func (p *Buffer) DecodeVarint() (x uint64, err error) { method DecodeFixed64 (line 207) | func (p *Buffer) DecodeFixed64() (x uint64, err error) { method DecodeFixed32 (line 230) | func (p *Buffer) DecodeFixed32() (x uint64, err error) { method DecodeZigzag64 (line 249) | func (p *Buffer) DecodeZigzag64() (x uint64, err error) { method DecodeZigzag32 (line 261) | func (p *Buffer) DecodeZigzag32() (x uint64, err error) { method DecodeRawBytes (line 276) | func (p *Buffer) DecodeRawBytes(alloc bool) (buf []byte, err error) { method DecodeStringBytes (line 306) | func (p *Buffer) DecodeStringBytes() (s string, err error) { method skipAndSave (line 317) | func (o *Buffer) skipAndSave(t reflect.Type, tag, wire int, base structP... method skip (line 344) | func (o *Buffer) skip(t reflect.Type, tag, wire int) error { type Unmarshaler (line 385) | type Unmarshaler interface function Unmarshal (line 396) | func Unmarshal(buf []byte, pb Message) error { function UnmarshalMerge (line 407) | func UnmarshalMerge(buf []byte, pb Message) error { method DecodeMessage (line 416) | func (p *Buffer) DecodeMessage(pb Message) error { method DecodeGroup (line 425) | func (p *Buffer) DecodeGroup(pb Message) error { method Unmarshal (line 439) | func (p *Buffer) Unmarshal(pb Message) error { method unmarshalType (line 462) | func (o *Buffer) unmarshalType(st reflect.Type, prop *StructProperties, ... constant boolPoolSize (line 586) | boolPoolSize = 16 constant uint32PoolSize (line 587) | uint32PoolSize = 8 constant uint64PoolSize (line 588) | uint64PoolSize = 4 method dec_bool (line 592) | func (o *Buffer) dec_bool(p *Properties, base structPointer) error { method dec_proto3_bool (line 606) | func (o *Buffer) dec_proto3_bool(p *Properties, base structPointer) error { method dec_int32 (line 616) | func (o *Buffer) dec_int32(p *Properties, base structPointer) error { method dec_proto3_int32 (line 625) | func (o *Buffer) dec_proto3_int32(p *Properties, base structPointer) err... method dec_int64 (line 635) | func (o *Buffer) dec_int64(p *Properties, base structPointer) error { method dec_proto3_int64 (line 644) | func (o *Buffer) dec_proto3_int64(p *Properties, base structPointer) err... method dec_string (line 654) | func (o *Buffer) dec_string(p *Properties, base structPointer) error { method dec_proto3_string (line 663) | func (o *Buffer) dec_proto3_string(p *Properties, base structPointer) er... method dec_slice_byte (line 673) | func (o *Buffer) dec_slice_byte(p *Properties, base structPointer) error { method dec_slice_bool (line 683) | func (o *Buffer) dec_slice_bool(p *Properties, base structPointer) error { method dec_slice_packed_bool (line 694) | func (o *Buffer) dec_slice_packed_bool(p *Properties, base structPointer... method dec_slice_int32 (line 721) | func (o *Buffer) dec_slice_int32(p *Properties, base structPointer) error { method dec_slice_packed_int32 (line 731) | func (o *Buffer) dec_slice_packed_int32(p *Properties, base structPointe... method dec_slice_int64 (line 755) | func (o *Buffer) dec_slice_int64(p *Properties, base structPointer) error { method dec_slice_packed_int64 (line 766) | func (o *Buffer) dec_slice_packed_int64(p *Properties, base structPointe... method dec_slice_string (line 790) | func (o *Buffer) dec_slice_string(p *Properties, base structPointer) err... method dec_slice_slice_byte (line 801) | func (o *Buffer) dec_slice_slice_byte(p *Properties, base structPointer)... method dec_new_map (line 812) | func (o *Buffer) dec_new_map(p *Properties, base structPointer) error { method dec_struct_group (line 885) | func (o *Buffer) dec_struct_group(p *Properties, base structPointer) err... method dec_struct_message (line 896) | func (o *Buffer) dec_struct_message(p *Properties, base structPointer) (... method dec_slice_struct_message (line 928) | func (o *Buffer) dec_slice_struct_message(p *Properties, base structPoin... method dec_slice_struct_group (line 933) | func (o *Buffer) dec_slice_struct_group(p *Properties, base structPointe... method dec_slice_struct (line 938) | func (o *Buffer) dec_slice_struct(p *Properties, is_group bool, base str... FILE: vendor/github.com/golang/protobuf/proto/discard.go function DiscardUnknown (line 51) | func DiscardUnknown(m Message) { function discardLegacy (line 55) | func discardLegacy(m Message) { FILE: vendor/github.com/golang/protobuf/proto/encode.go type RequiredNotSetError (line 54) | type RequiredNotSetError struct method Error (line 58) | func (e *RequiredNotSetError) Error() string { constant maxVarintBytes (line 83) | maxVarintBytes = 10 constant maxMarshalSize (line 87) | maxMarshalSize = 1<<31 - 1 function EncodeVarint (line 95) | func EncodeVarint(x uint64) []byte { method EncodeVarint (line 111) | func (p *Buffer) EncodeVarint(x uint64) error { function SizeVarint (line 121) | func SizeVarint(x uint64) int { function sizeVarint (line 125) | func sizeVarint(x uint64) (n int) { method EncodeFixed64 (line 139) | func (p *Buffer) EncodeFixed64(x uint64) error { function sizeFixed64 (line 152) | func sizeFixed64(x uint64) int { method EncodeFixed32 (line 159) | func (p *Buffer) EncodeFixed32(x uint64) error { function sizeFixed32 (line 168) | func sizeFixed32(x uint64) int { method EncodeZigzag64 (line 175) | func (p *Buffer) EncodeZigzag64(x uint64) error { function sizeZigzag64 (line 180) | func sizeZigzag64(x uint64) int { method EncodeZigzag32 (line 187) | func (p *Buffer) EncodeZigzag32(x uint64) error { function sizeZigzag32 (line 192) | func sizeZigzag32(x uint64) int { method EncodeRawBytes (line 199) | func (p *Buffer) EncodeRawBytes(b []byte) error { function sizeRawBytes (line 205) | func sizeRawBytes(b []byte) int { method EncodeStringBytes (line 212) | func (p *Buffer) EncodeStringBytes(s string) error { function sizeStringBytes (line 218) | func sizeStringBytes(s string) int { type Marshaler (line 224) | type Marshaler interface function Marshal (line 230) | func Marshal(pb Message) ([]byte, error) { method EncodeMessage (line 246) | func (p *Buffer) EncodeMessage(pb Message) error { method Marshal (line 261) | func (p *Buffer) Marshal(pb Message) error { function Size (line 288) | func Size(pb Message) (n int) { method enc_bool (line 314) | func (o *Buffer) enc_bool(p *Properties, base structPointer) error { method enc_proto3_bool (line 328) | func (o *Buffer) enc_proto3_bool(p *Properties, base structPointer) error { function size_bool (line 338) | func size_bool(p *Properties, base structPointer) int { function size_proto3_bool (line 346) | func size_proto3_bool(p *Properties, base structPointer) int { method enc_int32 (line 355) | func (o *Buffer) enc_int32(p *Properties, base structPointer) error { method enc_proto3_int32 (line 366) | func (o *Buffer) enc_proto3_int32(p *Properties, base structPointer) err... function size_int32 (line 377) | func size_int32(p *Properties, base structPointer) (n int) { function size_proto3_int32 (line 388) | func size_proto3_int32(p *Properties, base structPointer) (n int) { method enc_uint32 (line 401) | func (o *Buffer) enc_uint32(p *Properties, base structPointer) error { method enc_proto3_uint32 (line 412) | func (o *Buffer) enc_proto3_uint32(p *Properties, base structPointer) er... function size_uint32 (line 423) | func size_uint32(p *Properties, base structPointer) (n int) { function size_proto3_uint32 (line 434) | func size_proto3_uint32(p *Properties, base structPointer) (n int) { method enc_int64 (line 446) | func (o *Buffer) enc_int64(p *Properties, base structPointer) error { method enc_proto3_int64 (line 457) | func (o *Buffer) enc_proto3_int64(p *Properties, base structPointer) err... function size_int64 (line 468) | func size_int64(p *Properties, base structPointer) (n int) { function size_proto3_int64 (line 479) | func size_proto3_int64(p *Properties, base structPointer) (n int) { method enc_string (line 491) | func (o *Buffer) enc_string(p *Properties, base structPointer) error { method enc_proto3_string (line 502) | func (o *Buffer) enc_proto3_string(p *Properties, base structPointer) er... function size_string (line 512) | func size_string(p *Properties, base structPointer) (n int) { function size_proto3_string (line 523) | func size_proto3_string(p *Properties, base structPointer) (n int) { function isNil (line 534) | func isNil(v reflect.Value) bool { method enc_struct_message (line 543) | func (o *Buffer) enc_struct_message(p *Properties, base structPointer) e... function size_struct_message (line 566) | func size_struct_message(p *Properties, base structPointer) int { method enc_struct_group (line 588) | func (o *Buffer) enc_struct_group(p *Properties, base structPointer) err... function size_struct_group (line 604) | func size_struct_group(p *Properties, base structPointer) (n int) { method enc_slice_bool (line 617) | func (o *Buffer) enc_slice_bool(p *Properties, base structPointer) error { function size_slice_bool (line 634) | func size_slice_bool(p *Properties, base structPointer) int { method enc_slice_packed_bool (line 644) | func (o *Buffer) enc_slice_packed_bool(p *Properties, base structPointer... function size_slice_packed_bool (line 662) | func size_slice_packed_bool(p *Properties, base structPointer) (n int) { method enc_slice_byte (line 675) | func (o *Buffer) enc_slice_byte(p *Properties, base structPointer) error { method enc_proto3_slice_byte (line 685) | func (o *Buffer) enc_proto3_slice_byte(p *Properties, base structPointer... function size_slice_byte (line 695) | func size_slice_byte(p *Properties, base structPointer) (n int) { function size_proto3_slice_byte (line 705) | func size_proto3_slice_byte(p *Properties, base structPointer) (n int) { method enc_slice_int32 (line 716) | func (o *Buffer) enc_slice_int32(p *Properties, base structPointer) error { function size_slice_int32 (line 730) | func size_slice_int32(p *Properties, base structPointer) (n int) { method enc_slice_packed_int32 (line 745) | func (o *Buffer) enc_slice_packed_int32(p *Properties, base structPointe... function size_slice_packed_int32 (line 764) | func size_slice_packed_int32(p *Properties, base structPointer) (n int) { method enc_slice_uint32 (line 784) | func (o *Buffer) enc_slice_uint32(p *Properties, base structPointer) err... function size_slice_uint32 (line 798) | func size_slice_uint32(p *Properties, base structPointer) (n int) { method enc_slice_packed_uint32 (line 814) | func (o *Buffer) enc_slice_packed_uint32(p *Properties, base structPoint... function size_slice_packed_uint32 (line 832) | func size_slice_packed_uint32(p *Properties, base structPointer) (n int) { method enc_slice_int64 (line 850) | func (o *Buffer) enc_slice_int64(p *Properties, base structPointer) error { function size_slice_int64 (line 863) | func size_slice_int64(p *Properties, base structPointer) (n int) { method enc_slice_packed_int64 (line 877) | func (o *Buffer) enc_slice_packed_int64(p *Properties, base structPointe... function size_slice_packed_int64 (line 895) | func size_slice_packed_int64(p *Properties, base structPointer) (n int) { method enc_slice_slice_byte (line 913) | func (o *Buffer) enc_slice_slice_byte(p *Properties, base structPointer)... function size_slice_slice_byte (line 926) | func size_slice_slice_byte(p *Properties, base structPointer) (n int) { method enc_slice_string (line 940) | func (o *Buffer) enc_slice_string(p *Properties, base structPointer) err... function size_slice_string (line 950) | func size_slice_string(p *Properties, base structPointer) (n int) { method enc_slice_struct_message (line 961) | func (o *Buffer) enc_slice_struct_message(p *Properties, base structPoin... function size_slice_struct_message (line 996) | func size_slice_struct_message(p *Properties, base structPointer) (n int) { method enc_slice_struct_group (line 1022) | func (o *Buffer) enc_slice_struct_group(p *Properties, base structPointe... function size_slice_struct_group (line 1049) | func size_slice_struct_group(p *Properties, base structPointer) (n int) { method enc_map (line 1067) | func (o *Buffer) enc_map(p *Properties, base structPointer) error { method enc_exts (line 1076) | func (o *Buffer) enc_exts(p *Properties, base structPointer) error { method enc_map_body (line 1093) | func (o *Buffer) enc_map_body(v map[int32]Extension) error { function size_map (line 1115) | func size_map(p *Properties, base structPointer) int { function size_exts (line 1120) | func size_exts(p *Properties, base structPointer) int { method enc_new_map (line 1126) | func (o *Buffer) enc_new_map(p *Properties, base structPointer) error { function size_new_map (line 1172) | func size_new_map(p *Properties, base structPointer) int { function mapEncodeScratch (line 1195) | func mapEncodeScratch(mapType reflect.Type) (keycopy, valcopy reflect.Va... method enc_struct (line 1227) | func (o *Buffer) enc_struct(prop *StructProperties, base structPointer) ... function size_struct (line 1278) | func size_struct(prop *StructProperties, base structPointer) (n int) { method enc_len_struct (line 1304) | func (o *Buffer) enc_len_struct(prop *StructProperties, base structPoint... method enc_len_thing (line 1309) | func (o *Buffer) enc_len_thing(enc func() error, state *errorState) error { type errorState (line 1338) | type errorState struct method shouldContinue (line 1349) | func (s *errorState) shouldContinue(err error, prop *Properties) bool { FILE: vendor/github.com/golang/protobuf/proto/equal.go function Equal (line 72) | func Equal(a, b Message) bool { function equalStruct (line 96) | func equalStruct(v1, v2 reflect.Value) bool { function equalAny (line 158) | func equalAny(v1, v2 reflect.Value, prop *Properties) bool { function equalExtensions (line 245) | func equalExtensions(base reflect.Type, x1, x2 XXX_InternalExtensions) b... function equalExtMap (line 251) | func equalExtMap(base reflect.Type, em1, em2 map[int32]Extension) bool { FILE: vendor/github.com/golang/protobuf/proto/extensions.go type ExtensionRange (line 51) | type ExtensionRange struct type extendableProto (line 57) | type extendableProto interface type extendableProtoV1 (line 66) | type extendableProtoV1 interface type extensionAdapter (line 73) | type extensionAdapter struct method extensionsWrite (line 77) | func (e extensionAdapter) extensionsWrite() map[int32]Extension { method extensionsRead (line 81) | func (e extensionAdapter) extensionsRead() (map[int32]Extension, sync.... type notLocker (line 86) | type notLocker struct method Lock (line 88) | func (n notLocker) Lock() {} method Unlock (line 89) | func (n notLocker) Unlock() {} function extendable (line 94) | func extendable(p interface{}) (extendableProto, bool) { type XXX_InternalExtensions (line 111) | type XXX_InternalExtensions struct method extensionsWrite (line 126) | func (e *XXX_InternalExtensions) extensionsWrite() map[int32]Extension { method extensionsRead (line 139) | func (e *XXX_InternalExtensions) extensionsRead() (map[int32]Extension... type ExtensionDesc (line 151) | type ExtensionDesc struct method repeated (line 160) | func (ed *ExtensionDesc) repeated() bool { type Extension (line 166) | type Extension struct function SetRawExtension (line 181) | func SetRawExtension(base Message, id int32, b []byte) { function isExtensionField (line 191) | func isExtensionField(pb extendableProto, field int32) bool { function checkExtensionTypes (line 201) | func checkExtensionTypes(pb extendableProto, extension *ExtensionDesc) e... type extPropKey (line 218) | type extPropKey struct function extensionProperties (line 230) | func extensionProperties(ed *ExtensionDesc) *Properties { function encodeExtensions (line 254) | func encodeExtensions(e *XXX_InternalExtensions) error { function encodeExtensionsMap (line 265) | func encodeExtensionsMap(m map[int32]Extension) error { function extensionsSize (line 293) | func extensionsSize(e *XXX_InternalExtensions) (n int) { function extensionsMapSize (line 303) | func extensionsMapSize(m map[int32]Extension) (n int) { function HasExtension (line 328) | func HasExtension(pb Message, extension *ExtensionDesc) bool { function ClearExtension (line 345) | func ClearExtension(pb Message, extension *ExtensionDesc) { function GetExtension (line 357) | func GetExtension(pb Message, extension *ExtensionDesc) (interface{}, er... function defaultExtensionValue (line 407) | func defaultExtensionValue(extension *ExtensionDesc) (interface{}, error) { function decodeExtension (line 441) | func decodeExtension(b []byte, extension *ExtensionDesc) (interface{}, e... function GetExtensions (line 475) | func GetExtensions(pb Message, es []*ExtensionDesc) (extensions []interf... function ExtensionDescs (line 496) | func ExtensionDescs(pb Message) ([]*ExtensionDesc, error) { function SetExtension (line 525) | func SetExtension(pb Message, extension *ExtensionDesc, value interface{... function ClearAllExtensions (line 552) | func ClearAllExtensions(pb Message) { function RegisterExtension (line 569) | func RegisterExtension(desc *ExtensionDesc) { function RegisteredExtensions (line 585) | func RegisteredExtensions(pb Message) map[int32]*ExtensionDesc { FILE: vendor/github.com/golang/protobuf/proto/lib.go type Message (line 277) | type Message interface type Stats (line 285) | type Stats struct constant collectStats (line 296) | collectStats = false function GetStats (line 301) | func GetStats() Stats { return stats } type Buffer (line 308) | type Buffer struct method Reset (line 331) | func (p *Buffer) Reset() { method SetBuf (line 338) | func (p *Buffer) SetBuf(s []byte) { method Bytes (line 344) | func (p *Buffer) Bytes() []byte { return p.buf } method DebugPrint (line 446) | func (p *Buffer) DebugPrint(s string, b []byte) { function NewBuffer (line 326) | func NewBuffer(e []byte) *Buffer { function Bool (line 352) | func Bool(v bool) *bool { function Int32 (line 358) | func Int32(v int32) *int32 { function Int (line 365) | func Int(v int) *int32 { function Int64 (line 373) | func Int64(v int64) *int64 { function Float32 (line 379) | func Float32(v float32) *float32 { function Float64 (line 385) | func Float64(v float64) *float64 { function Uint32 (line 391) | func Uint32(v uint32) *uint32 { function Uint64 (line 397) | func Uint64(v uint64) *uint64 { function String (line 403) | func String(v string) *string { function EnumName (line 409) | func EnumName(m map[int32]string, v int32) string { function UnmarshalJSONEnum (line 423) | func UnmarshalJSONEnum(m map[string]int32, data []byte, enumName string)... function SetDefaults (line 551) | func SetDefaults(pb Message) { function setDefaults (line 556) | func setDefaults(v reflect.Value, recur, zeros bool) { type defaultMessage (line 698) | type defaultMessage struct type scalarField (line 703) | type scalarField struct function buildDefaultMessage (line 710) | func buildDefaultMessage(t reflect.Type) (dm defaultMessage) { function fieldDefault (line 739) | func fieldDefault(ft reflect.Type, prop *Properties) (sf *scalarField, n... function mapKeys (line 839) | func mapKeys(vs []reflect.Value) sort.Interface { type mapKeySorter (line 863) | type mapKeySorter struct method Len (line 868) | func (s mapKeySorter) Len() int { return len(s.vs) } method Swap (line 869) | func (s mapKeySorter) Swap(i, j int) { s.vs[i], s.vs[j] = s.vs[j], s.v... method Less (line 870) | func (s mapKeySorter) Less(i, j int) bool { function isProto3Zero (line 875) | func isProto3Zero(v reflect.Value) bool { constant ProtoPackageIsVersion2 (line 893) | ProtoPackageIsVersion2 = true constant ProtoPackageIsVersion1 (line 897) | ProtoPackageIsVersion1 = true FILE: vendor/github.com/golang/protobuf/proto/message_set.go type _MessageSet_Item (line 62) | type _MessageSet_Item struct type messageSet (line 67) | type messageSet struct method find (line 82) | func (ms *messageSet) find(pb Message) *_MessageSet_Item { method Has (line 96) | func (ms *messageSet) Has(pb Message) bool { method Unmarshal (line 103) | func (ms *messageSet) Unmarshal(pb Message) error { method Marshal (line 113) | func (ms *messageSet) Marshal(pb Message) error { method Reset (line 137) | func (ms *messageSet) Reset() { *ms = messageSet{} } method String (line 138) | func (ms *messageSet) String() string { return CompactTextString(ms) } method ProtoMessage (line 139) | func (*messageSet) ProtoMessage() {} type messageTypeIder (line 78) | type messageTypeIder interface function skipVarint (line 143) | func skipVarint(buf []byte) []byte { function MarshalMessageSet (line 152) | func MarshalMessageSet(exts interface{}) ([]byte, error) { function UnmarshalMessageSet (line 193) | func UnmarshalMessageSet(buf []byte, exts interface{}) error { function MarshalMessageSetJSON (line 234) | func MarshalMessageSetJSON(exts interface{}) ([]byte, error) { function UnmarshalMessageSetJSON (line 286) | func UnmarshalMessageSetJSON(buf []byte, exts interface{}) error { type messageSetDesc (line 300) | type messageSetDesc struct function RegisterMessageSetType (line 306) | func RegisterMessageSetType(m Message, fieldNum int32, name string) { FILE: vendor/github.com/golang/protobuf/proto/pointer_reflect.go type structPointer (line 46) | type structPointer struct function toStructPointer (line 52) | func toStructPointer(v reflect.Value) structPointer { function structPointer_IsNil (line 57) | func structPointer_IsNil(p structPointer) bool { function structPointer_Interface (line 62) | func structPointer_Interface(p structPointer, _ reflect.Type) interface{} { type field (line 69) | type field method IsValid (line 80) | func (f field) IsValid() bool { return f != nil } function toField (line 72) | func toField(f *reflect.StructField) field { function structPointer_field (line 83) | func structPointer_field(p structPointer, f field) reflect.Value { function structPointer_ifield (line 98) | func structPointer_ifield(p structPointer, f field) interface{} { function structPointer_Bytes (line 103) | func structPointer_Bytes(p structPointer, f field) *[]byte { function structPointer_BytesSlice (line 108) | func structPointer_BytesSlice(p structPointer, f field) *[][]byte { function structPointer_Bool (line 113) | func structPointer_Bool(p structPointer, f field) **bool { function structPointer_BoolVal (line 118) | func structPointer_BoolVal(p structPointer, f field) *bool { function structPointer_BoolSlice (line 123) | func structPointer_BoolSlice(p structPointer, f field) *[]bool { function structPointer_String (line 128) | func structPointer_String(p structPointer, f field) **string { function structPointer_StringVal (line 133) | func structPointer_StringVal(p structPointer, f field) *string { function structPointer_StringSlice (line 138) | func structPointer_StringSlice(p structPointer, f field) *[]string { function structPointer_Extensions (line 143) | func structPointer_Extensions(p structPointer, f field) *XXX_InternalExt... function structPointer_ExtMap (line 148) | func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { function structPointer_NewAt (line 153) | func structPointer_NewAt(p structPointer, f field, typ reflect.Type) ref... function structPointer_SetStructPointer (line 158) | func structPointer_SetStructPointer(p structPointer, f field, q structPo... function structPointer_GetStructPointer (line 163) | func structPointer_GetStructPointer(p structPointer, f field) structPoin... function structPointer_StructPointerSlice (line 168) | func structPointer_StructPointerSlice(p structPointer, f field) structPo... type structPointerSlice (line 174) | type structPointerSlice struct method Len (line 178) | func (p structPointerSlice) Len() int { return p.v.Le... method Index (line 179) | func (p structPointerSlice) Index(i int) structPointer { return struct... method Append (line 180) | func (p structPointerSlice) Append(q structPointer) { type word32 (line 195) | type word32 struct function word32_IsNil (line 200) | func word32_IsNil(p word32) bool { function word32_Set (line 205) | func word32_Set(p word32, o *Buffer, x uint32) { function word32_Get (line 240) | func word32_Get(p word32) uint32 { function structPointer_Word32 (line 254) | func structPointer_Word32(p structPointer, f field) word32 { type word32Val (line 260) | type word32Val struct function word32Val_Set (line 265) | func word32Val_Set(p word32Val, x uint32) { function word32Val_Get (line 283) | func word32Val_Get(p word32Val) uint32 { function structPointer_Word32Val (line 297) | func structPointer_Word32Val(p structPointer, f field) word32Val { type word32Slice (line 303) | type word32Slice struct method Append (line 307) | func (p word32Slice) Append(x uint32) { method Len (line 326) | func (p word32Slice) Len() int { method Index (line 330) | func (p word32Slice) Index(i int) uint32 { function structPointer_Word32Slice (line 344) | func structPointer_Word32Slice(p structPointer, f field) word32Slice { type word64 (line 349) | type word64 struct function word64_Set (line 353) | func word64_Set(p word64, o *Buffer, x uint64) { function word64_IsNil (line 384) | func word64_IsNil(p word64) bool { function word64_Get (line 388) | func word64_Get(p word64) uint64 { function structPointer_Word64 (line 401) | func structPointer_Word64(p structPointer, f field) word64 { type word64Val (line 406) | type word64Val struct function word64Val_Set (line 410) | func word64Val_Set(p word64Val, o *Buffer, x uint64) { function word64Val_Get (line 425) | func word64Val_Get(p word64Val) uint64 { function structPointer_Word64Val (line 438) | func structPointer_Word64Val(p structPointer, f field) word64Val { type word64Slice (line 442) | type word64Slice struct method Append (line 446) | func (p word64Slice) Append(x uint64) { method Len (line 465) | func (p word64Slice) Len() int { method Index (line 469) | func (p word64Slice) Index(i int) uint64 { function structPointer_Word64Slice (line 482) | func structPointer_Word64Slice(p structPointer, f field) word64Slice { FILE: vendor/github.com/golang/protobuf/proto/pointer_unsafe.go type structPointer (line 53) | type structPointer function toStructPointer (line 56) | func toStructPointer(v reflect.Value) structPointer { function structPointer_IsNil (line 61) | func structPointer_IsNil(p structPointer) bool { function structPointer_Interface (line 67) | func structPointer_Interface(p structPointer, t reflect.Type) interface{} { type field (line 73) | type field method IsValid (line 84) | func (f field) IsValid() bool { function toField (line 76) | func toField(f *reflect.StructField) field { constant invalidField (line 81) | invalidField = ^field(0) function structPointer_Bytes (line 89) | func structPointer_Bytes(p structPointer, f field) *[]byte { function structPointer_BytesSlice (line 94) | func structPointer_BytesSlice(p structPointer, f field) *[][]byte { function structPointer_Bool (line 99) | func structPointer_Bool(p structPointer, f field) **bool { function structPointer_BoolVal (line 104) | func structPointer_BoolVal(p structPointer, f field) *bool { function structPointer_BoolSlice (line 109) | func structPointer_BoolSlice(p structPointer, f field) *[]bool { function structPointer_String (line 114) | func structPointer_String(p structPointer, f field) **string { function structPointer_StringVal (line 119) | func structPointer_StringVal(p structPointer, f field) *string { function structPointer_StringSlice (line 124) | func structPointer_StringSlice(p structPointer, f field) *[]string { function structPointer_Extensions (line 129) | func structPointer_Extensions(p structPointer, f field) *XXX_InternalExt... function structPointer_ExtMap (line 133) | func structPointer_ExtMap(p structPointer, f field) *map[int32]Extension { function structPointer_NewAt (line 138) | func structPointer_NewAt(p structPointer, f field, typ reflect.Type) ref... function structPointer_SetStructPointer (line 143) | func structPointer_SetStructPointer(p structPointer, f field, q structPo... function structPointer_GetStructPointer (line 148) | func structPointer_GetStructPointer(p structPointer, f field) structPoin... function structPointer_StructPointerSlice (line 153) | func structPointer_StructPointerSlice(p structPointer, f field) *structP... type structPointerSlice (line 158) | type structPointerSlice method Len (line 160) | func (v *structPointerSlice) Len() int { return len(*... method Index (line 161) | func (v *structPointerSlice) Index(i int) structPointer { return (*v)[... method Append (line 162) | func (v *structPointerSlice) Append(p structPointer) { *v = append(... type word32 (line 165) | type word32 function word32_IsNil (line 168) | func word32_IsNil(p word32) bool { function word32_Set (line 173) | func word32_Set(p word32, o *Buffer, x uint32) { function word32_Get (line 183) | func word32_Get(p word32) uint32 { function structPointer_Word32 (line 188) | func structPointer_Word32(p structPointer, f field) word32 { type word32Val (line 193) | type word32Val function word32Val_Set (line 196) | func word32Val_Set(p word32Val, x uint32) { function word32Val_Get (line 201) | func word32Val_Get(p word32Val) uint32 { function structPointer_Word32Val (line 206) | func structPointer_Word32Val(p structPointer, f field) word32Val { type word32Slice (line 211) | type word32Slice method Append (line 213) | func (v *word32Slice) Append(x uint32) { *v = append(*v, x) } method Len (line 214) | func (v *word32Slice) Len() int { return len(*v) } method Index (line 215) | func (v *word32Slice) Index(i int) uint32 { return (*v)[i] } function structPointer_Word32Slice (line 218) | func structPointer_Word32Slice(p structPointer, f field) *word32Slice { type word64 (line 223) | type word64 function word64_Set (line 225) | func word64_Set(p word64, o *Buffer, x uint64) { function word64_IsNil (line 234) | func word64_IsNil(p word64) bool { function word64_Get (line 238) | func word64_Get(p word64) uint64 { function structPointer_Word64 (line 242) | func structPointer_Word64(p structPointer, f field) word64 { type word64Val (line 247) | type word64Val function word64Val_Set (line 249) | func word64Val_Set(p word64Val, o *Buffer, x uint64) { function word64Val_Get (line 253) | func word64Val_Get(p word64Val) uint64 { function structPointer_Word64Val (line 257) | func structPointer_Word64Val(p structPointer, f field) word64Val { type word64Slice (line 262) | type word64Slice method Append (line 264) | func (v *word64Slice) Append(x uint64) { *v = append(*v, x) } method Len (line 265) | func (v *word64Slice) Len() int { return len(*v) } method Index (line 266) | func (v *word64Slice) Index(i int) uint64 { return (*v)[i] } function structPointer_Word64Slice (line 268) | func structPointer_Word64Slice(p structPointer, f field) *word64Slice { FILE: vendor/github.com/golang/protobuf/proto/properties.go constant debug (line 49) | debug bool = false constant WireVarint (line 53) | WireVarint = 0 constant WireFixed64 (line 54) | WireFixed64 = 1 constant WireBytes (line 55) | WireBytes = 2 constant WireStartGroup (line 56) | WireStartGroup = 3 constant WireEndGroup (line 57) | WireEndGroup = 4 constant WireFixed32 (line 58) | WireFixed32 = 5 constant startSize (line 61) | startSize = 10 type encoder (line 66) | type encoder type valueEncoder (line 69) | type valueEncoder type sizer (line 74) | type sizer type valueSizer (line 78) | type valueSizer type decoder (line 83) | type decoder type valueDecoder (line 86) | type valueDecoder type oneofMarshaler (line 89) | type oneofMarshaler type oneofUnmarshaler (line 92) | type oneofUnmarshaler type oneofSizer (line 95) | type oneofSizer type tagMap (line 100) | type tagMap struct method get (line 109) | func (p *tagMap) get(t int) (int, bool) { method put (line 121) | func (p *tagMap) put(t int, fi int) { constant tagMapFastLimit (line 107) | tagMapFastLimit = 1024 type StructProperties (line 137) | type StructProperties struct method Len (line 166) | func (sp *StructProperties) Len() int { return len(sp.order) } method Less (line 167) | func (sp *StructProperties) Less(i, j int) bool { method Swap (line 170) | func (sp *StructProperties) Swap(i, j int) { sp.order[i], sp.order[j] ... type OneofProperties (line 157) | type OneofProperties struct type Properties (line 173) | type Properties struct method String (line 217) | func (p *Properties) String() string { method Parse (line 253) | func (p *Properties) Parse(s string) { method setEncAndDec (line 342) | func (p *Properties) setEncAndDec(typ reflect.Type, f *reflect.StructF... method Init (line 616) | func (p *Properties) Init(typ reflect.Type, name, tag string, f *refle... method init (line 620) | func (p *Properties) init(typ reflect.Type, name, tag string, f *refle... function logNoSliceEnc (line 335) | func logNoSliceEnc(t1, t2 reflect.Type) { function isMarshaler (line 594) | func isMarshaler(t reflect.Type) bool { function isUnmarshaler (line 605) | func isUnmarshaler(t reflect.Type) bool { function GetProperties (line 641) | func GetProperties(t reflect.Type) *StructProperties { function getPropertiesLocked (line 665) | func getPropertiesLocked(t reflect.Type) *StructProperties { function propByIndex (line 783) | func propByIndex(t reflect.Type, x []int) *Properties { function getbase (line 793) | func getbase(pb Message) (t reflect.Type, b structPointer, err error) { function RegisterEnum (line 813) | func RegisterEnum(typeName string, unusedNameMap map[int32]string, value... function EnumValueMap (line 822) | func EnumValueMap(enumType string) map[string]int32 { function RegisterType (line 835) | func RegisterType(x Message, name string) { function MessageName (line 847) | func MessageName(x Message) string { function MessageType (line 858) | func MessageType(name string) reflect.Type { return protoTypes[name] } function RegisterFile (line 867) | func RegisterFile(filename string, fileDescriptor []byte) { function FileDescriptor (line 872) | func FileDescriptor(filename string) []byte { return protoFiles[filename] } FILE: vendor/github.com/golang/protobuf/proto/text.go type writer (line 65) | type writer interface type textWriter (line 71) | type textWriter struct method WriteString (line 78) | func (w *textWriter) WriteString(s string) (n int, err error) { method Write (line 92) | func (w *textWriter) Write(p []byte) (n int, err error) { method WriteByte (line 141) | func (w *textWriter) WriteByte(c byte) error { method indent (line 153) | func (w *textWriter) indent() { w.ind++ } method unindent (line 155) | func (w *textWriter) unindent() { method writeIndent (line 763) | func (w *textWriter) writeIndent() { function writeName (line 163) | func writeName(w *textWriter, props *Properties) error { type raw (line 174) | type raw interface function requiresQuotes (line 178) | func requiresQuotes(u string) bool { function isAny (line 198) | func isAny(sv reflect.Value) bool { function writeRaw (line 468) | func writeRaw(w *textWriter, b []byte) error { function isprint (line 561) | func isprint(c byte) bool { function writeString (line 570) | func writeString(w *textWriter, s string) error { function writeUnknownStruct (line 606) | func writeUnknownStruct(w *textWriter, data []byte) (err error) { function writeUnknownInt (line 673) | func writeUnknownInt(w *textWriter, x uint64, err error) error { type int32Slice (line 682) | type int32Slice method Len (line 684) | func (s int32Slice) Len() int { return len(s) } method Less (line 685) | func (s int32Slice) Less(i, j int) bool { return s[i] < s[j] } method Swap (line 686) | func (s int32Slice) Swap(i, j int) { s[i], s[j] = s[j], s[i] } type TextMarshaler (line 780) | type TextMarshaler struct method writeProto3Any (line 213) | func (tm *TextMarshaler) writeProto3Any(w *textWriter, sv reflect.Valu... method writeStruct (line 259) | func (tm *TextMarshaler) writeStruct(w *textWriter, sv reflect.Value) ... method writeAny (line 489) | func (tm *TextMarshaler) writeAny(w *textWriter, v reflect.Value, prop... method writeExtensions (line 690) | func (tm *TextMarshaler) writeExtensions(w *textWriter, pv reflect.Val... method writeExtension (line 745) | func (tm *TextMarshaler) writeExtension(w *textWriter, name string, pb... method Marshal (line 787) | func (tm *TextMarshaler) Marshal(w io.Writer, pb Message) error { method Text (line 830) | func (tm *TextMarshaler) Text(pb Message) string { function MarshalText (line 845) | func MarshalText(w io.Writer, pb Message) error { return defaultTextMars... function MarshalTextString (line 848) | func MarshalTextString(pb Message) string { return defaultTextMarshaler.... function CompactText (line 851) | func CompactText(w io.Writer, pb Message) error { return compactTextMars... function CompactTextString (line 854) | func CompactTextString(pb Message) string { return compactTextMarshaler.... FILE: vendor/github.com/golang/protobuf/proto/text_parser.go constant anyRepeatedlyUnpacked (line 48) | anyRepeatedlyUnpacked = "Any message unpacked multiple times, or %q alre... type ParseError (line 50) | type ParseError struct method Error (line 56) | func (p *ParseError) Error() string { type token (line 64) | type token struct method String (line 72) | func (t *token) String() string { type textParser (line 79) | type textParser struct method errorf (line 95) | func (p *textParser) errorf(format string, a ...interface{}) *ParseErr... method skipWhitespace (line 133) | func (p *textParser) skipWhitespace() { method advance (line 157) | func (p *textParser) advance() { method back (line 336) | func (p *textParser) back() { p.backed = true } method next (line 339) | func (p *textParser) next() *token { method consumeToken (line 369) | func (p *textParser) consumeToken(s string) error { method missingRequiredFieldError (line 382) | func (p *textParser) missingRequiredFieldError(sv reflect.Value) *Requ... method checkForColon (line 409) | func (p *textParser) checkForColon(props *Properties, typ reflect.Type... method readStruct (line 449) | func (p *textParser) readStruct(sv reflect.Value, terminator string) e... method consumeExtName (line 708) | func (p *textParser) consumeExtName() (string, error) { method consumeOptionalSeparator (line 737) | func (p *textParser) consumeOptionalSeparator() error { method readAny (line 748) | func (p *textParser) readAny(v reflect.Value, props *Properties) error { function newTextParser (line 87) | func newTextParser(s string) *textParser { function isIdentOrNumberChar (line 103) | func isIdentOrNumberChar(c byte) bool { function isWhitespace (line 117) | func isWhitespace(c byte) bool { function isQuote (line 125) | func isQuote(c byte) bool { function unquoteC (line 212) | func unquoteC(s string, quote rune) (string, error) { function unescape (line 255) | func unescape(s string) (ch string, tail string, err error) { function unhex (line 322) | func unhex(b byte) (v byte, ok bool) { function structFieldByName (line 399) | func structFieldByName(sprops *StructProperties, name string) (int, *Pro... function UnmarshalText (line 884) | func UnmarshalText(s string, pb Message) error { FILE: vendor/github.com/google/go-cmp/cmp/compare.go function Equal (line 84) | func Equal(x, y interface{}, opts ...Option) bool { function Diff (line 97) | func Diff(x, y interface{}, opts ...Option) string { type state (line 108) | type state struct method processOption (line 132) | func (s *state) processOption(opt Option) { method statelessCompare (line 167) | func (s *state) statelessCompare(vx, vy reflect.Value) diff.Result { method compareAny (line 182) | func (s *state) compareAny(vx, vy reflect.Value) { method tryExporting (line 279) | func (s *state) tryExporting(vx, vy reflect.Value) (reflect.Value, ref... method tryOptions (line 296) | func (s *state) tryOptions(vx, vy reflect.Value, t reflect.Type) bool { method tryMethod (line 313) | func (s *state) tryMethod(vx, vy reflect.Value, t reflect.Type) bool { method callTRFunc (line 325) | func (s *state) callTRFunc(f, v reflect.Value) reflect.Value { method callTTBFunc (line 349) | func (s *state) callTTBFunc(f, x, y reflect.Value) bool { method compareArray (line 391) | func (s *state) compareArray(vx, vy reflect.Value, t reflect.Type) { method compareMap (line 443) | func (s *state) compareMap(vx, vy reflect.Value, t reflect.Type) { method compareStruct (line 475) | func (s *state) compareStruct(vx, vy reflect.Value, t reflect.Type) { method report (line 509) | func (s *state) report(eq bool, vx, vy reflect.Value) { function newState (line 124) | func newState(opts []Option) *state { function detectRaces (line 370) | func detectRaces(c chan<- reflect.Value, f reflect.Value, vs ...reflect.... function sanitizeValue (line 382) | func sanitizeValue(v reflect.Value, t reflect.Type) reflect.Value { type dynChecker (line 523) | type dynChecker struct method Next (line 533) | func (dc *dynChecker) Next() bool { function makeAddressable (line 546) | func makeAddressable(v reflect.Value) reflect.Value { FILE: vendor/github.com/google/go-cmp/cmp/internal/diff/debug_disable.go type debugger (line 11) | type debugger struct method Begin (line 13) | func (debugger) Begin(_, _ int, f EqualFunc, _, _ *EditScript) EqualFu... method Update (line 16) | func (debugger) Update() {} method Finish (line 17) | func (debugger) Finish() {} FILE: vendor/github.com/google/go-cmp/cmp/internal/diff/debug_enable.go constant updateDelay (line 56) | updateDelay = 100 * time.Millisecond constant finishDelay (line 57) | finishDelay = 500 * time.Millisecond constant ansiTerminal (line 58) | ansiTerminal = true type debugger (line 63) | type debugger struct method Begin (line 71) | func (dbg *debugger) Begin(nx, ny int, f EqualFunc, p1, p2 *EditScript... method Update (line 99) | func (dbg *debugger) Update() { method Finish (line 103) | func (dbg *debugger) Finish() { method String (line 108) | func (dbg *debugger) String() string { method print (line 116) | func (dbg *debugger) print(d time.Duration) { FILE: vendor/github.com/google/go-cmp/cmp/internal/diff/diff.go type EditType (line 16) | type EditType constant Identity (line 20) | Identity EditType = iota constant UniqueX (line 22) | UniqueX constant UniqueY (line 24) | UniqueY constant Modified (line 26) | Modified type EditScript (line 30) | type EditScript method String (line 35) | func (es EditScript) String() string { method stats (line 55) | func (es EditScript) stats() (s struct{ NI, NX, NY, NM int }) { method Dist (line 75) | func (es EditScript) Dist() int { return len(es) - es.stats().NI } method LenX (line 78) | func (es EditScript) LenX() int { return len(es) - es.stats().NY } method LenY (line 81) | func (es EditScript) LenY() int { return len(es) - es.stats().NX } type EqualFunc (line 85) | type EqualFunc type Result (line 90) | type Result struct method Equal (line 94) | func (r Result) Equal() bool { return r.NDiff == 0 } method Similar (line 101) | func (r Result) Similar() bool { function Difference (line 120) | func Difference(nx, ny int, f EqualFunc) (es EditScript) { type path (line 287) | type path struct method connect (line 295) | func (p *path) connect(dst point, f EqualFunc) { method append (line 339) | func (p *path) append(t EditType) { type point (line 352) | type point struct method add (line 354) | func (p *point) add(dx, dy int) { p.X += dx; p.Y += dy } function zigzag (line 358) | func zigzag(x int) int { FILE: vendor/github.com/google/go-cmp/cmp/internal/function/func.go type funcType (line 10) | type funcType constant _ (line 13) | _ funcType = iota constant ttbFunc (line 15) | ttbFunc constant tibFunc (line 16) | tibFunc constant trFunc (line 17) | trFunc constant Equal (line 19) | Equal = ttbFunc constant EqualAssignable (line 20) | EqualAssignable = tibFunc constant Transformer (line 21) | Transformer = trFunc constant ValueFilter (line 22) | ValueFilter = ttbFunc constant Less (line 23) | Less = ttbFunc function IsType (line 29) | func IsType(t reflect.Type, ft funcType) bool { FILE: vendor/github.com/google/go-cmp/cmp/internal/value/format.go function Format (line 25) | func Format(v reflect.Value, conf FormatConfig) string { type FormatConfig (line 32) | type FormatConfig struct function formatAny (line 40) | func formatAny(v reflect.Value, conf FormatConfig, visited map[uintptr]b... function formatString (line 171) | func formatString(s string) string { function formatPrimitive (line 190) | func formatPrimitive(t reflect.Type, v interface{}, conf FormatConfig) s... function formatPointer (line 197) | func formatPointer(v reflect.Value, conf FormatConfig) string { function formatHex (line 209) | func formatHex(u uint64) string { function insertPointer (line 233) | func insertPointer(m map[uintptr]bool, p uintptr) map[uintptr]bool { function isZero (line 243) | func isZero(v reflect.Value) bool { FILE: vendor/github.com/google/go-cmp/cmp/internal/value/sort.go function SortKeys (line 16) | func SortKeys(vs []reflect.Value) []reflect.Value { type valueSorter (line 35) | type valueSorter method Len (line 37) | func (vs valueSorter) Len() int { return len(vs) } method Less (line 38) | func (vs valueSorter) Less(i, j int) bool { return isLess(vs[i], vs[j]) } method Swap (line 39) | func (vs valueSorter) Swap(i, j int) { vs[i], vs[j] = vs[j], vs[i] } function isLess (line 43) | func isLess(x, y reflect.Value) bool { FILE: vendor/github.com/google/go-cmp/cmp/options.go type Option (line 25) | type Option interface type applicableOption (line 38) | type applicableOption interface type coreOption (line 48) | type coreOption interface type core (line 53) | type core struct method isCore (line 55) | func (core) isCore() {} type Options (line 64) | type Options method filter (line 66) | func (opts Options) filter(s *state, vx, vy reflect.Value, t reflect.T... method apply (line 87) | func (opts Options) apply(s *state, _, _ reflect.Value) { method String (line 98) | func (opts Options) String() string { function FilterPath (line 111) | func FilterPath(f func(Path) bool, opt Option) Option { type pathFilter (line 121) | type pathFilter struct method filter (line 127) | func (f pathFilter) filter(s *state, vx, vy reflect.Value, t reflect.T... method String (line 134) | func (f pathFilter) String() string { function FilterValues (line 152) | func FilterValues(f interface{}, opt Option) Option { type valuesFilter (line 167) | type valuesFilter struct method filter (line 174) | func (f valuesFilter) filter(s *state, vx, vy reflect.Value, t reflect... method String (line 184) | func (f valuesFilter) String() string { function Ignore (line 192) | func Ignore() Option { return ignore{} } type ignore (line 194) | type ignore struct method isFiltered (line 196) | func (ignore) isFiltered() bool ... method filter (line 197) | func (ignore) filter(_ *state, _, _ reflect.Value, _ reflect.Type) app... method apply (line 198) | func (ignore) apply(_ *state, _, _ reflect.Value) ... method String (line 199) | func (ignore) String() string ... type invalid (line 203) | type invalid struct method filter (line 205) | func (invalid) filter(_ *state, _, _ reflect.Value, _ reflect.Type) ap... method apply (line 206) | func (invalid) apply(s *state, _, _ reflect.Value) { function Transformer (line 226) | func Transformer(name string, f interface{}) Option { type transformer (line 244) | type transformer struct method isFiltered (line 251) | func (tr *transformer) isFiltered() bool { return tr.typ != nil } method filter (line 253) | func (tr *transformer) filter(s *state, _, _ reflect.Value, t reflect.... method apply (line 267) | func (tr *transformer) apply(s *state, vx, vy reflect.Value) { method String (line 278) | func (tr transformer) String() string { function Comparer (line 294) | func Comparer(f interface{}) Option { type comparer (line 306) | type comparer struct method isFiltered (line 312) | func (cm *comparer) isFiltered() bool { return cm.typ != nil } method filter (line 314) | func (cm *comparer) filter(_ *state, _, _ reflect.Value, t reflect.Typ... method apply (line 321) | func (cm *comparer) apply(s *state, vx, vy reflect.Value) { method String (line 326) | func (cm comparer) String() string { function AllowUnexported (line 356) | func AllowUnexported(types ...interface{}) Option { type visibleStructs (line 371) | type visibleStructs method filter (line 373) | func (visibleStructs) filter(_ *state, _, _ reflect.Value, _ reflect.T... type reporter (line 378) | type reporter interface function normalizeOption (line 399) | func normalizeOption(src Option) Option { function flattenOptions (line 412) | func flattenOptions(dst, src Options) Options { function getFuncName (line 430) | func getFuncName(p uintptr) string { FILE: vendor/github.com/google/go-cmp/cmp/path.go type Path (line 25) | type Path method push (line 91) | func (pa *Path) push(s PathStep) { method pop (line 95) | func (pa *Path) pop() { method Last (line 101) | func (pa Path) Last() PathStep { method Index (line 109) | func (pa Path) Index(i int) PathStep { method String (line 124) | func (pa Path) String() string { method GoString (line 138) | func (pa Path) GoString() string { type PathStep (line 30) | type PathStep interface type SliceIndex (line 37) | type SliceIndex interface type MapIndex (line 55) | type MapIndex interface type TypeAssertion (line 61) | type TypeAssertion interface type StructField (line 66) | type StructField interface type Indirect (line 73) | type Indirect interface type Transform (line 78) | type Transform interface type pathStep (line 187) | type pathStep struct method Type (line 223) | func (ps pathStep) Type() reflect.Type { return ps.typ } method String (line 224) | func (ps pathStep) String() string { method isPathStep (line 270) | func (pathStep) isPathStep() {} type sliceIndex (line 191) | type sliceIndex struct method String (line 235) | func (si sliceIndex) String() string { method Key (line 256) | func (si sliceIndex) Key() int { method SplitKeys (line 262) | func (si sliceIndex) SplitKeys() (x, y int) { return si.xkey, si.ykey } method isSliceIndex (line 271) | func (sliceIndex) isSliceIndex() {} type mapIndex (line 195) | type mapIndex struct method String (line 250) | func (mi mapIndex) String() string { return fmt.Sprintf("[%#v]", ... method Key (line 263) | func (mi mapIndex) Key() reflect.Value { return mi.key } method isMapIndex (line 272) | func (mapIndex) isMapIndex() {} type typeAssertion (line 199) | type typeAssertion struct method String (line 251) | func (ta typeAssertion) String() string { return fmt.Sprintf(".(%v)", ... method isTypeAssertion (line 273) | func (typeAssertion) isTypeAssertion() {} type structField (line 202) | type structField struct method String (line 252) | func (sf structField) String() string { return fmt.Sprintf(".%s", sf... method Name (line 264) | func (sf structField) Name() string { return sf.name } method Index (line 265) | func (sf structField) Index() int { return sf.idx } method isStructField (line 274) | func (structField) isStructField() {} type indirect (line 214) | type indirect struct method String (line 253) | func (in indirect) String() string { return "*" } method isIndirect (line 275) | func (indirect) isIndirect() {} type transform (line 217) | type transform struct method String (line 254) | func (tf transform) String() string { return fmt.Sprintf("%s()", t... method Name (line 266) | func (tf transform) Name() string { return tf.trans.name } method Func (line 267) | func (tf transform) Func() reflect.Value { return tf.trans.fnc } method Option (line 268) | func (tf transform) Option() Option { return tf.trans } method isTransform (line 276) | func (transform) isTransform() {} function isExported (line 295) | func isExported(id string) bool { function isValid (line 302) | func isValid(id string) bool { FILE: vendor/github.com/google/go-cmp/cmp/reporter.go type defaultReporter (line 15) | type defaultReporter struct method Report (line 25) | func (r *defaultReporter) Report(x, y reflect.Value, eq bool, p Path) { method String (line 47) | func (r *defaultReporter) String() string { FILE: vendor/github.com/google/go-cmp/cmp/unsafe_panic.go constant supportAllowUnexported (line 11) | supportAllowUnexported = false function unsafeRetrieveField (line 13) | func unsafeRetrieveField(reflect.Value, reflect.StructField) reflect.Val... FILE: vendor/github.com/google/go-cmp/cmp/unsafe_reflect.go constant supportAllowUnexported (line 14) | supportAllowUnexported = true function unsafeRetrieveField (line 21) | func unsafeRetrieveField(v reflect.Value, f reflect.StructField) reflect... FILE: vendor/github.com/jmank88/nuts/key.go function KeyLen (line 5) | func KeyLen(x uint64) int { type Key (line 29) | type Key method Put (line 33) | func (c Key) Put(x uint64) { FILE: vendor/github.com/jmank88/nuts/paths.go function SeekPathMatch (line 49) | func SeekPathMatch(c *bolt.Cursor, path []byte) ([]byte, []byte) { function SeekPathConflict (line 150) | func SeekPathConflict(c *bolt.Cursor, path []byte) ([]byte, []byte) { FILE: vendor/github.com/jmank88/nuts/types.go type Buckets (line 10) | type Buckets interface FILE: vendor/github.com/nightlyone/lockfile/lockfile.go type Lockfile (line 19) | type Lockfile method GetOwner (line 52) | func (l Lockfile) GetOwner() (*os.Process, error) { method TryLock (line 86) | func (l Lockfile) TryLock() error { method Unlock (line 159) | func (l Lockfile) Unlock() error { type TemporaryError (line 22) | type TemporaryError method Error (line 24) | func (t TemporaryError) Error() string { return string(t) } method Temporary (line 31) | func (t TemporaryError) Temporary() bool { return true } function New (line 44) | func New(path string) (Lockfile, error) { function writePidLine (line 182) | func writePidLine(w io.Writer, pid int) error { function scanPidLine (line 187) | func scanPidLine(content []byte) (int, error) { FILE: vendor/github.com/nightlyone/lockfile/lockfile_unix.go function isRunning (line 10) | func isRunning(pid int) (bool, error) { FILE: vendor/github.com/nightlyone/lockfile/lockfile_windows.go constant error_invalid_parameter (line 9) | error_invalid_parameter = 87 constant code_still_active (line 10) | code_still_active = 259 function isRunning (line 13) | func isRunning(pid int) (bool, error) { FILE: vendor/github.com/pelletier/go-toml/fuzz.go function Fuzz (line 5) | func Fuzz(data []byte) int { FILE: vendor/github.com/pelletier/go-toml/keysparsing.go function parseKey (line 15) | func parseKey(key string) ([]string, error) { function isValidBareChar (line 83) | func isValidBareChar(r rune) bool { FILE: vendor/github.com/pelletier/go-toml/lexer.go type tomlLexStateFn (line 20) | type tomlLexStateFn type tomlLexer (line 23) | type tomlLexer struct method read (line 38) | func (l *tomlLexer) read() rune { method next (line 50) | func (l *tomlLexer) next() rune { method ignore (line 59) | func (l *tomlLexer) ignore() { method skip (line 65) | func (l *tomlLexer) skip() { method fastForward (line 70) | func (l *tomlLexer) fastForward(n int) { method emitWithValue (line 76) | func (l *tomlLexer) emitWithValue(t tokenType, value string) { method emit (line 85) | func (l *tomlLexer) emit(t tokenType) { method peek (line 89) | func (l *tomlLexer) peek() rune { method peekString (line 96) | func (l *tomlLexer) peekString(size int) string { method follow (line 105) | func (l *tomlLexer) follow(next string) bool { method errorf (line 111) | func (l *tomlLexer) errorf(format string, args ...interface{}) tomlLex... method lexVoid (line 122) | func (l *tomlLexer) lexVoid() tomlLexStateFn { method lexRvalue (line 161) | func (l *tomlLexer) lexRvalue() tomlLexStateFn { method lexLeftCurlyBrace (line 247) | func (l *tomlLexer) lexLeftCurlyBrace() tomlLexStateFn { method lexRightCurlyBrace (line 253) | func (l *tomlLexer) lexRightCurlyBrace() tomlLexStateFn { method lexDate (line 259) | func (l *tomlLexer) lexDate() tomlLexStateFn { method lexTrue (line 264) | func (l *tomlLexer) lexTrue() tomlLexStateFn { method lexFalse (line 270) | func (l *tomlLexer) lexFalse() tomlLexStateFn { method lexInf (line 276) | func (l *tomlLexer) lexInf() tomlLexStateFn { method lexNan (line 282) | func (l *tomlLexer) lexNan() tomlLexStateFn { method lexEqual (line 288) | func (l *tomlLexer) lexEqual() tomlLexStateFn { method lexComma (line 294) | func (l *tomlLexer) lexComma() tomlLexStateFn { method lexKey (line 302) | func (l *tomlLexer) lexKey() tomlLexStateFn { method lexComment (line 338) | func (l *tomlLexer) lexComment(previousState tomlLexStateFn) tomlLexSt... method lexLeftBracket (line 351) | func (l *tomlLexer) lexLeftBracket() tomlLexStateFn { method lexLiteralStringAsString (line 357) | func (l *tomlLexer) lexLiteralStringAsString(terminator string, discar... method lexLiteralString (line 385) | func (l *tomlLexer) lexLiteralString() tomlLexStateFn { method lexStringAsString (line 412) | func (l *tomlLexer) lexStringAsString(terminator string, discardLeadin... method lexString (line 520) | func (l *tomlLexer) lexString() tomlLexStateFn { method lexTableKey (line 547) | func (l *tomlLexer) lexTableKey() tomlLexStateFn { method lexInsideTableArrayKey (line 562) | func (l *tomlLexer) lexInsideTableArrayKey() tomlLexStateFn { method lexInsideTableKey (line 586) | func (l *tomlLexer) lexInsideTableKey() tomlLexStateFn { method lexRightBracket (line 605) | func (l *tomlLexer) lexRightBracket() tomlLexStateFn { method lexNumber (line 628) | func (l *tomlLexer) lexNumber() tomlLexStateFn { method run (line 727) | func (l *tomlLexer) run() { type validRuneFn (line 611) | type validRuneFn function isValidHexRune (line 613) | func isValidHexRune(r rune) bool { function isValidOctalRune (line 620) | func isValidOctalRune(r rune) bool { function isValidBinaryRune (line 624) | func isValidBinaryRune(r rune) bool { function init (line 733) | func init() { function lexToml (line 738) | func lexToml(inputBytes []byte) []token { FILE: vendor/github.com/pelletier/go-toml/marshal.go constant tagKeyMultiline (line 14) | tagKeyMultiline = "multiline" type tomlOpts (line 16) | type tomlOpts struct type encOpts (line 25) | type encOpts struct function isPrimitive (line 38) | func isPrimitive(mtype reflect.Type) bool { function isTreeSlice (line 60) | func isTreeSlice(mtype reflect.Type) bool { function isOtherSlice (line 70) | func isOtherSlice(mtype reflect.Type) bool { function isTree (line 82) | func isTree(mtype reflect.Type) bool { function isCustomMarshaler (line 93) | func isCustomMarshaler(mtype reflect.Type) bool { function callCustomMarshaler (line 97) | func callCustomMarshaler(mval reflect.Value) ([]byte, error) { type Marshaler (line 103) | type Marshaler interface function Marshal (line 140) | func Marshal(v interface{}) ([]byte, error) { type Encoder (line 145) | type Encoder struct method Encode (line 161) | func (e *Encoder) Encode(v interface{}) error { method QuoteMapKeys (line 176) | func (e *Encoder) QuoteMapKeys(v bool) *Encoder { method ArraysWithOneElementPerLine (line 195) | func (e *Encoder) ArraysWithOneElementPerLine(v bool) *Encoder { method marshal (line 200) | func (e *Encoder) marshal(v interface{}) ([]byte, error) { method valueToTree (line 221) | func (e *Encoder) valueToTree(mtype reflect.Type, mval reflect.Value) ... method valueToTreeSlice (line 266) | func (e *Encoder) valueToTreeSlice(mtype reflect.Type, mval reflect.Va... method valueToOtherSlice (line 279) | func (e *Encoder) valueToOtherSlice(mtype reflect.Type, mval reflect.V... method valueToToml (line 292) | func (e *Encoder) valueToToml(mtype reflect.Type, mval reflect.Value) ... function NewEncoder (line 151) | func NewEncoder(w io.Writer) *Encoder { method Unmarshal (line 328) | func (t *Tree) Unmarshal(v interface{}) error { method Marshal (line 335) | func (t *Tree) Marshal() ([]byte, error) { function Unmarshal (line 352) | func Unmarshal(data []byte, v interface{}) error { type Decoder (line 361) | type Decoder struct method Decode (line 379) | func (d *Decoder) Decode(v interface{}) error { method unmarshal (line 388) | func (d *Decoder) unmarshal(v interface{}) error { method valueFromTree (line 403) | func (d *Decoder) valueFromTree(mtype reflect.Type, tval *Tree) (refle... method valueFromTreeSlice (line 448) | func (d *Decoder) valueFromTreeSlice(mtype reflect.Type, tval []*Tree)... method valueFromOtherSlice (line 461) | func (d *Decoder) valueFromOtherSlice(mtype reflect.Type, tval []inter... method valueFromToml (line 474) | func (d *Decoder) valueFromToml(mtype reflect.Type, tval interface{}) ... method unwrapPointer (line 552) | func (d *Decoder) unwrapPointer(mtype reflect.Type, tval interface{}) ... function NewDecoder (line 368) | func NewDecoder(r io.Reader) *Decoder { function tomlOptions (line 562) | func tomlOptions(vf reflect.StructField) tomlOpts { function isZero (line 591) | func isZero(val reflect.Value) bool { function formatError (line 604) | func formatError(err error, pos Position) error { FILE: vendor/github.com/pelletier/go-toml/parser.go type tomlParser (line 16) | type tomlParser struct method raiseError (line 27) | func (p *tomlParser) raiseError(tok *token, msg string, args ...interf... method run (line 31) | func (p *tomlParser) run() { method peek (line 37) | func (p *tomlParser) peek() *token { method assume (line 44) | func (p *tomlParser) assume(typ tokenType) { method getToken (line 54) | func (p *tomlParser) getToken() *token { method parseStart (line 63) | func (p *tomlParser) parseStart() tomlParserStateFn { method parseGroupArray (line 86) | func (p *tomlParser) parseGroupArray() tomlParserStateFn { method parseGroup (line 139) | func (p *tomlParser) parseGroup() tomlParserStateFn { method parseAssign (line 164) | func (p *tomlParser) parseAssign() tomlParserStateFn { method parseRvalue (line 234) | func (p *tomlParser) parseRvalue() interface{} { method parseInlineTable (line 328) | func (p *tomlParser) parseInlineTable() *Tree { method parseArray (line 368) | func (p *tomlParser) parseArray() interface{} { type tomlParserStateFn (line 24) | type tomlParserStateFn function numberContainsInvalidUnderscore (line 215) | func numberContainsInvalidUnderscore(value string) error { function hexNumberContainsInvalidUnderscore (line 222) | func hexNumberContainsInvalidUnderscore(value string) error { function cleanupNumberToken (line 229) | func cleanupNumberToken(value string) string { function tokenIsComma (line 324) | func tokenIsComma(t *token) bool { function parseToml (line 413) | func parseToml(flow []token) *Tree { function init (line 427) | func init() { FILE: vendor/github.com/pelletier/go-toml/position.go type Position (line 14) | type Position struct method String (line 21) | func (p Position) String() string { method Invalid (line 27) | func (p Position) Invalid() bool { FILE: vendor/github.com/pelletier/go-toml/token.go type tokenType (line 10) | type tokenType method String (line 90) | func (tt tokenType) String() string { constant eof (line 13) | eof = -(iota + 1) constant tokenError (line 17) | tokenError tokenType = iota constant tokenEOF (line 18) | tokenEOF constant tokenComment (line 19) | tokenComment constant tokenKey (line 20) | tokenKey constant tokenString (line 21) | tokenString constant tokenInteger (line 22) | tokenInteger constant tokenTrue (line 23) | tokenTrue constant tokenFalse (line 24) | tokenFalse constant tokenFloat (line 25) | tokenFloat constant tokenInf (line 26) | tokenInf constant tokenNan (line 27) | tokenNan constant tokenEqual (line 28) | tokenEqual constant tokenLeftBracket (line 29) | tokenLeftBracket constant tokenRightBracket (line 30) | tokenRightBracket constant tokenLeftCurlyBrace (line 31) | tokenLeftCurlyBrace constant tokenRightCurlyBrace (line 32) | tokenRightCurlyBrace constant tokenLeftParen (line 33) | tokenLeftParen constant tokenRightParen (line 34) | tokenRightParen constant tokenDoubleLeftBracket (line 35) | tokenDoubleLeftBracket constant tokenDoubleRightBracket (line 36) | tokenDoubleRightBracket constant tokenDate (line 37) | tokenDate constant tokenKeyGroup (line 38) | tokenKeyGroup constant tokenKeyGroupArray (line 39) | tokenKeyGroupArray constant tokenComma (line 40) | tokenComma constant tokenColon (line 41) | tokenColon constant tokenDollar (line 42) | tokenDollar constant tokenStar (line 43) | tokenStar constant tokenQuestion (line 44) | tokenQuestion constant tokenDot (line 45) | tokenDot constant tokenDotDot (line 46) | tokenDotDot constant tokenEOL (line 47) | tokenEOL type token (line 84) | type token struct method Int (line 98) | func (t token) Int() int { method String (line 106) | func (t token) String() string { function isSpace (line 117) | func isSpace(r rune) bool { function isAlphanumeric (line 121) | func isAlphanumeric(r rune) bool { function isKeyChar (line 125) | func isKeyChar(r rune) bool { function isKeyStartChar (line 132) | func isKeyStartChar(r rune) bool { function isDigit (line 136) | func isDigit(r rune) bool { function isHexDigit (line 140) | func isHexDigit(r rune) bool { FILE: vendor/github.com/pelletier/go-toml/toml.go type tomlValue (line 13) | type tomlValue struct type Tree (line 22) | type Tree struct method Position (line 46) | func (t *Tree) Position() Position { method Has (line 51) | func (t *Tree) Has(key string) bool { method HasPath (line 59) | func (t *Tree) HasPath(keys []string) bool { method Keys (line 64) | func (t *Tree) Keys() []string { method Get (line 79) | func (t *Tree) Get(key string) interface{} { method GetPath (line 88) | func (t *Tree) GetPath(keys []string) interface{} { method GetPosition (line 121) | func (t *Tree) GetPosition(key string) Position { method GetPositionPath (line 130) | func (t *Tree) GetPositionPath(keys []string) Position { method GetDefault (line 171) | func (t *Tree) GetDefault(key string, def interface{}) interface{} { method SetWithOptions (line 189) | func (t *Tree) SetWithOptions(key string, opts SetOptions, value inter... method SetPathWithOptions (line 195) | func (t *Tree) SetPathWithOptions(keys []string, opts SetOptions, valu... method Set (line 239) | func (t *Tree) Set(key string, value interface{}) { method SetWithComment (line 245) | func (t *Tree) SetWithComment(key string, comment string, commented bo... method SetPath (line 252) | func (t *Tree) SetPath(keys []string, value interface{}) { method SetPathWithComment (line 258) | func (t *Tree) SetPathWithComment(keys []string, comment string, comme... method createSubTree (line 306) | func (t *Tree) createSubTree(keys []string, pos Position) error { function newTree (line 29) | func newTree() *Tree { function TreeFromMap (line 37) | func TreeFromMap(m map[string]interface{}) (*Tree, error) { type SetOptions (line 181) | type SetOptions struct function LoadBytes (line 331) | func LoadBytes(b []byte) (tree *Tree, err error) { function LoadReader (line 345) | func LoadReader(reader io.Reader) (tree *Tree, err error) { function Load (line 355) | func Load(content string) (tree *Tree, err error) { function LoadFile (line 360) | func LoadFile(path string) (tree *Tree, err error) { FILE: vendor/github.com/pelletier/go-toml/tomltree_create.go function typeFor (line 29) | func typeFor(k reflect.Kind) reflect.Type { function simpleValueCoercion (line 36) | func simpleValueCoercion(object interface{}) (interface{}, error) { function sliceToTree (line 65) | func sliceToTree(object interface{}) (interface{}, error) { function toTree (line 110) | func toTree(object interface{}) (interface{}, error) { FILE: vendor/github.com/pelletier/go-toml/tomltree_write.go function encodeMultilineTomlString (line 18) | func encodeMultilineTomlString(value string) string { function encodeTomlString (line 50) | func encodeTomlString(value string) string { function tomlValueStringRepresentation (line 81) | func tomlValueStringRepresentation(v interface{}, indent string, arraysO... method writeTo (line 156) | func (t *Tree) writeTo(w io.Writer, indent, keyspace string, bytesCount ... function writeStrings (line 267) | func writeStrings(w io.Writer, s ...string) (int, error) { method WriteTo (line 281) | func (t *Tree) WriteTo(w io.Writer) (int64, error) { method ToTomlString (line 288) | func (t *Tree) ToTomlString() (string, error) { method String (line 299) | func (t *Tree) String() string { method ToMap (line 315) | func (t *Tree) ToMap() map[string]interface{} { FILE: vendor/github.com/pkg/errors/errors.go function New (line 101) | func New(message string) error { function Errorf (line 111) | func Errorf(format string, args ...interface{}) error { type fundamental (line 119) | type fundamental struct method Error (line 124) | func (f *fundamental) Error() string { return f.msg } method Format (line 126) | func (f *fundamental) Format(s fmt.State, verb rune) { function WithStack (line 144) | func WithStack(err error) error { type withStack (line 154) | type withStack struct method Cause (line 159) | func (w *withStack) Cause() error { return w.error } method Format (line 161) | func (w *withStack) Format(s fmt.State, verb rune) { function Wrap (line 180) | func Wrap(err error, message string) error { function Wrapf (line 197) | func Wrapf(err error, format string, args ...interface{}) error { function WithMessage (line 213) | func WithMessage(err error, message string) error { type withMessage (line 223) | type withMessage struct method Error (line 228) | func (w *withMessage) Error() string { return w.msg + ": " + w.cause.E... method Cause (line 229) | func (w *withMessage) Cause() error { return w.cause } method Format (line 231) | func (w *withMessage) Format(s fmt.State, verb rune) { function Cause (line 256) | func Cause(err error) error { FILE: vendor/github.com/pkg/errors/stack.go type Frame (line 12) | type Frame method pc (line 16) | func (f Frame) pc() uintptr { return uintptr(f) - 1 } method file (line 20) | func (f Frame) file() string { method line (line 31) | func (f Frame) line() int { method Format (line 51) | func (f Frame) Format(s fmt.State, verb rune) { type StackTrace (line 80) | type StackTrace method Format (line 82) | func (st StackTrace) Format(s fmt.State, verb rune) { type stack (line 101) | type stack method Format (line 103) | func (s *stack) Format(st fmt.State, verb rune) { method StackTrace (line 116) | func (s *stack) StackTrace() StackTrace { function callers (line 124) | func callers() *stack { function funcname (line 133) | func funcname(name string) string { function trimGOPATH (line 140) | func trimGOPATH(name, file string) string { FILE: vendor/github.com/sdboyer/constext/constext.go type constext (line 12) | type constext struct method cancel (line 72) | func (cc *constext) cancel(err error) { method Deadline (line 87) | func (cc *constext) Deadline() (time.Time, bool) { method Done (line 107) | func (cc *constext) Done() <-chan struct{} { method Err (line 111) | func (cc *constext) Err() error { method Value (line 117) | func (cc *constext) Value(key interface{}) interface{} { function Cons (line 36) | func Cons(l, r context.Context) (context.Context, context.CancelFunc) { FILE: vendor/golang.org/x/net/context/context.go function Background (line 43) | func Background() Context { function TODO (line 52) | func TODO() Context { FILE: vendor/golang.org/x/net/context/go17.go function WithCancel (line 32) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { function WithDeadline (line 46) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu... function WithTimeout (line 61) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel... function WithValue (line 70) | func WithValue(parent Context, key interface{}, val interface{}) Context { FILE: vendor/golang.org/x/net/context/pre_go17.go type emptyCtx (line 18) | type emptyCtx method Deadline (line 20) | func (*emptyCtx) Deadline() (deadline time.Time, ok bool) { method Done (line 24) | func (*emptyCtx) Done() <-chan struct{} { method Err (line 28) | func (*emptyCtx) Err() error { method Value (line 32) | func (*emptyCtx) Value(key interface{}) interface{} { method String (line 36) | func (e *emptyCtx) String() string { function WithCancel (line 64) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { function newCancelCtx (line 71) | func newCancelCtx(parent Context) *cancelCtx { function propagateCancel (line 79) | func propagateCancel(parent Context, child canceler) { function parentCancelCtx (line 109) | func parentCancelCtx(parent Context) (*cancelCtx, bool) { function removeChild (line 125) | func removeChild(parent Context, child canceler) { type canceler (line 139) | type canceler interface type cancelCtx (line 146) | type cancelCtx struct method Done (line 156) | func (c *cancelCtx) Done() <-chan struct{} { method Err (line 160) | func (c *cancelCtx) Err() error { method String (line 166) | func (c *cancelCtx) String() string { method cancel (line 172) | func (c *cancelCtx) cancel(removeFromParent bool, err error) { function WithDeadline (line 204) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu... type timerCtx (line 232) | type timerCtx struct method Deadline (line 239) | func (c *timerCtx) Deadline() (deadline time.Time, ok bool) { method String (line 243) | func (c *timerCtx) String() string { method cancel (line 247) | func (c *timerCtx) cancel(removeFromParent bool, err error) { function WithTimeout (line 271) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel... function WithValue (line 280) | func WithValue(parent Context, key interface{}, val interface{}) Context { type valueCtx (line 286) | type valueCtx struct method String (line 291) | func (c *valueCtx) String() string { method Value (line 295) | func (c *valueCtx) Value(key interface{}) interface{} { FILE: vendor/golang.org/x/net/context/pre_go19.go type Context (line 15) | type Context interface type CancelFunc (line 109) | type CancelFunc FILE: vendor/golang.org/x/sync/errgroup/errgroup.go type Group (line 19) | type Group struct method Wait (line 40) | func (g *Group) Wait() error { method Go (line 52) | func (g *Group) Go(f func() error) { function WithContext (line 33) | func WithContext(ctx context.Context) (*Group, context.Context) { FILE: vendor/golang.org/x/sys/unix/bluetooth_linux.go constant BTPROTO_L2CAP (line 11) | BTPROTO_L2CAP = 0 constant BTPROTO_HCI (line 12) | BTPROTO_HCI = 1 constant BTPROTO_SCO (line 13) | BTPROTO_SCO = 2 constant BTPROTO_RFCOMM (line 14) | BTPROTO_RFCOMM = 3 constant BTPROTO_BNEP (line 15) | BTPROTO_BNEP = 4 constant BTPROTO_CMTP (line 16) | BTPROTO_CMTP = 5 constant BTPROTO_HIDP (line 17) | BTPROTO_HIDP = 6 constant BTPROTO_AVDTP (line 18) | BTPROTO_AVDTP = 7 constant HCI_CHANNEL_RAW (line 22) | HCI_CHANNEL_RAW = 0 constant HCI_CHANNEL_USER (line 23) | HCI_CHANNEL_USER = 1 constant HCI_CHANNEL_MONITOR (line 24) | HCI_CHANNEL_MONITOR = 2 constant HCI_CHANNEL_CONTROL (line 25) | HCI_CHANNEL_CONTROL = 3 constant SOL_BLUETOOTH (line 30) | SOL_BLUETOOTH = 0x112 constant SOL_HCI (line 31) | SOL_HCI = 0x0 constant SOL_L2CAP (line 32) | SOL_L2CAP = 0x6 constant SOL_RFCOMM (line 33) | SOL_RFCOMM = 0x12 constant SOL_SCO (line 34) | SOL_SCO = 0x11 FILE: vendor/golang.org/x/sys/unix/cap_freebsd.go constant capRightsGoVersion (line 18) | capRightsGoVersion = CAP_RIGHTS_VERSION_00 constant capArSizeMin (line 19) | capArSizeMin = CAP_RIGHTS_VERSION_00 + 2 constant capArSizeMax (line 20) | capArSizeMax = capRightsGoVersion + 2 function capidxbit (line 30) | func capidxbit(right uint64) int { function rightToIndex (line 34) | func rightToIndex(right uint64) (int, error) { function caprver (line 42) | func caprver(right uint64) int { function capver (line 46) | func capver(rights *CapRights) int { function caparsize (line 50) | func caparsize(rights *CapRights) int { function CapRightsSet (line 55) | func CapRightsSet(rights *CapRights, setrights []uint64) error { function CapRightsClear (line 90) | func CapRightsClear(rights *CapRights, clearrights []uint64) error { function CapRightsIsSet (line 125) | func CapRightsIsSet(rights *CapRights, setrights []uint64) (bool, error) { function capright (line 158) | func capright(idx uint64, bit uint64) uint64 { function CapRightsInit (line 164) | func CapRightsInit(rights []uint64) (*CapRights, error) { function CapRightsLimit (line 179) | func CapRightsLimit(fd uintptr, rights *CapRights) error { function CapRightsGet (line 185) | func CapRightsGet(fd uintptr) (*CapRights, error) { FILE: vendor/golang.org/x/sys/unix/constants.go constant R_OK (line 10) | R_OK = 0x4 constant W_OK (line 11) | W_OK = 0x2 constant X_OK (line 12) | X_OK = 0x1 FILE: vendor/golang.org/x/sys/unix/dev_linux.go function Major (line 21) | func Major(dev uint64) uint32 { function Minor (line 28) | func Minor(dev uint64) uint32 { function Mkdev (line 36) | func Mkdev(major, minor uint32) uint64 { FILE: vendor/golang.org/x/sys/unix/dirent.go function readInt (line 12) | func readInt(b []byte, off, size uintptr) (u uint64, ok bool) { function readIntBE (line 22) | func readIntBE(b []byte, size uintptr) uint64 { function readIntLE (line 41) | func readIntLE(b []byte, size uintptr) uint64 { function ParseDirent (line 64) | func ParseDirent(buf []byte, max int, names []string) (consumed int, cou... FILE: vendor/golang.org/x/sys/unix/endian_big.go constant isBigEndian (line 9) | isBigEndian = true FILE: vendor/golang.org/x/sys/unix/endian_little.go constant isBigEndian (line 9) | isBigEndian = false FILE: vendor/golang.org/x/sys/unix/env_unix.go function Getenv (line 13) | func Getenv(key string) (value string, found bool) { function Setenv (line 17) | func Setenv(key, value string) error { function Clearenv (line 21) | func Clearenv() { function Environ (line 25) | func Environ() []string { FILE: vendor/golang.org/x/sys/unix/env_unset.go function Unsetenv (line 11) | func Unsetenv(key string) error { FILE: vendor/golang.org/x/sys/unix/errors_freebsd_386.go constant IFF_SMART (line 11) | IFF_SMART = 0x20 constant IFT_1822 (line 12) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 13) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 14) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 15) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 16) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 17) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 18) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 19) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 20) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 21) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 22) | IFT_ASYNC = 0x54 constant IFT_ATM (line 23) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 24) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 25) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 26) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 27) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 28) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 29) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 30) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 31) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 32) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BSC (line 33) | IFT_BSC = 0x53 constant IFT_CCTEMUL (line 34) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 35) | IFT_CEPT = 0x13 constant IFT_CES (line 36) | IFT_CES = 0x85 constant IFT_CHANNEL (line 37) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 38) | IFT_CNR = 0x55 constant IFT_COFFEE (line 39) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 40) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 41) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 42) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 43) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 44) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 45) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 46) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 47) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 48) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 49) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 50) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 51) | IFT_DS3 = 0x1e constant IFT_DTM (line 52) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 53) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 54) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 55) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 56) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 57) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 58) | IFT_ENC = 0xf4 constant IFT_EON (line 59) | IFT_EON = 0x19 constant IFT_EPLRS (line 60) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 61) | IFT_ESCON = 0x49 constant IFT_ETHER (line 62) | IFT_ETHER = 0x6 constant IFT_FAITH (line 63) | IFT_FAITH = 0xf2 constant IFT_FAST (line 64) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 65) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 66) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 67) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 68) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 69) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 70) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 71) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 72) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 73) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 74) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 75) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 76) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 77) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 78) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 79) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 80) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 81) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 82) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 83) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 84) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 85) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 86) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 87) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 88) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 89) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 90) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 91) | IFT_HSSI = 0x2e constant IFT_HY (line 92) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 93) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 94) | IFT_IDSL = 0x9a constant IFT_IEEE80211 (line 95) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 96) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 97) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 98) | IFT_IFGSN = 0x91 constant IFT_IMT (line 99) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 100) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 101) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 102) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 103) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 104) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 105) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 106) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 107) | IFT_IPXIP = 0xf9 constant IFT_ISDN (line 108) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 109) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 110) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 111) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 112) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 113) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 114) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 115) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 116) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 117) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 118) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 119) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 120) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 121) | IFT_ISUP = 0xb3 constant IFT_L3IPXVLAN (line 122) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 123) | IFT_LAPB = 0x10 constant IFT_LAPD (line 124) | IFT_LAPD = 0x4d constant IFT_LAPF (line 125) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 126) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 127) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 128) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 129) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 130) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 131) | IFT_MODEM = 0x30 constant IFT_MPC (line 132) | IFT_MPC = 0x71 constant IFT_MPLS (line 133) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 134) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 135) | IFT_MSDSL = 0x8f constant IFT_MVL (line 136) | IFT_MVL = 0xbf constant IFT_MYRINET (line 137) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 138) | IFT_NFAS = 0xaf constant IFT_NSIP (line 139) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 140) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 141) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 142) | IFT_OTHER = 0x1 constant IFT_P10 (line 143) | IFT_P10 = 0xc constant IFT_P80 (line 144) | IFT_P80 = 0xd constant IFT_PARA (line 145) | IFT_PARA = 0x22 constant IFT_PFLOG (line 146) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 147) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 148) | IFT_PLC = 0xae constant IFT_POS (line 149) | IFT_POS = 0xab constant IFT_PPPMULTILINKBUNDLE (line 150) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 151) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 152) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 153) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 154) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 155) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 156) | IFT_PROPMUX = 0x36 constant IFT_PROPWIRELESSP2P (line 157) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 158) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 159) | IFT_PVC = 0xf1 constant IFT_QLLC (line 160) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 161) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 162) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 163) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 164) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 165) | IFT_RS232 = 0x21 constant IFT_RSRB (line 166) | IFT_RSRB = 0x4f constant IFT_SDLC (line 167) | IFT_SDLC = 0x11 constant IFT_SDSL (line 168) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 169) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 170) | IFT_SIP = 0x1f constant IFT_SLIP (line 171) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 172) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 173) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 174) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 175) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 176) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 177) | IFT_SONETVT = 0x33 constant IFT_SRP (line 178) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 179) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 180) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 181) | IFT_STARLAN = 0xb constant IFT_STF (line 182) | IFT_STF = 0xd7 constant IFT_T1 (line 183) | IFT_T1 = 0x12 constant IFT_TDLC (line 184) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 185) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 186) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 187) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 188) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 189) | IFT_ULTRA = 0x1d constant IFT_USB (line 190) | IFT_USB = 0xa0 constant IFT_V11 (line 191) | IFT_V11 = 0x40 constant IFT_V35 (line 192) | IFT_V35 = 0x2d constant IFT_V36 (line 193) | IFT_V36 = 0x41 constant IFT_V37 (line 194) | IFT_V37 = 0x78 constant IFT_VDSL (line 195) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 196) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 197) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 198) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 199) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 200) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 201) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 202) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 203) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 204) | IFT_X213 = 0x5d constant IFT_X25 (line 205) | IFT_X25 = 0x5 constant IFT_X25DDN (line 206) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 207) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 208) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 209) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 210) | IFT_XETHER = 0x1a constant IPPROTO_MAXID (line 211) | IPPROTO_MAXID = 0x34 constant IPV6_FAITH (line 212) | IPV6_FAITH = 0x1d constant IP_FAITH (line 213) | IP_FAITH = 0x16 constant MAP_NORESERVE (line 214) | MAP_NORESERVE = 0x40 constant MAP_RENAME (line 215) | MAP_RENAME = 0x20 constant NET_RT_MAXID (line 216) | NET_RT_MAXID = 0x6 constant RTF_PRCLONING (line 217) | RTF_PRCLONING = 0x10000 constant RTM_OLDADD (line 218) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 219) | RTM_OLDDEL = 0xa constant SIOCADDRT (line 220) | SIOCADDRT = 0x8030720a constant SIOCALIFADDR (line 221) | SIOCALIFADDR = 0x8118691b constant SIOCDELRT (line 222) | SIOCDELRT = 0x8030720b constant SIOCDLIFADDR (line 223) | SIOCDLIFADDR = 0x8118691d constant SIOCGLIFADDR (line 224) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 225) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCSLIFPHYADDR (line 226) | SIOCSLIFPHYADDR = 0x8118694a FILE: vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go constant IFF_SMART (line 11) | IFF_SMART = 0x20 constant IFT_1822 (line 12) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 13) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 14) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 15) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 16) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 17) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 18) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 19) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 20) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 21) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 22) | IFT_ASYNC = 0x54 constant IFT_ATM (line 23) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 24) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 25) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 26) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 27) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 28) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 29) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 30) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 31) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 32) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BSC (line 33) | IFT_BSC = 0x53 constant IFT_CCTEMUL (line 34) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 35) | IFT_CEPT = 0x13 constant IFT_CES (line 36) | IFT_CES = 0x85 constant IFT_CHANNEL (line 37) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 38) | IFT_CNR = 0x55 constant IFT_COFFEE (line 39) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 40) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 41) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 42) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 43) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 44) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 45) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 46) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 47) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 48) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 49) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 50) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 51) | IFT_DS3 = 0x1e constant IFT_DTM (line 52) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 53) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 54) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 55) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 56) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 57) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 58) | IFT_ENC = 0xf4 constant IFT_EON (line 59) | IFT_EON = 0x19 constant IFT_EPLRS (line 60) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 61) | IFT_ESCON = 0x49 constant IFT_ETHER (line 62) | IFT_ETHER = 0x6 constant IFT_FAITH (line 63) | IFT_FAITH = 0xf2 constant IFT_FAST (line 64) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 65) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 66) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 67) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 68) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 69) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 70) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 71) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 72) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 73) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 74) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 75) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 76) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 77) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 78) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 79) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 80) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 81) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 82) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 83) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 84) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 85) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 86) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 87) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 88) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 89) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 90) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 91) | IFT_HSSI = 0x2e constant IFT_HY (line 92) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 93) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 94) | IFT_IDSL = 0x9a constant IFT_IEEE80211 (line 95) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 96) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 97) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 98) | IFT_IFGSN = 0x91 constant IFT_IMT (line 99) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 100) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 101) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 102) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 103) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 104) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 105) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 106) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 107) | IFT_IPXIP = 0xf9 constant IFT_ISDN (line 108) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 109) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 110) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 111) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 112) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 113) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 114) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 115) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 116) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 117) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 118) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 119) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 120) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 121) | IFT_ISUP = 0xb3 constant IFT_L3IPXVLAN (line 122) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 123) | IFT_LAPB = 0x10 constant IFT_LAPD (line 124) | IFT_LAPD = 0x4d constant IFT_LAPF (line 125) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 126) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 127) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 128) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 129) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 130) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 131) | IFT_MODEM = 0x30 constant IFT_MPC (line 132) | IFT_MPC = 0x71 constant IFT_MPLS (line 133) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 134) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 135) | IFT_MSDSL = 0x8f constant IFT_MVL (line 136) | IFT_MVL = 0xbf constant IFT_MYRINET (line 137) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 138) | IFT_NFAS = 0xaf constant IFT_NSIP (line 139) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 140) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 141) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 142) | IFT_OTHER = 0x1 constant IFT_P10 (line 143) | IFT_P10 = 0xc constant IFT_P80 (line 144) | IFT_P80 = 0xd constant IFT_PARA (line 145) | IFT_PARA = 0x22 constant IFT_PFLOG (line 146) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 147) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 148) | IFT_PLC = 0xae constant IFT_POS (line 149) | IFT_POS = 0xab constant IFT_PPPMULTILINKBUNDLE (line 150) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 151) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 152) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 153) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 154) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 155) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 156) | IFT_PROPMUX = 0x36 constant IFT_PROPWIRELESSP2P (line 157) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 158) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 159) | IFT_PVC = 0xf1 constant IFT_QLLC (line 160) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 161) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 162) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 163) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 164) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 165) | IFT_RS232 = 0x21 constant IFT_RSRB (line 166) | IFT_RSRB = 0x4f constant IFT_SDLC (line 167) | IFT_SDLC = 0x11 constant IFT_SDSL (line 168) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 169) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 170) | IFT_SIP = 0x1f constant IFT_SLIP (line 171) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 172) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 173) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 174) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 175) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 176) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 177) | IFT_SONETVT = 0x33 constant IFT_SRP (line 178) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 179) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 180) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 181) | IFT_STARLAN = 0xb constant IFT_STF (line 182) | IFT_STF = 0xd7 constant IFT_T1 (line 183) | IFT_T1 = 0x12 constant IFT_TDLC (line 184) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 185) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 186) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 187) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 188) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 189) | IFT_ULTRA = 0x1d constant IFT_USB (line 190) | IFT_USB = 0xa0 constant IFT_V11 (line 191) | IFT_V11 = 0x40 constant IFT_V35 (line 192) | IFT_V35 = 0x2d constant IFT_V36 (line 193) | IFT_V36 = 0x41 constant IFT_V37 (line 194) | IFT_V37 = 0x78 constant IFT_VDSL (line 195) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 196) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 197) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 198) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 199) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 200) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 201) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 202) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 203) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 204) | IFT_X213 = 0x5d constant IFT_X25 (line 205) | IFT_X25 = 0x5 constant IFT_X25DDN (line 206) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 207) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 208) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 209) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 210) | IFT_XETHER = 0x1a constant IPPROTO_MAXID (line 211) | IPPROTO_MAXID = 0x34 constant IPV6_FAITH (line 212) | IPV6_FAITH = 0x1d constant IP_FAITH (line 213) | IP_FAITH = 0x16 constant MAP_NORESERVE (line 214) | MAP_NORESERVE = 0x40 constant MAP_RENAME (line 215) | MAP_RENAME = 0x20 constant NET_RT_MAXID (line 216) | NET_RT_MAXID = 0x6 constant RTF_PRCLONING (line 217) | RTF_PRCLONING = 0x10000 constant RTM_OLDADD (line 218) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 219) | RTM_OLDDEL = 0xa constant SIOCADDRT (line 220) | SIOCADDRT = 0x8040720a constant SIOCALIFADDR (line 221) | SIOCALIFADDR = 0x8118691b constant SIOCDELRT (line 222) | SIOCDELRT = 0x8040720b constant SIOCDLIFADDR (line 223) | SIOCDLIFADDR = 0x8118691d constant SIOCGLIFADDR (line 224) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 225) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCSLIFPHYADDR (line 226) | SIOCSLIFPHYADDR = 0x8118694a FILE: vendor/golang.org/x/sys/unix/errors_freebsd_arm.go constant IFT_1822 (line 8) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 9) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 10) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 11) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 12) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 13) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 14) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 15) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 16) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 17) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 18) | IFT_ASYNC = 0x54 constant IFT_ATM (line 19) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 20) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 21) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 22) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 23) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 24) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 25) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 26) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 27) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 28) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BSC (line 29) | IFT_BSC = 0x53 constant IFT_CCTEMUL (line 30) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 31) | IFT_CEPT = 0x13 constant IFT_CES (line 32) | IFT_CES = 0x85 constant IFT_CHANNEL (line 33) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 34) | IFT_CNR = 0x55 constant IFT_COFFEE (line 35) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 36) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 37) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 38) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 39) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 40) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 41) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 42) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 43) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 44) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 45) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 46) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 47) | IFT_DS3 = 0x1e constant IFT_DTM (line 48) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 49) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 50) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 51) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 52) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 53) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 54) | IFT_ENC = 0xf4 constant IFT_EON (line 55) | IFT_EON = 0x19 constant IFT_EPLRS (line 56) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 57) | IFT_ESCON = 0x49 constant IFT_ETHER (line 58) | IFT_ETHER = 0x6 constant IFT_FAST (line 59) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 60) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 61) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 62) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 63) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 64) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 65) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 66) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 67) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 68) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 69) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 70) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 71) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 72) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 73) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 74) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 75) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 76) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 77) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 78) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 79) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 80) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 81) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 82) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 83) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 84) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 85) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 86) | IFT_HSSI = 0x2e constant IFT_HY (line 87) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 88) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 89) | IFT_IDSL = 0x9a constant IFT_IEEE80211 (line 90) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 91) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 92) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 93) | IFT_IFGSN = 0x91 constant IFT_IMT (line 94) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 95) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 96) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 97) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 98) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 99) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 100) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 101) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 102) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 103) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 104) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 105) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 106) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 107) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 108) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 109) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 110) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 111) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 112) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 113) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 114) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 115) | IFT_ISUP = 0xb3 constant IFT_L3IPXVLAN (line 116) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 117) | IFT_LAPB = 0x10 constant IFT_LAPD (line 118) | IFT_LAPD = 0x4d constant IFT_LAPF (line 119) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 120) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 121) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 122) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 123) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 124) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 125) | IFT_MODEM = 0x30 constant IFT_MPC (line 126) | IFT_MPC = 0x71 constant IFT_MPLS (line 127) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 128) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 129) | IFT_MSDSL = 0x8f constant IFT_MVL (line 130) | IFT_MVL = 0xbf constant IFT_MYRINET (line 131) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 132) | IFT_NFAS = 0xaf constant IFT_NSIP (line 133) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 134) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 135) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 136) | IFT_OTHER = 0x1 constant IFT_P10 (line 137) | IFT_P10 = 0xc constant IFT_P80 (line 138) | IFT_P80 = 0xd constant IFT_PARA (line 139) | IFT_PARA = 0x22 constant IFT_PFLOG (line 140) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 141) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 142) | IFT_PLC = 0xae constant IFT_POS (line 143) | IFT_POS = 0xab constant IFT_PPPMULTILINKBUNDLE (line 144) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 145) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 146) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 147) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 148) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 149) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 150) | IFT_PROPMUX = 0x36 constant IFT_PROPWIRELESSP2P (line 151) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 152) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 153) | IFT_PVC = 0xf1 constant IFT_QLLC (line 154) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 155) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 156) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 157) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 158) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 159) | IFT_RS232 = 0x21 constant IFT_RSRB (line 160) | IFT_RSRB = 0x4f constant IFT_SDLC (line 161) | IFT_SDLC = 0x11 constant IFT_SDSL (line 162) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 163) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 164) | IFT_SIP = 0x1f constant IFT_SLIP (line 165) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 166) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 167) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 168) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 169) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 170) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 171) | IFT_SONETVT = 0x33 constant IFT_SRP (line 172) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 173) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 174) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 175) | IFT_STARLAN = 0xb constant IFT_STF (line 176) | IFT_STF = 0xd7 constant IFT_T1 (line 177) | IFT_T1 = 0x12 constant IFT_TDLC (line 178) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 179) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 180) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 181) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 182) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 183) | IFT_ULTRA = 0x1d constant IFT_USB (line 184) | IFT_USB = 0xa0 constant IFT_V11 (line 185) | IFT_V11 = 0x40 constant IFT_V35 (line 186) | IFT_V35 = 0x2d constant IFT_V36 (line 187) | IFT_V36 = 0x41 constant IFT_V37 (line 188) | IFT_V37 = 0x78 constant IFT_VDSL (line 189) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 190) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 191) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 192) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 193) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 194) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 195) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 196) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 197) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 198) | IFT_X213 = 0x5d constant IFT_X25 (line 199) | IFT_X25 = 0x5 constant IFT_X25DDN (line 200) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 201) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 202) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 203) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 204) | IFT_XETHER = 0x1a constant IFF_SMART (line 207) | IFF_SMART = 0x20 constant IFT_FAITH (line 208) | IFT_FAITH = 0xf2 constant IFT_IPXIP (line 209) | IFT_IPXIP = 0xf9 constant IPPROTO_MAXID (line 210) | IPPROTO_MAXID = 0x34 constant IPV6_FAITH (line 211) | IPV6_FAITH = 0x1d constant IP_FAITH (line 212) | IP_FAITH = 0x16 constant MAP_NORESERVE (line 213) | MAP_NORESERVE = 0x40 constant MAP_RENAME (line 214) | MAP_RENAME = 0x20 constant NET_RT_MAXID (line 215) | NET_RT_MAXID = 0x6 constant RTF_PRCLONING (line 216) | RTF_PRCLONING = 0x10000 constant RTM_OLDADD (line 217) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 218) | RTM_OLDDEL = 0xa constant SIOCADDRT (line 219) | SIOCADDRT = 0x8030720a constant SIOCALIFADDR (line 220) | SIOCALIFADDR = 0x8118691b constant SIOCDELRT (line 221) | SIOCDELRT = 0x8030720b constant SIOCDLIFADDR (line 222) | SIOCDLIFADDR = 0x8118691d constant SIOCGLIFADDR (line 223) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 224) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCSLIFPHYADDR (line 225) | SIOCSLIFPHYADDR = 0x8118694a FILE: vendor/golang.org/x/sys/unix/file_unix.go function syscallMode (line 14) | func syscallMode(i os.FileMode) (o uint32) { FILE: vendor/golang.org/x/sys/unix/flock.go function FcntlFlock (line 16) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error { FILE: vendor/golang.org/x/sys/unix/flock_linux_32bit.go function init (line 9) | func init() { FILE: vendor/golang.org/x/sys/unix/gccgo.go function realSyscall (line 15) | func realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, e... function Syscall (line 17) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errn... function Syscall6 (line 24) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function Syscall9 (line 31) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function RawSyscall (line 38) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 43) | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, ... FILE: vendor/golang.org/x/sys/unix/gccgo_c.c type ret (line 18) | struct ret { function gccgoRealSyscall (line 23) | struct ret function use (line 38) | void FILE: vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go function realGettimeofday (line 12) | func realGettimeofday(*Timeval, *byte) int32 function gettimeofday (line 14) | func gettimeofday(tv *Timeval) (err syscall.Errno) { FILE: vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go function realSysconf (line 12) | func realSysconf(name int) int64 function sysconf (line 14) | func sysconf(name int) (n int64, err syscall.Errno) { FILE: vendor/golang.org/x/sys/unix/mkpost.go function main (line 24) | func main() { FILE: vendor/golang.org/x/sys/unix/openbsd_pledge.go constant SYS_PLEDGE (line 16) | SYS_PLEDGE = 108 function Pledge (line 20) | func Pledge(promises string, paths []string) error { FILE: vendor/golang.org/x/sys/unix/race.go constant raceenabled (line 14) | raceenabled = true function raceAcquire (line 16) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 20) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 24) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 28) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/unix/race0.go constant raceenabled (line 13) | raceenabled = false function raceAcquire (line 15) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 18) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 21) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 24) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_linux.go function UnixCredentials (line 14) | func UnixCredentials(ucred *Ucred) []byte { function ParseUnixCredentials (line 27) | func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_unix.go function cmsgAlignOf (line 14) | func cmsgAlignOf(salen int) int { function CmsgLen (line 27) | func CmsgLen(datalen int) int { function CmsgSpace (line 33) | func CmsgSpace(datalen int) int { function cmsgData (line 37) | func cmsgData(h *Cmsghdr) unsafe.Pointer { type SocketControlMessage (line 42) | type SocketControlMessage struct function ParseSocketControlMessage (line 49) | func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) { function socketControlMessageHeaderAndData (line 64) | func socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, erro... function UnixRights (line 74) | func UnixRights(fds ...int) []byte { function ParseUnixRights (line 91) | func ParseUnixRights(m *SocketControlMessage) ([]int, error) { FILE: vendor/golang.org/x/sys/unix/str.go function itoa (line 9) | func itoa(val int) string { // do it here rather than with fmt to avoid ... function uitoa (line 16) | func uitoa(val uint) string { FILE: vendor/golang.org/x/sys/unix/syscall.go function ByteSliceFromString (line 27) | func ByteSliceFromString(s string) ([]byte, error) { function BytePtrFromString (line 41) | func BytePtrFromString(s string) (*byte, error) { method Unix (line 53) | func (ts *Timespec) Unix() (sec int64, nsec int64) { method Unix (line 57) | func (tv *Timeval) Unix() (sec int64, nsec int64) { method Nano (line 61) | func (ts *Timespec) Nano() int64 { method Nano (line 65) | func (tv *Timeval) Nano() int64 { function TimevalToNsec (line 69) | func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(... FILE: vendor/golang.org/x/sys/unix/syscall_bsd.go function Getgroups (line 28) | func Getgroups() (gids []int, err error) { function Setgroups (line 54) | func Setgroups(gids []int) (err error) { function ReadDirent (line 66) | func ReadDirent(fd int, buf []byte) (n int, err error) { type WaitStatus (line 81) | type WaitStatus method Exited (line 92) | func (w WaitStatus) Exited() bool { return w&mask == exited } method ExitStatus (line 94) | func (w WaitStatus) ExitStatus() int { method Signaled (line 101) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Signal (line 103) | func (w WaitStatus) Signal() syscall.Signal { method CoreDump (line 111) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method Stopped (line 113) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca... method Continued (line 115) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys... method StopSignal (line 117) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 124) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 84) | mask = 0x7F constant core (line 85) | core = 0x80 constant shift (line 86) | shift = 8 constant exited (line 88) | exited = 0 constant stopped (line 89) | stopped = 0x7F function Wait4 (line 128) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... method sockaddr (line 147) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 162) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 178) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 192) | func (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddr (line 209) | func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 274) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Getsockname (line 297) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptByte (line 314) | func GetsockoptByte(fd, level, opt int) (value byte, err error) { function GetsockoptInet4Addr (line 321) | func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) { function GetsockoptIPMreq (line 327) | func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) { function GetsockoptIPv6Mreq (line 334) | func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) { function GetsockoptIPv6MTUInfo (line 341) | func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) { function GetsockoptICMPv6Filter (line 348) | func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) { function Recvmsg (line 359) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 395) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 400) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Kevent (line 440) | func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n in... function sysctlmib (line 454) | func sysctlmib(name string, args ...int) ([]_C_int, error) { function Sysctl (line 468) | func Sysctl(name string) (string, error) { function SysctlArgs (line 472) | func SysctlArgs(name string, args ...int) (string, error) { function SysctlUint32 (line 486) | func SysctlUint32(name string) (uint32, error) { function SysctlUint32Args (line 490) | func SysctlUint32Args(name string, args ...int) (uint32, error) { function SysctlUint64 (line 507) | func SysctlUint64(name string, args ...int) (uint64, error) { function SysctlRaw (line 524) | func SysctlRaw(name string, args ...int) ([]byte, error) { function Utimes (line 552) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 562) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 586) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function Futimes (line 598) | func Futimes(fd int, tv []Timeval) error { function Mmap (line 621) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 625) | func Munmap(b []byte) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin.go constant ImplementsGetwd (line 21) | ImplementsGetwd = true function Getwd (line 23) | func Getwd() (string, error) { type SockaddrDatalink (line 39) | type SockaddrDatalink struct function nametomib (line 52) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 79) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 83) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 87) | func direntNamlen(buf []byte) (uint64, bool) { function PtraceAttach (line 92) | func PtraceAttach(pid int) (err error) { return ptrace(PT_ATTACH, pid, 0... function PtraceDetach (line 93) | func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0... constant attrBitMapCount (line 96) | attrBitMapCount = 5 constant attrCmnFullpath (line 97) | attrCmnFullpath = 0x08000000 type attrList (line 100) | type attrList struct function getAttrList (line 110) | func getAttrList(path string, attrList attrList, attrBuf []byte, options... function Pipe (line 167) | func Pipe(p []int) (err error) { function Getfsstat (line 175) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function utimensat (line 190) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) er... function Kill (line 201) | func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid,... function IoctlSetInt (line 210) | func IoctlSetInt(fd int, req uint, value int) error { function IoctlSetWinsize (line 214) | func IoctlSetWinsize(fd int, req uint, value *Winsize) error { function IoctlSetTermios (line 218) | func IoctlSetTermios(fd int, req uint, value *Termios) error { function IoctlGetInt (line 224) | func IoctlGetInt(fd int, req uint) (int, error) { function IoctlGetWinsize (line 230) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { function IoctlGetTermios (line 236) | func IoctlGetTermios(fd int, req uint) (*Termios, error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin_386.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 32) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 42) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 48) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 52) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 56) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 60) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 73) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... constant SYS___SYSCTL (line 77) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 32) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 42) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 48) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 52) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 56) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 60) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 73) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... constant SYS___SYSCTL (line 77) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm.go function Getpagesize (line 12) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 14) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 16) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 22) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 30) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 40) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 46) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 50) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 54) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 58) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 71) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go function Getpagesize (line 14) | func Getpagesize() int { return 16384 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 32) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 42) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 48) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 52) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 56) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 60) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 73) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... constant SYS___SYSCTL (line 77) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly.go type SockaddrDatalink (line 17) | type SockaddrDatalink struct function nametomib (line 32) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 59) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 63) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 71) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 77) | func Pipe(p []int) (err error) { function Pread (line 86) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 91) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Accept4 (line 95) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) { function Getfsstat (line 113) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd.go type SockaddrDatalink (line 17) | type SockaddrDatalink struct function nametomib (line 30) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 57) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 61) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 65) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 71) | func Pipe(p []int) (err error) { function GetsockoptIPMreqn (line 79) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function SetsockoptIPMreqn (line 86) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function Accept4 (line 90) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) { function Getfsstat (line 108) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function xattrnamespace (line 125) | func xattrnamespace(fullattr string) (ns int, attr string, err error) { function initxattrdest (line 151) | func initxattrdest(dest []byte, idx int) (d unsafe.Pointer) { function Getxattr (line 161) | func Getxattr(file string, attr string, dest []byte) (sz int, err error) { function Fgetxattr (line 173) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) { function Lgetxattr (line 185) | func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) { function Fsetxattr (line 199) | func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) { function Setxattr (line 212) | func Setxattr(file string, attr string, data []byte, flags int) (err err... function Lsetxattr (line 225) | func Lsetxattr(link string, attr string, data []byte, flags int) (err er... function Removexattr (line 238) | func Removexattr(file string, attr string) (err error) { function Fremovexattr (line 248) | func Fremovexattr(fd int, attr string) (err error) { function Lremovexattr (line 258) | func Lremovexattr(link string, attr string) (err error) { function Listxattr (line 268) | func Listxattr(file string, dest []byte) (sz int, err error) { function Flistxattr (line 303) | func Flistxattr(fd int, dest []byte) (sz int, err error) { function Llistxattr (line 329) | func Llistxattr(link string, dest []byte) (sz int, err error) { function IoctlSetInt (line 362) | func IoctlSetInt(fd int, req uint, value int) error { function IoctlSetWinsize (line 366) | func IoctlSetWinsize(fd int, req uint, value *Winsize) error { function IoctlSetTermios (line 370) | func IoctlSetTermios(fd int, req uint, value *Termios) error { function IoctlGetInt (line 376) | func IoctlGetInt(fd int, req uint) (int, error) { function IoctlGetWinsize (line 382) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { function IoctlGetTermios (line 388) | func IoctlGetTermios(fd int, req uint) (*Termios, error) { FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return ts.Sec*1e9 + int64(ts.Ns... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_linux.go function Access (line 23) | func Access(path string, mode uint32) (err error) { function Chmod (line 27) | func Chmod(path string, mode uint32) (err error) { function Chown (line 31) | func Chown(path string, uid int, gid int) (err error) { function Creat (line 35) | func Creat(path string, mode uint32) (fd int, err error) { function Fchmodat (line 41) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function IoctlSetInt (line 60) | func IoctlSetInt(fd int, req uint, value int) error { function IoctlSetWinsize (line 64) | func IoctlSetWinsize(fd int, req uint, value *Winsize) error { function IoctlSetTermios (line 68) | func IoctlSetTermios(fd int, req uint, value *Termios) error { function IoctlGetInt (line 74) | func IoctlGetInt(fd int, req uint) (int, error) { function IoctlGetWinsize (line 80) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { function IoctlGetTermios (line 86) | func IoctlGetTermios(fd int, req uint) (*Termios, error) { function Link (line 94) | func Link(oldpath string, newpath string) (err error) { function Mkdir (line 98) | func Mkdir(path string, mode uint32) (err error) { function Mknod (line 102) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 106) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 112) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function Ppoll (line 118) | func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, e... function Readlink (line 127) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 131) | func Rename(oldpath string, newpath string) (err error) { function Rmdir (line 135) | func Rmdir(path string) error { function Symlink (line 141) | func Symlink(oldpath string, newpath string) (err error) { function Unlink (line 145) | func Unlink(path string) error { function Utimes (line 153) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 176) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 200) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function Futimesat (line 212) | func Futimesat(dirfd int, path string, tv []Timeval) error { function Futimes (line 226) | func Futimes(fd int, tv []Timeval) (err error) { constant ImplementsGetwd (line 232) | ImplementsGetwd = true function Getwd (line 236) | func Getwd() (wd string, err error) { function Getgroups (line 249) | func Getgroups() (gids []int, err error) { function Setgroups (line 275) | func Setgroups(gids []int) (err error) { type WaitStatus (line 287) | type WaitStatus method Exited (line 306) | func (w WaitStatus) Exited() bool { return w&mask == exited } method Signaled (line 308) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Stopped (line 310) | func (w WaitStatus) Stopped() bool { return w&0xFF == stopped } method Continued (line 312) | func (w WaitStatus) Continued() bool { return w == 0xFFFF } method CoreDump (line 314) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method ExitStatus (line 316) | func (w WaitStatus) ExitStatus() int { method Signal (line 323) | func (w WaitStatus) Signal() syscall.Signal { method StopSignal (line 330) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 337) | func (w WaitStatus) TrapCause() int { constant mask (line 299) | mask = 0x7F constant core (line 300) | core = 0x80 constant exited (line 301) | exited = 0x00 constant stopped (line 302) | stopped = 0x7F constant shift (line 303) | shift = 8 function Wait4 (line 346) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... function Mkfifo (line 355) | func Mkfifo(path string, mode uint32) error { function Mkfifoat (line 359) | func Mkfifoat(dirfd int, path string, mode uint32) error { method sockaddr (line 363) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 377) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 392) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrLinklayer (line 416) | type SockaddrLinklayer struct method sockaddr (line 426) | func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, err... type SockaddrNetlink (line 442) | type SockaddrNetlink struct method sockaddr (line 450) | func (sa *SockaddrNetlink) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrHCI (line 458) | type SockaddrHCI struct method sockaddr (line 464) | func (sa *SockaddrHCI) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrCAN (line 488) | type SockaddrCAN struct method sockaddr (line 495) | func (sa *SockaddrCAN) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrALG (line 575) | type SockaddrALG struct method sockaddr (line 583) | func (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrVM (line 615) | type SockaddrVM struct method sockaddr (line 625) | func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddr (line 633) | func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 714) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Accept4 (line 729) | func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) { function Getsockname (line 747) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptInet4Addr (line 756) | func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) { function GetsockoptIPMreq (line 762) | func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) { function GetsockoptIPMreqn (line 769) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function GetsockoptIPv6Mreq (line 776) | func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) { function GetsockoptIPv6MTUInfo (line 783) | func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) { function GetsockoptICMPv6Filter (line 790) | func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) { function GetsockoptUcred (line 797) | func GetsockoptUcred(fd, level, opt int) (*Ucred, error) { function GetsockoptTCPInfo (line 804) | func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) { function SetsockoptIPMreqn (line 811) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function KeyctlString (line 831) | func KeyctlString(cmd int, id int) (string, error) { function KeyctlGetKeyringID (line 860) | func KeyctlGetKeyringID(id int, create bool) (ringid int, err error) { function KeyctlSetperm (line 873) | func KeyctlSetperm(id int, perm uint32) error { function KeyctlJoinSessionKeyring (line 883) | func KeyctlJoinSessionKeyring(name string) (ringid int, err error) { function KeyctlSearch (line 892) | func KeyctlSearch(ringid int, keyType, description string, destRingid in... function KeyctlInstantiateIOV (line 903) | func KeyctlInstantiateIOV(id int, payload []Iovec, ringid int) error { function KeyctlDHCompute (line 918) | func KeyctlDHCompute(params *KeyctlDHParams, buffer []byte) (size int, e... function Recvmsg (line 922) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 961) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 966) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function BindToDevice (line 1011) | func BindToDevice(fd int, device string) (err error) { function ptracePeek (line 1017) | func ptracePeek(req int, pid int, addr uintptr, out []byte) (count int, ... function PtracePeekText (line 1057) | func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekData (line 1061) | func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekUser (line 1065) | func PtracePeekUser(pid int, addr uintptr, out []byte) (count int, err e... function ptracePoke (line 1069) | func ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []... function PtracePokeText (line 1120) | func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err ... function PtracePokeData (line 1124) | func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err ... function PtraceGetRegs (line 1128) | func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) { function PtraceSetRegs (line 1132) | func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) { function PtraceSetOptions (line 1136) | func PtraceSetOptions(pid int, options int) (err error) { function PtraceGetEventMsg (line 1140) | func PtraceGetEventMsg(pid int) (msg uint, err error) { function PtraceCont (line 1147) | func PtraceCont(pid int, signal int) (err error) { function PtraceSyscall (line 1151) | func PtraceSyscall(pid int, signal int) (err error) { function PtraceSingleStep (line 1155) | func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLE... function PtraceAttach (line 1157) | func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pi... function PtraceDetach (line 1159) | func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pi... function Reboot (line 1163) | func Reboot(cmd int) (err error) { function ReadDirent (line 1167) | func ReadDirent(fd int, buf []byte) (n int, err error) { function direntIno (line 1171) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 1175) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 1179) | func direntNamlen(buf []byte) (uint64, bool) { function Mount (line 1189) | func Mount(source string, target string, fstype string, flags uintptr, d... function Getpgrp (line 1236) | func Getpgrp() (pid int) { function Setuid (line 1281) | func Setuid(uid int) (err error) { function Setgid (line 1285) | func Setgid(uid int) (err error) { function Mmap (line 1316) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 1320) | func Munmap(b []byte) (err error) { function Vmsplice (line 1334) | func Vmsplice(fd int, iovs []Iovec, flags int) (int, error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_386.go function Getpagesize (line 17) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 19) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 21) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 27) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 36) | func Pipe(p []int) (err error) { function Pipe2 (line 49) | func Pipe2(p []int, flags int) (err error) { function mmap (line 97) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... type rlimit32 (line 105) | type rlimit32 struct constant rlimInf32 (line 112) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 113) | rlimInf64 = ^uint64(0) function Getrlimit (line 115) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 143) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function seek (line 170) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal... function Seek (line 172) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { constant _SOCKET (line 195) | _SOCKET = 1 constant _BIND (line 196) | _BIND = 2 constant _CONNECT (line 197) | _CONNECT = 3 constant _LISTEN (line 198) | _LISTEN = 4 constant _ACCEPT (line 199) | _ACCEPT = 5 constant _GETSOCKNAME (line 200) | _GETSOCKNAME = 6 constant _GETPEERNAME (line 201) | _GETPEERNAME = 7 constant _SOCKETPAIR (line 202) | _SOCKETPAIR = 8 constant _SEND (line 203) | _SEND = 9 constant _RECV (line 204) | _RECV = 10 constant _SENDTO (line 205) | _SENDTO = 11 constant _RECVFROM (line 206) | _RECVFROM = 12 constant _SHUTDOWN (line 207) | _SHUTDOWN = 13 constant _SETSOCKOPT (line 208) | _SETSOCKOPT = 14 constant _GETSOCKOPT (line 209) | _GETSOCKOPT = 15 constant _SENDMSG (line 210) | _SENDMSG = 16 constant _RECVMSG (line 211) | _RECVMSG = 17 constant _ACCEPT4 (line 212) | _ACCEPT4 = 18 constant _RECVMMSG (line 213) | _RECVMMSG = 19 constant _SENDMMSG (line 214) | _SENDMMSG = 20 function socketcall (line 217) | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err sy... function rawsocketcall (line 218) | func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err... function accept (line 220) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 228) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function getsockname (line 236) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err... function getpeername (line 244) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err... function socketpair (line 252) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { function bind (line 260) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 268) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 276) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 284) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 292) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 300) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ... function sendto (line 312) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock... function recvmsg (line 324) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 332) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function Listen (line 340) | func Listen(s int, n int) (err error) { function Shutdown (line 348) | func Shutdown(s, how int) (err error) { function Fstatfs (line 356) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 364) | func Statfs(path string, buf *Statfs_t) (err error) { method PC (line 376) | func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) } method SetPC (line 378) | func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) } method SetLen (line 380) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 384) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 388) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 394) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go function Gettimeofday (line 64) | func Gettimeofday(tv *Timeval) (err error) { function Getpagesize (line 72) | func Getpagesize() int { return 4096 } function Time (line 74) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 88) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 90) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 96) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 105) | func Pipe(p []int) (err error) { function Pipe2 (line 118) | func Pipe2(p []int, flags int) (err error) { method PC (line 129) | func (r *PtraceRegs) PC() uint64 { return r.Rip } method SetPC (line 131) | func (r *PtraceRegs) SetPC(pc uint64) { r.Rip = pc } method SetLen (line 133) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 137) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 141) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 147) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go function gettimeofday (line 13) | func gettimeofday(tv *Timeval) (err syscall.Errno) FILE: vendor/golang.org/x/sys/unix/syscall_linux_arm.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 31) | func Pipe(p []int) (err error) { function Pipe2 (line 44) | func Pipe2(p []int, flags int) (err error) { function seek (line 57) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal... function Seek (line 59) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Time (line 114) | func Time(t *Time_t) (Time_t, error) { function Utime (line 126) | func Utime(path string, buf *Utimbuf) error { function Fadvise (line 139) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fstatfs (line 149) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 157) | func Statfs(path string, buf *Statfs_t) (err error) { function mmap (line 169) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... type rlimit32 (line 177) | type rlimit32 struct constant rlimInf32 (line 184) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 185) | rlimInf64 = ^uint64(0) function Getrlimit (line 187) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 215) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 240) | func (r *PtraceRegs) PC() uint64 { return uint64(r.Uregs[15]) } method SetPC (line 242) | func (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) } method SetLen (line 244) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 248) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 252) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 258) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_arm64.go function Stat (line 36) | func Stat(path string, stat *Stat_t) (err error) { function Lchown (line 40) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 44) | func Lstat(path string, stat *Stat_t) (err error) { function Getpagesize (line 69) | func Getpagesize() int { return 65536 } function TimespecToNsec (line 73) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 75) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 81) | func NsecToTimeval(nsec int64) (tv Timeval) { function Time (line 88) | func Time(t *Time_t) (Time_t, error) { function Utime (line 100) | func Utime(path string, buf *Utimbuf) error { function Pipe (line 108) | func Pipe(p []int) (err error) { function Pipe2 (line 121) | func Pipe2(p []int, flags int) (err error) { method PC (line 132) | func (r *PtraceRegs) PC() uint64 { return r.Pc } method SetPC (line 134) | func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc } method SetLen (line 136) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 140) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 144) | func (cmsg *Cmsghdr) SetLen(length int) { function InotifyInit (line 148) | func InotifyInit() (fd int, err error) { function Dup2 (line 152) | func Dup2(oldfd int, newfd int) (err error) { function Pause (line 156) | func Pause() (err error) { constant SYS_GETPGRP (line 168) | SYS_GETPGRP = 1060 constant SYS_UTIMES (line 169) | SYS_UTIMES = 1037 constant SYS_FUTIMESAT (line 170) | SYS_FUTIMESAT = 1066 constant SYS_PAUSE (line 171) | SYS_PAUSE = 1061 constant SYS_USTAT (line 172) | SYS_USTAT = 1070 constant SYS_UTIME (line 173) | SYS_UTIME = 1063 constant SYS_LCHOWN (line 174) | SYS_LCHOWN = 1032 constant SYS_TIME (line 175) | SYS_TIME = 1062 constant SYS_EPOLL_CREATE (line 176) | SYS_EPOLL_CREATE = 1042 constant SYS_EPOLL_WAIT (line 177) | SYS_EPOLL_WAIT = 1069 function Poll (line 180) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go function Getpagesize (line 58) | func Getpagesize() int { return 65536 } function Time (line 62) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 76) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 78) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 84) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 91) | func Pipe(p []int) (err error) { function Pipe2 (line 104) | func Pipe2(p []int, flags int) (err error) { function Ioperm (line 115) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 119) | func Iopl(level int) (err error) { type stat_t (line 123) | type stat_t struct function Fstat (line 149) | func Fstat(fd int, s *Stat_t) (err error) { function Lstat (line 156) | func Lstat(path string, s *Stat_t) (err error) { function Stat (line 163) | func Stat(path string, s *Stat_t) (err error) { function fillStat_t (line 170) | func fillStat_t(s *Stat_t, st *stat_t) { method PC (line 186) | func (r *PtraceRegs) PC() uint64 { return r.Epc } method SetPC (line 188) | func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc } method SetLen (line 190) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 194) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 198) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 204) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go function Syscall9 (line 15) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function Fstatfs (line 74) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 82) | func Statfs(path string, buf *Statfs_t) (err error) { function Seek (line 94) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function TimespecToNsec (line 102) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 104) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 110) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe2 (line 119) | func Pipe2(p []int, flags int) (err error) { function Pipe (line 130) | func Pipe(p []int) (err error) { function mmap (line 143) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... constant rlimInf32 (line 151) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 152) | rlimInf64 = ^uint64(0) type rlimit32 (line 154) | type rlimit32 struct function Getrlimit (line 161) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 189) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 214) | func (r *PtraceRegs) PC() uint64 { return r.Epc } method SetPC (line 216) | func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc } method SetLen (line 218) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 222) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 226) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 232) | func Poll(fds []PollFd, timeout int) (n int, err error) { function Getpagesize (line 239) | func Getpagesize() int { return 4096 } FILE: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go function Getpagesize (line 64) | func Getpagesize() int { return 65536 } function TimespecToNsec (line 71) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 73) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 79) | func NsecToTimeval(nsec int64) (tv Timeval) { method PC (line 86) | func (r *PtraceRegs) PC() uint64 { return r.Nip } method SetPC (line 88) | func (r *PtraceRegs) SetPC(pc uint64) { r.Nip = pc } method SetLen (line 90) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 94) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 98) | func (cmsg *Cmsghdr) SetLen(length int) { function Pipe (line 104) | func Pipe(p []int) (err error) { function Pipe2 (line 117) | func Pipe2(p []int, flags int) (err error) { function Poll (line 130) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go function Getpagesize (line 49) | func Getpagesize() int { return 4096 } function Time (line 53) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 67) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 69) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 75) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 84) | func Pipe(p []int) (err error) { function Pipe2 (line 95) | func Pipe2(p []int, flags int) (err error) { function Ioperm (line 106) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 110) | func Iopl(level int) (err error) { method PC (line 114) | func (r *PtraceRegs) PC() uint64 { return r.Psw.Addr } method SetPC (line 116) | func (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc } method SetLen (line 118) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 122) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 126) | func (cmsg *Cmsghdr) SetLen(length int) { function mmap (line 132) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... constant netSocket (line 147) | netSocket = 1 constant netBind (line 148) | netBind = 2 constant netConnect (line 149) | netConnect = 3 constant netListen (line 150) | netListen = 4 constant netAccept (line 151) | netAccept = 5 constant netGetSockName (line 152) | netGetSockName = 6 constant netGetPeerName (line 153) | netGetPeerName = 7 constant netSocketPair (line 154) | netSocketPair = 8 constant netSend (line 155) | netSend = 9 constant netRecv (line 156) | netRecv = 10 constant netSendTo (line 157) | netSendTo = 11 constant netRecvFrom (line 158) | netRecvFrom = 12 constant netShutdown (line 159) | netShutdown = 13 constant netSetSockOpt (line 160) | netSetSockOpt = 14 constant netGetSockOpt (line 161) | netGetSockOpt = 15 constant netSendMsg (line 162) | netSendMsg = 16 constant netRecvMsg (line 163) | netRecvMsg = 17 constant netAccept4 (line 164) | netAccept4 = 18 constant netRecvMMsg (line 165) | netRecvMMsg = 19 constant netSendMMsg (line 166) | netSendMMsg = 20 function accept (line 169) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (int, error) { function accept4 (line 178) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function getsockname (line 187) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error { function getpeername (line 196) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error { function socketpair (line 205) | func socketpair(domain int, typ int, flags int, fd *[2]int32) error { function bind (line 214) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) error { function connect (line 223) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) error { function socket (line 232) | func socket(domain int, typ int, proto int) (int, error) { function getsockopt (line 241) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 250) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 259) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ... function sendto (line 272) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock... function recvmsg (line 285) | func recvmsg(s int, msg *Msghdr, flags int) (int, error) { function sendmsg (line 294) | func sendmsg(s int, msg *Msghdr, flags int) (int, error) { function Listen (line 303) | func Listen(s int, n int) error { function Shutdown (line 312) | func Shutdown(s, how int) error { function Poll (line 323) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go function sysconf (line 66) | func sysconf(name int) (n int64, err syscall.Errno) function Getpagesize (line 72) | func Getpagesize() int { function Ioperm (line 81) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 85) | func Iopl(level int) (err error) { function Time (line 91) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 105) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 107) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 113) | func NsecToTimeval(nsec int64) (tv Timeval) { method PC (line 120) | func (r *PtraceRegs) PC() uint64 { return r.Tpc } method SetPC (line 122) | func (r *PtraceRegs) SetPC(pc uint64) { r.Tpc = pc } method SetLen (line 124) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 128) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 132) | func (cmsg *Cmsghdr) SetLen(length int) { function Pipe (line 138) | func Pipe(p []int) (err error) { function Pipe2 (line 151) | func Pipe2(p []int, flags int) (err error) { function Poll (line 164) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd.go type SockaddrDatalink (line 20) | type SockaddrDatalink struct function Syscall9 (line 32) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function sysctlNodes (line 34) | func sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) { function nametomib (line 57) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 96) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 100) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 104) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 109) | func Pipe(p []int) (err error) { function Getdirentries (line 118) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function sendfile (line 123) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_no_getwd.go constant ImplementsGetwd (line 9) | ImplementsGetwd = false function Getwd (line 11) | func Getwd() (string, error) { return "", ENOTSUP } FILE: vendor/golang.org/x/sys/unix/syscall_openbsd.go type SockaddrDatalink (line 20) | type SockaddrDatalink struct function Syscall9 (line 32) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function nametomib (line 34) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 56) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 60) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 64) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 69) | func Pipe(p []int) (err error) { function Getdirentries (line 81) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function sendfile (line 86) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Getfsstat (line 90) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go function Getpagesize (line 11) | func Getpagesize() int { return syscall.Getpagesize() } function TimespecToNsec (line 13) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 15) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 21) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 28) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 34) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 38) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 42) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_solaris.go type syscallFunc (line 22) | type syscallFunc function rawSysvicall6 (line 24) | func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 ... function sysvicall6 (line 25) | func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uin... type SockaddrDatalink (line 27) | type SockaddrDatalink struct function clen (line 38) | func clen(n []byte) int { function direntIno (line 47) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 51) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 55) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 65) | func Pipe(p []int) (err error) { method sockaddr (line 79) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 93) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 108) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { function Getsockname (line 134) | func Getsockname(fd int) (sa Sockaddr, err error) { constant ImplementsGetwd (line 143) | ImplementsGetwd = true function Getwd (line 147) | func Getwd() (wd string, err error) { function Getgroups (line 168) | func Getgroups() (gids []int, err error) { function Setgroups (line 193) | func Setgroups(gids []int) (err error) { function ReadDirent (line 205) | func ReadDirent(fd int, buf []byte) (n int, err error) { type WaitStatus (line 217) | type WaitStatus method Exited (line 228) | func (w WaitStatus) Exited() bool { return w&mask == exited } method ExitStatus (line 230) | func (w WaitStatus) ExitStatus() int { method Signaled (line 237) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Signal (line 239) | func (w WaitStatus) Signal() syscall.Signal { method CoreDump (line 247) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method Stopped (line 249) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca... method Continued (line 251) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys... method StopSignal (line 253) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 260) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 220) | mask = 0x7F constant core (line 221) | core = 0x80 constant shift (line 222) | shift = 8 constant exited (line 224) | exited = 0 constant stopped (line 225) | stopped = 0x7F function Wait4 (line 264) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (i... function Gethostname (line 279) | func Gethostname() (name string, err error) { function Utimes (line 294) | func Utimes(path string, tv []Timeval) (err error) { function UtimesNano (line 306) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 316) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function FcntlFlock (line 329) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error { function Futimesat (line 339) | func Futimesat(dirfd int, path string, tv []Timeval) error { function Futimes (line 356) | func Futimes(fd int, tv []Timeval) error { function anyToSockaddr (line 366) | func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 410) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Recvmsg (line 427) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 459) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 466) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Acct (line 505) | func Acct(path string) (err error) { function IoctlSetInt (line 524) | func IoctlSetInt(fd int, req uint, value int) (err error) { function IoctlSetWinsize (line 528) | func IoctlSetWinsize(fd int, req uint, value *Winsize) (err error) { function IoctlSetTermios (line 532) | func IoctlSetTermios(fd int, req uint, value *Termios) (err error) { function IoctlSetTermio (line 536) | func IoctlSetTermio(fd int, req uint, value *Termio) (err error) { function IoctlGetInt (line 540) | func IoctlGetInt(fd int, req uint) (int, error) { function IoctlGetWinsize (line 546) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { function IoctlGetTermios (line 552) | func IoctlGetTermios(fd int, req uint) (*Termios, error) { function IoctlGetTermio (line 558) | func IoctlGetTermio(fd int, req uint) (*Termio, error) { function readlen (line 671) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 680) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function Mmap (line 695) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 699) | func Munmap(b []byte) (err error) { function Getpagesize (line 709) | func Getpagesize() int { FILE: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go function TimespecToNsec (line 9) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 11) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 17) | func NsecToTimeval(nsec int64) (tv Timeval) { method SetLen (line 24) | func (iov *Iovec) SetLen(length int) { method SetLen (line 28) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 32) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... FILE: vendor/golang.org/x/sys/unix/syscall_unix.go constant darwin64Bit (line 23) | darwin64Bit = runtime.GOOS == "darwin" && sizeofPtr == 8 constant dragonfly64Bit (line 24) | dragonfly64Bit = runtime.GOOS == "dragonfly" && sizeofPtr == 8 constant netbsd32Bit (line 25) | netbsd32Bit = runtime.GOOS == "netbsd" && sizeofPtr == 4 constant solaris64Bit (line 26) | solaris64Bit = runtime.GOOS == "solaris" && sizeofPtr == 8 function errnoErr (line 39) | func errnoErr(e syscall.Errno) error { type mmapper (line 55) | type mmapper struct method Mmap (line 62) | func (m *mmapper) Mmap(fd int, offset int64, length int, prot int, fla... method Munmap (line 91) | func (m *mmapper) Munmap(data []byte) (err error) { function Read (line 113) | func Read(fd int, p []byte) (n int, err error) { function Write (line 126) | func Write(fd int, p []byte) (n int, err error) { type Sockaddr (line 141) | type Sockaddr interface type SockaddrInet4 (line 145) | type SockaddrInet4 struct type SockaddrInet6 (line 151) | type SockaddrInet6 struct type SockaddrUnix (line 158) | type SockaddrUnix struct function Bind (line 163) | func Bind(fd int, sa Sockaddr) (err error) { function Connect (line 171) | func Connect(fd int, sa Sockaddr) (err error) { function Getpeername (line 179) | func Getpeername(fd int) (sa Sockaddr, err error) { function GetsockoptInt (line 188) | func GetsockoptInt(fd, level, opt int) (value int, err error) { function Recvfrom (line 195) | func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err er... function Sendto (line 207) | func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error) { function SetsockoptByte (line 215) | func SetsockoptByte(fd, level, opt int, value byte) (err error) { function SetsockoptInt (line 219) | func SetsockoptInt(fd, level, opt int, value int) (err error) { function SetsockoptInet4Addr (line 224) | func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error) { function SetsockoptIPMreq (line 228) | func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error) { function SetsockoptIPv6Mreq (line 232) | func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error) { function SetsockoptICMPv6Filter (line 236) | func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) er... function SetsockoptLinger (line 240) | func SetsockoptLinger(fd, level, opt int, l *Linger) (err error) { function SetsockoptString (line 244) | func SetsockoptString(fd, level, opt int, s string) (err error) { function SetsockoptTimeval (line 248) | func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) { function Socket (line 252) | func Socket(domain, typ, proto int) (fd int, err error) { function Socketpair (line 260) | func Socketpair(domain, typ, proto int) (fd [2]int, err error) { function Sendfile (line 270) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function CloseOnExec (line 279) | func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) } function SetNonblock (line 281) | func SetNonblock(fd int, nonblocking bool) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_unix_gc.go function Syscall (line 12) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) function Syscall6 (line 13) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function RawSyscall (line 14) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 15) | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, ... FILE: vendor/golang.org/x/sys/unix/types_darwin.go constant sizeofPtr (line 74) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 75) | sizeofShort = C.sizeof_short constant sizeofInt (line 76) | sizeofInt = C.sizeof_int constant sizeofLong (line 77) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 78) | sizeofLongLong = C.sizeof_longlong type _C_short (line 84) | type _C_short type _C_int (line 85) | type _C_int type _C_long (line 86) | type _C_long type _C_long_long (line 87) | type _C_long_long type Timespec (line 92) | type Timespec type Timeval (line 94) | type Timeval type Timeval32 (line 96) | type Timeval32 type Rusage (line 100) | type Rusage type Rlimit (line 102) | type Rlimit type _Gid_t (line 104) | type _Gid_t type Stat_t (line 108) | type Stat_t type Statfs_t (line 110) | type Statfs_t type Flock_t (line 112) | type Flock_t type Fstore_t (line 114) | type Fstore_t type Radvisory_t (line 116) | type Radvisory_t type Fbootstraptransfer_t (line 118) | type Fbootstraptransfer_t type Log2phys_t (line 120) | type Log2phys_t type Fsid (line 122) | type Fsid type Dirent (line 124) | type Dirent type RawSockaddrInet4 (line 128) | type RawSockaddrInet4 type RawSockaddrInet6 (line 130) | type RawSockaddrInet6 type RawSockaddrUnix (line 132) | type RawSockaddrUnix type RawSockaddrDatalink (line 134) | type RawSockaddrDatalink type RawSockaddr (line 136) | type RawSockaddr type RawSockaddrAny (line 138) | type RawSockaddrAny type _Socklen (line 140) | type _Socklen type Linger (line 142) | type Linger type Iovec (line 144) | type Iovec type IPMreq (line 146) | type IPMreq type IPv6Mreq (line 148) | type IPv6Mreq type Msghdr (line 150) | type Msghdr type Cmsghdr (line 152) | type Cmsghdr type Inet4Pktinfo (line 154) | type Inet4Pktinfo type Inet6Pktinfo (line 156) | type Inet6Pktinfo type IPv6MTUInfo (line 158) | type IPv6MTUInfo type ICMPv6Filter (line 160) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 163) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 164) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 165) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 166) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 167) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 168) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 169) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 170) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 171) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 172) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet4Pktinfo (line 173) | SizeofInet4Pktinfo = C.sizeof_struct_in_pktinfo constant SizeofInet6Pktinfo (line 174) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 175) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 176) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 182) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 183) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 184) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 189) | type Kevent_t type FdSet (line 193) | type FdSet constant SizeofIfMsghdr (line 198) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 199) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 200) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfmaMsghdr (line 201) | SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr constant SizeofIfmaMsghdr2 (line 202) | SizeofIfmaMsghdr2 = C.sizeof_struct_ifma_msghdr2 constant SizeofRtMsghdr (line 203) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 204) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 207) | type IfMsghdr type IfData (line 209) | type IfData type IfaMsghdr (line 211) | type IfaMsghdr type IfmaMsghdr (line 213) | type IfmaMsghdr type IfmaMsghdr2 (line 215) | type IfmaMsghdr2 type RtMsghdr (line 217) | type RtMsghdr type RtMetrics (line 219) | type RtMetrics constant SizeofBpfVersion (line 224) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 225) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 226) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 227) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 228) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 231) | type BpfVersion type BpfStat (line 233) | type BpfStat type BpfProgram (line 235) | type BpfProgram type BpfInsn (line 237) | type BpfInsn type BpfHdr (line 239) | type BpfHdr type Termios (line 243) | type Termios type Winsize (line 245) | type Winsize constant AT_FDCWD (line 250) | AT_FDCWD = C.AT_FDCWD constant AT_REMOVEDIR (line 251) | AT_REMOVEDIR = C.AT_REMOVEDIR constant AT_SYMLINK_FOLLOW (line 252) | AT_SYMLINK_FOLLOW = C.AT_SYMLINK_FOLLOW constant AT_SYMLINK_NOFOLLOW (line 253) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW FILE: vendor/golang.org/x/sys/unix/types_dragonfly.go constant sizeofPtr (line 69) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 70) | sizeofShort = C.sizeof_short constant sizeofInt (line 71) | sizeofInt = C.sizeof_int constant sizeofLong (line 72) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 73) | sizeofLongLong = C.sizeof_longlong type _C_short (line 79) | type _C_short type _C_int (line 80) | type _C_int type _C_long (line 81) | type _C_long type _C_long_long (line 82) | type _C_long_long type Timespec (line 87) | type Timespec type Timeval (line 89) | type Timeval type Rusage (line 93) | type Rusage type Rlimit (line 95) | type Rlimit type _Gid_t (line 97) | type _Gid_t constant S_IFMT (line 102) | S_IFMT = C.S_IFMT constant S_IFIFO (line 103) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 104) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 105) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 106) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 107) | S_IFREG = C.S_IFREG constant S_IFLNK (line 108) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 109) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 110) | S_ISUID = C.S_ISUID constant S_ISGID (line 111) | S_ISGID = C.S_ISGID constant S_ISVTX (line 112) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 113) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 114) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 115) | S_IXUSR = C.S_IXUSR type Stat_t (line 118) | type Stat_t type Statfs_t (line 120) | type Statfs_t type Flock_t (line 122) | type Flock_t type Dirent (line 124) | type Dirent type Fsid (line 126) | type Fsid type RawSockaddrInet4 (line 130) | type RawSockaddrInet4 type RawSockaddrInet6 (line 132) | type RawSockaddrInet6 type RawSockaddrUnix (line 134) | type RawSockaddrUnix type RawSockaddrDatalink (line 136) | type RawSockaddrDatalink type RawSockaddr (line 138) | type RawSockaddr type RawSockaddrAny (line 140) | type RawSockaddrAny type _Socklen (line 142) | type _Socklen type Linger (line 144) | type Linger type Iovec (line 146) | type Iovec type IPMreq (line 148) | type IPMreq type IPv6Mreq (line 150) | type IPv6Mreq type Msghdr (line 152) | type Msghdr type Cmsghdr (line 154) | type Cmsghdr type Inet6Pktinfo (line 156) | type Inet6Pktinfo type IPv6MTUInfo (line 158) | type IPv6MTUInfo type ICMPv6Filter (line 160) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 163) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 164) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 165) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 166) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 167) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 168) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 169) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 170) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 171) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 172) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 173) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 174) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 175) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 181) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 182) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 183) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 188) | type Kevent_t type FdSet (line 192) | type FdSet constant SizeofIfMsghdr (line 197) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 198) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 199) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfmaMsghdr (line 200) | SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr constant SizeofIfAnnounceMsghdr (line 201) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 202) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 203) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 206) | type IfMsghdr type IfData (line 208) | type IfData type IfaMsghdr (line 210) | type IfaMsghdr type IfmaMsghdr (line 212) | type IfmaMsghdr type IfAnnounceMsghdr (line 214) | type IfAnnounceMsghdr type RtMsghdr (line 216) | type RtMsghdr type RtMetrics (line 218) | type RtMetrics constant SizeofBpfVersion (line 223) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 224) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 225) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 226) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 227) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 230) | type BpfVersion type BpfStat (line 232) | type BpfStat type BpfProgram (line 234) | type BpfProgram type BpfInsn (line 236) | type BpfInsn type BpfHdr (line 238) | type BpfHdr type Termios (line 242) | type Termios constant AT_FDCWD (line 247) | AT_FDCWD = C.AT_FDCWD constant AT_SYMLINK_NOFOLLOW (line 248) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW FILE: vendor/golang.org/x/sys/unix/types_freebsd.go constant sizeofPtr (line 158) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 159) | sizeofShort = C.sizeof_short constant sizeofInt (line 160) | sizeofInt = C.sizeof_int constant sizeofLong (line 161) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 162) | sizeofLongLong = C.sizeof_longlong type _C_short (line 168) | type _C_short type _C_int (line 169) | type _C_int type _C_long (line 170) | type _C_long type _C_long_long (line 171) | type _C_long_long type Timespec (line 176) | type Timespec type Timeval (line 178) | type Timeval type Rusage (line 182) | type Rusage type Rlimit (line 184) | type Rlimit type _Gid_t (line 186) | type _Gid_t constant S_IFMT (line 191) | S_IFMT = C.S_IFMT constant S_IFIFO (line 192) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 193) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 194) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 195) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 196) | S_IFREG = C.S_IFREG constant S_IFLNK (line 197) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 198) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 199) | S_ISUID = C.S_ISUID constant S_ISGID (line 200) | S_ISGID = C.S_ISGID constant S_ISVTX (line 201) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 202) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 203) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 204) | S_IXUSR = C.S_IXUSR type Stat_t (line 207) | type Stat_t type Statfs_t (line 209) | type Statfs_t type Flock_t (line 211) | type Flock_t type Dirent (line 213) | type Dirent type Fsid (line 215) | type Fsid constant FADV_NORMAL (line 220) | FADV_NORMAL = C.POSIX_FADV_NORMAL constant FADV_RANDOM (line 221) | FADV_RANDOM = C.POSIX_FADV_RANDOM constant FADV_SEQUENTIAL (line 222) | FADV_SEQUENTIAL = C.POSIX_FADV_SEQUENTIAL constant FADV_WILLNEED (line 223) | FADV_WILLNEED = C.POSIX_FADV_WILLNEED constant FADV_DONTNEED (line 224) | FADV_DONTNEED = C.POSIX_FADV_DONTNEED constant FADV_NOREUSE (line 225) | FADV_NOREUSE = C.POSIX_FADV_NOREUSE type RawSockaddrInet4 (line 230) | type RawSockaddrInet4 type RawSockaddrInet6 (line 232) | type RawSockaddrInet6 type RawSockaddrUnix (line 234) | type RawSockaddrUnix type RawSockaddrDatalink (line 236) | type RawSockaddrDatalink type RawSockaddr (line 238) | type RawSockaddr type RawSockaddrAny (line 240) | type RawSockaddrAny type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger type Iovec (line 246) | type Iovec type IPMreq (line 248) | type IPMreq type IPMreqn (line 250) | type IPMreqn type IPv6Mreq (line 252) | type IPv6Mreq type Msghdr (line 254) | type Msghdr type Cmsghdr (line 256) | type Cmsghdr type Inet6Pktinfo (line 258) | type Inet6Pktinfo type IPv6MTUInfo (line 260) | type IPv6MTUInfo type ICMPv6Filter (line 262) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 265) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 266) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 267) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 268) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 269) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 270) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 271) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPMreqn (line 272) | SizeofIPMreqn = C.sizeof_struct_ip_mreqn constant SizeofIPv6Mreq (line 273) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 274) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 275) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 276) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 277) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 278) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 284) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 285) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 286) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 291) | type Kevent_t type FdSet (line 295) | type FdSet constant sizeofIfMsghdr (line 300) | sizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfMsghdr (line 301) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr8 constant sizeofIfData (line 302) | sizeofIfData = C.sizeof_struct_if_data constant SizeofIfData (line 303) | SizeofIfData = C.sizeof_struct_if_data8 constant SizeofIfaMsghdr (line 304) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfmaMsghdr (line 305) | SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr constant SizeofIfAnnounceMsghdr (line 306) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 307) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 308) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type ifMsghdr (line 311) | type ifMsghdr type IfMsghdr (line 313) | type IfMsghdr type ifData (line 315) | type ifData type IfData (line 317) | type IfData type IfaMsghdr (line 319) | type IfaMsghdr type IfmaMsghdr (line 321) | type IfmaMsghdr type IfAnnounceMsghdr (line 323) | type IfAnnounceMsghdr type RtMsghdr (line 325) | type RtMsghdr type RtMetrics (line 327) | type RtMetrics constant SizeofBpfVersion (line 332) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 333) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfZbuf (line 334) | SizeofBpfZbuf = C.sizeof_struct_bpf_zbuf constant SizeofBpfProgram (line 335) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 336) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 337) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr constant SizeofBpfZbufHeader (line 338) | SizeofBpfZbufHeader = C.sizeof_struct_bpf_zbuf_header type BpfVersion (line 341) | type BpfVersion type BpfStat (line 343) | type BpfStat type BpfZbuf (line 345) | type BpfZbuf type BpfProgram (line 347) | type BpfProgram type BpfInsn (line 349) | type BpfInsn type BpfHdr (line 351) | type BpfHdr type BpfZbufHeader (line 353) | type BpfZbufHeader type Termios (line 357) | type Termios type Winsize (line 359) | type Winsize constant AT_FDCWD (line 364) | AT_FDCWD = C.AT_FDCWD constant AT_REMOVEDIR (line 365) | AT_REMOVEDIR = C.AT_REMOVEDIR constant AT_SYMLINK_FOLLOW (line 366) | AT_SYMLINK_FOLLOW = C.AT_SYMLINK_FOLLOW constant AT_SYMLINK_NOFOLLOW (line 367) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW type CapRights (line 372) | type CapRights FILE: vendor/golang.org/x/sys/unix/types_netbsd.go constant sizeofPtr (line 71) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 72) | sizeofShort = C.sizeof_short constant sizeofInt (line 73) | sizeofInt = C.sizeof_int constant sizeofLong (line 74) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 75) | sizeofLongLong = C.sizeof_longlong type _C_short (line 81) | type _C_short type _C_int (line 82) | type _C_int type _C_long (line 83) | type _C_long type _C_long_long (line 84) | type _C_long_long type Timespec (line 89) | type Timespec type Timeval (line 91) | type Timeval type Rusage (line 95) | type Rusage type Rlimit (line 97) | type Rlimit type _Gid_t (line 99) | type _Gid_t type Stat_t (line 103) | type Stat_t type Statfs_t (line 105) | type Statfs_t type Flock_t (line 107) | type Flock_t type Dirent (line 109) | type Dirent type Fsid (line 111) | type Fsid type RawSockaddrInet4 (line 115) | type RawSockaddrInet4 type RawSockaddrInet6 (line 117) | type RawSockaddrInet6 type RawSockaddrUnix (line 119) | type RawSockaddrUnix type RawSockaddrDatalink (line 121) | type RawSockaddrDatalink type RawSockaddr (line 123) | type RawSockaddr type RawSockaddrAny (line 125) | type RawSockaddrAny type _Socklen (line 127) | type _Socklen type Linger (line 129) | type Linger type Iovec (line 131) | type Iovec type IPMreq (line 133) | type IPMreq type IPv6Mreq (line 135) | type IPv6Mreq type Msghdr (line 137) | type Msghdr type Cmsghdr (line 139) | type Cmsghdr type Inet6Pktinfo (line 141) | type Inet6Pktinfo type IPv6MTUInfo (line 143) | type IPv6MTUInfo type ICMPv6Filter (line 145) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 148) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 149) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 150) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 151) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 152) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 153) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 154) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 155) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 156) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 157) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 158) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 159) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 160) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 166) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 167) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 168) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 173) | type Kevent_t type FdSet (line 177) | type FdSet constant SizeofIfMsghdr (line 182) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 183) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 184) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfAnnounceMsghdr (line 185) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 186) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 187) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 190) | type IfMsghdr type IfData (line 192) | type IfData type IfaMsghdr (line 194) | type IfaMsghdr type IfAnnounceMsghdr (line 196) | type IfAnnounceMsghdr type RtMsghdr (line 198) | type RtMsghdr type RtMetrics (line 200) | type RtMetrics type Mclpool (line 202) | type Mclpool constant SizeofBpfVersion (line 207) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 208) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 209) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 210) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 211) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 214) | type BpfVersion type BpfStat (line 216) | type BpfStat type BpfProgram (line 218) | type BpfProgram type BpfInsn (line 220) | type BpfInsn type BpfHdr (line 222) | type BpfHdr type BpfTimeval (line 224) | type BpfTimeval type Termios (line 228) | type Termios constant AT_FDCWD (line 233) | AT_FDCWD = C.AT_FDCWD constant AT_SYMLINK_NOFOLLOW (line 234) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW type Sysctlnode (line 239) | type Sysctlnode FILE: vendor/golang.org/x/sys/unix/types_openbsd.go constant sizeofPtr (line 70) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 71) | sizeofShort = C.sizeof_short constant sizeofInt (line 72) | sizeofInt = C.sizeof_int constant sizeofLong (line 73) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 74) | sizeofLongLong = C.sizeof_longlong type _C_short (line 80) | type _C_short type _C_int (line 81) | type _C_int type _C_long (line 82) | type _C_long type _C_long_long (line 83) | type _C_long_long type Timespec (line 88) | type Timespec type Timeval (line 90) | type Timeval type Rusage (line 94) | type Rusage type Rlimit (line 96) | type Rlimit type _Gid_t (line 98) | type _Gid_t constant S_IFMT (line 103) | S_IFMT = C.S_IFMT constant S_IFIFO (line 104) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 105) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 106) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 107) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 108) | S_IFREG = C.S_IFREG constant S_IFLNK (line 109) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 110) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 111) | S_ISUID = C.S_ISUID constant S_ISGID (line 112) | S_ISGID = C.S_ISGID constant S_ISVTX (line 113) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 114) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 115) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 116) | S_IXUSR = C.S_IXUSR type Stat_t (line 119) | type Stat_t type Statfs_t (line 121) | type Statfs_t type Flock_t (line 123) | type Flock_t type Dirent (line 125) | type Dirent type Fsid (line 127) | type Fsid type RawSockaddrInet4 (line 131) | type RawSockaddrInet4 type RawSockaddrInet6 (line 133) | type RawSockaddrInet6 type RawSockaddrUnix (line 135) | type RawSockaddrUnix type RawSockaddrDatalink (line 137) | type RawSockaddrDatalink type RawSockaddr (line 139) | type RawSockaddr type RawSockaddrAny (line 141) | type RawSockaddrAny type _Socklen (line 143) | type _Socklen type Linger (line 145) | type Linger type Iovec (line 147) | type Iovec type IPMreq (line 149) | type IPMreq type IPv6Mreq (line 151) | type IPv6Mreq type Msghdr (line 153) | type Msghdr type Cmsghdr (line 155) | type Cmsghdr type Inet6Pktinfo (line 157) | type Inet6Pktinfo type IPv6MTUInfo (line 159) | type IPv6MTUInfo type ICMPv6Filter (line 161) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 164) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 165) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 166) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 167) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 168) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 169) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 170) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 171) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 172) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 173) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 174) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 175) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 176) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 182) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 183) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 184) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 189) | type Kevent_t type FdSet (line 193) | type FdSet constant SizeofIfMsghdr (line 198) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 199) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 200) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfAnnounceMsghdr (line 201) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 202) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 203) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 206) | type IfMsghdr type IfData (line 208) | type IfData type IfaMsghdr (line 210) | type IfaMsghdr type IfAnnounceMsghdr (line 212) | type IfAnnounceMsghdr type RtMsghdr (line 214) | type RtMsghdr type RtMetrics (line 216) | type RtMetrics type Mclpool (line 218) | type Mclpool constant SizeofBpfVersion (line 223) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 224) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 225) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 226) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 227) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 230) | type BpfVersion type BpfStat (line 232) | type BpfStat type BpfProgram (line 234) | type BpfProgram type BpfInsn (line 236) | type BpfInsn type BpfHdr (line 238) | type BpfHdr type BpfTimeval (line 240) | type BpfTimeval type Termios (line 244) | type Termios constant AT_FDCWD (line 249) | AT_FDCWD = C.AT_FDCWD constant AT_SYMLINK_NOFOLLOW (line 250) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW FILE: vendor/golang.org/x/sys/unix/types_solaris.go constant sizeofPtr (line 80) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 81) | sizeofShort = C.sizeof_short constant sizeofInt (line 82) | sizeofInt = C.sizeof_int constant sizeofLong (line 83) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 84) | sizeofLongLong = C.sizeof_longlong constant PathMax (line 85) | PathMax = C.PATH_MAX constant MaxHostNameLen (line 86) | MaxHostNameLen = C.MAXHOSTNAMELEN type _C_short (line 92) | type _C_short type _C_int (line 93) | type _C_int type _C_long (line 94) | type _C_long type _C_long_long (line 95) | type _C_long_long type Timespec (line 100) | type Timespec type Timeval (line 102) | type Timeval type Timeval32 (line 104) | type Timeval32 type Tms (line 106) | type Tms type Utimbuf (line 108) | type Utimbuf type Rusage (line 112) | type Rusage type Rlimit (line 114) | type Rlimit type _Gid_t (line 116) | type _Gid_t constant S_IFMT (line 121) | S_IFMT = C.S_IFMT constant S_IFIFO (line 122) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 123) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 124) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 125) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 126) | S_IFREG = C.S_IFREG constant S_IFLNK (line 127) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 128) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 129) | S_ISUID = C.S_ISUID constant S_ISGID (line 130) | S_ISGID = C.S_ISGID constant S_ISVTX (line 131) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 132) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 133) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 134) | S_IXUSR = C.S_IXUSR type Stat_t (line 137) | type Stat_t type Flock_t (line 139) | type Flock_t type Dirent (line 141) | type Dirent type _Fsblkcnt_t (line 145) | type _Fsblkcnt_t type Statvfs_t (line 147) | type Statvfs_t type RawSockaddrInet4 (line 151) | type RawSockaddrInet4 type RawSockaddrInet6 (line 153) | type RawSockaddrInet6 type RawSockaddrUnix (line 155) | type RawSockaddrUnix type RawSockaddrDatalink (line 157) | type RawSockaddrDatalink type RawSockaddr (line 159) | type RawSockaddr type RawSockaddrAny (line 161) | type RawSockaddrAny type _Socklen (line 163) | type _Socklen type Linger (line 165) | type Linger type Iovec (line 167) | type Iovec type IPMreq (line 169) | type IPMreq type IPv6Mreq (line 171) | type IPv6Mreq type Msghdr (line 173) | type Msghdr type Cmsghdr (line 175) | type Cmsghdr type Inet6Pktinfo (line 177) | type Inet6Pktinfo type IPv6MTUInfo (line 179) | type IPv6MTUInfo type ICMPv6Filter (line 181) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 184) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 185) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 186) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 187) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 188) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 189) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 190) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 191) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 192) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 193) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 194) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 195) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 196) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter type FdSet (line 201) | type FdSet type Utsname (line 205) | type Utsname type Ustat_t (line 207) | type Ustat_t constant AT_FDCWD (line 210) | AT_FDCWD = C.AT_FDCWD constant AT_SYMLINK_NOFOLLOW (line 211) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW constant AT_SYMLINK_FOLLOW (line 212) | AT_SYMLINK_FOLLOW = C.AT_SYMLINK_FOLLOW constant AT_REMOVEDIR (line 213) | AT_REMOVEDIR = C.AT_REMOVEDIR constant AT_EACCESS (line 214) | AT_EACCESS = C.AT_EACCESS constant SizeofIfMsghdr (line 220) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 221) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 222) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofRtMsghdr (line 223) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 224) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 227) | type IfMsghdr type IfData (line 229) | type IfData type IfaMsghdr (line 231) | type IfaMsghdr type RtMsghdr (line 233) | type RtMsghdr type RtMetrics (line 235) | type RtMetrics constant SizeofBpfVersion (line 240) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 241) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 242) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 243) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 244) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 247) | type BpfVersion type BpfStat (line 249) | type BpfStat type BpfProgram (line 251) | type BpfProgram type BpfInsn (line 253) | type BpfInsn type BpfTimeval (line 255) | type BpfTimeval type BpfHdr (line 257) | type BpfHdr constant _SC_PAGESIZE (line 261) | _SC_PAGESIZE = C._SC_PAGESIZE type Termios (line 265) | type Termios type Termio (line 267) | type Termio type Winsize (line 269) | type Winsize FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant ALTWERASE (line 51) | ALTWERASE = 0x200 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 77) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 78) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 79) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 80) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 81) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 82) | BIOCGRTIMEOUT = 0x4008426e constant BIOCGSEESENT (line 83) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 84) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 85) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 86) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 87) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 88) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 89) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 90) | BIOCSETFNR = 0x8008427e constant BIOCSETIF (line 91) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 92) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 93) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 94) | BIOCSRTIMEOUT = 0x8008426d constant BIOCSSEESENT (line 95) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 96) | BIOCVERSION = 0x40044271 constant BPF_A (line 97) | BPF_A = 0x10 constant BPF_ABS (line 98) | BPF_ABS = 0x20 constant BPF_ADD (line 99) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 100) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 101) | BPF_ALU = 0x4 constant BPF_AND (line 102) | BPF_AND = 0x50 constant BPF_B (line 103) | BPF_B = 0x10 constant BPF_DIV (line 104) | BPF_DIV = 0x30 constant BPF_H (line 105) | BPF_H = 0x8 constant BPF_IMM (line 106) | BPF_IMM = 0x0 constant BPF_IND (line 107) | BPF_IND = 0x40 constant BPF_JA (line 108) | BPF_JA = 0x0 constant BPF_JEQ (line 109) | BPF_JEQ = 0x10 constant BPF_JGE (line 110) | BPF_JGE = 0x30 constant BPF_JGT (line 111) | BPF_JGT = 0x20 constant BPF_JMP (line 112) | BPF_JMP = 0x5 constant BPF_JSET (line 113) | BPF_JSET = 0x40 constant BPF_K (line 114) | BPF_K = 0x0 constant BPF_LD (line 115) | BPF_LD = 0x0 constant BPF_LDX (line 116) | BPF_LDX = 0x1 constant BPF_LEN (line 117) | BPF_LEN = 0x80 constant BPF_LSH (line 118) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 119) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 120) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 121) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 122) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 123) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 124) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 125) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 126) | BPF_MISC = 0x7 constant BPF_MSH (line 127) | BPF_MSH = 0xa0 constant BPF_MUL (line 128) | BPF_MUL = 0x20 constant BPF_NEG (line 129) | BPF_NEG = 0x80 constant BPF_OR (line 130) | BPF_OR = 0x40 constant BPF_RELEASE (line 131) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 132) | BPF_RET = 0x6 constant BPF_RSH (line 133) | BPF_RSH = 0x70 constant BPF_ST (line 134) | BPF_ST = 0x2 constant BPF_STX (line 135) | BPF_STX = 0x3 constant BPF_SUB (line 136) | BPF_SUB = 0x10 constant BPF_TAX (line 137) | BPF_TAX = 0x0 constant BPF_TXA (line 138) | BPF_TXA = 0x80 constant BPF_W (line 139) | BPF_W = 0x0 constant BPF_X (line 140) | BPF_X = 0x8 constant BRKINT (line 141) | BRKINT = 0x2 constant BS0 (line 142) | BS0 = 0x0 constant BS1 (line 143) | BS1 = 0x8000 constant BSDLY (line 144) | BSDLY = 0x8000 constant CFLUSH (line 145) | CFLUSH = 0xf constant CLOCAL (line 146) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 147) | CLOCK_MONOTONIC = 0x6 constant CLOCK_MONOTONIC_RAW (line 148) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_MONOTONIC_RAW_APPROX (line 149) | CLOCK_MONOTONIC_RAW_APPROX = 0x5 constant CLOCK_PROCESS_CPUTIME_ID (line 150) | CLOCK_PROCESS_CPUTIME_ID = 0xc constant CLOCK_REALTIME (line 151) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 152) | CLOCK_THREAD_CPUTIME_ID = 0x10 constant CLOCK_UPTIME_RAW (line 153) | CLOCK_UPTIME_RAW = 0x8 constant CLOCK_UPTIME_RAW_APPROX (line 154) | CLOCK_UPTIME_RAW_APPROX = 0x9 constant CR0 (line 155) | CR0 = 0x0 constant CR1 (line 156) | CR1 = 0x1000 constant CR2 (line 157) | CR2 = 0x2000 constant CR3 (line 158) | CR3 = 0x3000 constant CRDLY (line 159) | CRDLY = 0x3000 constant CREAD (line 160) | CREAD = 0x800 constant CRTSCTS (line 161) | CRTSCTS = 0x30000 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant DLT_A429 (line 174) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 175) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 176) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 177) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 178) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 179) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 180) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 181) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 182) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 183) | DLT_AURORA = 0x7e constant DLT_AX25 (line 184) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 185) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 186) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 187) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 188) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 189) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 190) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 191) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 192) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 193) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 194) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 195) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 196) | DLT_DBUS = 0xe7 constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 199) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 200) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 201) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 202) | DLT_EN3MB = 0x2 constant DLT_ENC (line 203) | DLT_ENC = 0x6d constant DLT_ERF (line 204) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 205) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 206) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 207) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 208) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 209) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 210) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 211) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 212) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 213) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 214) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 215) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 216) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 217) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 218) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 219) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 221) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 222) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 223) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 224) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 225) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 226) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 227) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 228) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 229) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 233) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 234) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 235) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 236) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 237) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 238) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 239) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 240) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 241) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 242) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 243) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 244) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 245) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 246) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 247) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 248) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 249) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 250) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 251) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 252) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 253) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 254) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 255) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 256) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 257) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 258) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 259) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 260) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 261) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 262) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 263) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 264) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 265) | DLT_LAPD = 0xcb constant DLT_LIN (line 266) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 267) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 268) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 269) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 270) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 271) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 272) | DLT_LOOP = 0x6c constant DLT_LTALK (line 273) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 274) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 275) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 276) | DLT_MFR = 0xb6 constant DLT_MOST (line 277) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 278) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 283) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 284) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 285) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 286) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 287) | DLT_NFLOG = 0xef constant DLT_NG40 (line 288) | DLT_NG40 = 0xf4 constant DLT_NULL (line 289) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 290) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 291) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 292) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 293) | DLT_PPI = 0xc0 constant DLT_PPP (line 294) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 295) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 296) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 297) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 298) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 299) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 300) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 301) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 302) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 303) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 304) | DLT_RAW = 0xc constant DLT_RIO (line 305) | DLT_RIO = 0x7c constant DLT_SCCP (line 306) | DLT_SCCP = 0x8e constant DLT_SITA (line 307) | DLT_SITA = 0xc4 constant DLT_SLIP (line 308) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 309) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 310) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 311) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 312) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 313) | DLT_TZSP = 0x80 constant DLT_USB (line 314) | DLT_USB = 0xba constant DLT_USB_LINUX (line 315) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 316) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 317) | DLT_USER0 = 0x93 constant DLT_USER1 (line 318) | DLT_USER1 = 0x94 constant DLT_USER10 (line 319) | DLT_USER10 = 0x9d constant DLT_USER11 (line 320) | DLT_USER11 = 0x9e constant DLT_USER12 (line 321) | DLT_USER12 = 0x9f constant DLT_USER13 (line 322) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 323) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 324) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 325) | DLT_USER2 = 0x95 constant DLT_USER3 (line 326) | DLT_USER3 = 0x96 constant DLT_USER4 (line 327) | DLT_USER4 = 0x97 constant DLT_USER5 (line 328) | DLT_USER5 = 0x98 constant DLT_USER6 (line 329) | DLT_USER6 = 0x99 constant DLT_USER7 (line 330) | DLT_USER7 = 0x9a constant DLT_USER8 (line 331) | DLT_USER8 = 0x9b constant DLT_USER9 (line 332) | DLT_USER9 = 0x9c constant DLT_WIHART (line 333) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 334) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 335) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 336) | DT_BLK = 0x6 constant DT_CHR (line 337) | DT_CHR = 0x2 constant DT_DIR (line 338) | DT_DIR = 0x4 constant DT_FIFO (line 339) | DT_FIFO = 0x1 constant DT_LNK (line 340) | DT_LNK = 0xa constant DT_REG (line 341) | DT_REG = 0x8 constant DT_SOCK (line 342) | DT_SOCK = 0xc constant DT_UNKNOWN (line 343) | DT_UNKNOWN = 0x0 constant DT_WHT (line 344) | DT_WHT = 0xe constant ECHO (line 345) | ECHO = 0x8 constant ECHOCTL (line 346) | ECHOCTL = 0x40 constant ECHOE (line 347) | ECHOE = 0x2 constant ECHOK (line 348) | ECHOK = 0x4 constant ECHOKE (line 349) | ECHOKE = 0x1 constant ECHONL (line 350) | ECHONL = 0x10 constant ECHOPRT (line 351) | ECHOPRT = 0x20 constant EVFILT_AIO (line 352) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 353) | EVFILT_EXCEPT = -0xf constant EVFILT_FS (line 354) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 355) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 356) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 357) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 358) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 359) | EVFILT_SYSCOUNT = 0xf constant EVFILT_THREADMARKER (line 360) | EVFILT_THREADMARKER = 0xf constant EVFILT_TIMER (line 361) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 362) | EVFILT_USER = -0xa constant EVFILT_VM (line 363) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 364) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 365) | EVFILT_WRITE = -0x2 constant EV_ADD (line 366) | EV_ADD = 0x1 constant EV_CLEAR (line 367) | EV_CLEAR = 0x20 constant EV_DELETE (line 368) | EV_DELETE = 0x2 constant EV_DISABLE (line 369) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 370) | EV_DISPATCH = 0x80 constant EV_DISPATCH2 (line 371) | EV_DISPATCH2 = 0x180 constant EV_ENABLE (line 372) | EV_ENABLE = 0x4 constant EV_EOF (line 373) | EV_EOF = 0x8000 constant EV_ERROR (line 374) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 375) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 376) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 377) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 378) | EV_OOBAND = 0x2000 constant EV_POLL (line 379) | EV_POLL = 0x1000 constant EV_RECEIPT (line 380) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 381) | EV_SYSFLAGS = 0xf000 constant EV_UDATA_SPECIFIC (line 382) | EV_UDATA_SPECIFIC = 0x100 constant EV_VANISHED (line 383) | EV_VANISHED = 0x200 constant EXTA (line 384) | EXTA = 0x4b00 constant EXTB (line 385) | EXTB = 0x9600 constant EXTPROC (line 386) | EXTPROC = 0x800 constant FD_CLOEXEC (line 387) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 388) | FD_SETSIZE = 0x400 constant FF0 (line 389) | FF0 = 0x0 constant FF1 (line 390) | FF1 = 0x4000 constant FFDLY (line 391) | FFDLY = 0x4000 constant FLUSHO (line 392) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 393) | F_ADDFILESIGS = 0x3d constant F_ADDFILESIGS_FOR_DYLD_SIM (line 394) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53 constant F_ADDFILESIGS_RETURN (line 395) | F_ADDFILESIGS_RETURN = 0x61 constant F_ADDSIGS (line 396) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 397) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 398) | F_ALLOCATECONTIG = 0x2 constant F_BARRIERFSYNC (line 399) | F_BARRIERFSYNC = 0x55 constant F_CHECK_LV (line 400) | F_CHECK_LV = 0x62 constant F_CHKCLEAN (line 401) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 402) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 403) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 404) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 405) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 406) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 407) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 408) | F_GETCODEDIR = 0x48 constant F_GETFD (line 409) | F_GETFD = 0x1 constant F_GETFL (line 410) | F_GETFL = 0x3 constant F_GETLK (line 411) | F_GETLK = 0x7 constant F_GETLKPID (line 412) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 413) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 414) | F_GETOWN = 0x5 constant F_GETPATH (line 415) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 416) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 417) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 418) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 419) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 420) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 421) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 422) | F_NOCACHE = 0x30 constant F_NODIRECT (line 423) | F_NODIRECT = 0x3e constant F_OK (line 424) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 425) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 426) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 427) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 428) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 429) | F_RDAHEAD = 0x2d constant F_RDLCK (line 430) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 431) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 432) | F_SETFD = 0x2 constant F_SETFL (line 433) | F_SETFL = 0x4 constant F_SETLK (line 434) | F_SETLK = 0x8 constant F_SETLKW (line 435) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 436) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 437) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 438) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 439) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 440) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 441) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 442) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 443) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 444) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 445) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 446) | F_WRLCK = 0x3 constant HUPCL (line 447) | HUPCL = 0x4000 constant ICANON (line 448) | ICANON = 0x100 constant ICMP6_FILTER (line 449) | ICMP6_FILTER = 0x12 constant ICRNL (line 450) | ICRNL = 0x100 constant IEXTEN (line 451) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 453) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 454) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_AAL5 (line 471) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 472) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 473) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 474) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 475) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 476) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 477) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 478) | IFT_CEPT = 0x13 constant IFT_DS3 (line 479) | IFT_DS3 = 0x1e constant IFT_ENC (line 480) | IFT_ENC = 0xf4 constant IFT_EON (line 481) | IFT_EON = 0x19 constant IFT_ETHER (line 482) | IFT_ETHER = 0x6 constant IFT_FAITH (line 483) | IFT_FAITH = 0x38 constant IFT_FDDI (line 484) | IFT_FDDI = 0xf constant IFT_FRELAY (line 485) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 486) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 487) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 488) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 489) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 490) | IFT_HSSI = 0x2e constant IFT_HY (line 491) | IFT_HY = 0xe constant IFT_IEEE1394 (line 492) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 493) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 494) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 495) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 496) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 497) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 498) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 499) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 500) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 501) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 502) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 503) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 504) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 505) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 506) | IFT_MODEM = 0x30 constant IFT_NSIP (line 507) | IFT_NSIP = 0x1b constant IFT_OTHER (line 508) | IFT_OTHER = 0x1 constant IFT_P10 (line 509) | IFT_P10 = 0xc constant IFT_P80 (line 510) | IFT_P80 = 0xd constant IFT_PARA (line 511) | IFT_PARA = 0x22 constant IFT_PDP (line 512) | IFT_PDP = 0xff constant IFT_PFLOG (line 513) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 514) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 515) | IFT_PKTAP = 0xfe constant IFT_PPP (line 516) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 517) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 518) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 519) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 520) | IFT_RS232 = 0x21 constant IFT_SDLC (line 521) | IFT_SDLC = 0x11 constant IFT_SIP (line 522) | IFT_SIP = 0x1f constant IFT_SLIP (line 523) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 524) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 525) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 526) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 527) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 528) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 529) | IFT_STARLAN = 0xb constant IFT_STF (line 530) | IFT_STF = 0x39 constant IFT_T1 (line 531) | IFT_T1 = 0x12 constant IFT_ULTRA (line 532) | IFT_ULTRA = 0x1d constant IFT_V35 (line 533) | IFT_V35 = 0x2d constant IFT_X25 (line 534) | IFT_X25 = 0x5 constant IFT_X25DDN (line 535) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 536) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 537) | IFT_XETHER = 0x1a constant IGNBRK (line 538) | IGNBRK = 0x1 constant IGNCR (line 539) | IGNCR = 0x80 constant IGNPAR (line 540) | IGNPAR = 0x4 constant IMAXBEL (line 541) | IMAXBEL = 0x2000 constant INLCR (line 542) | INLCR = 0x40 constant INPCK (line 543) | INPCK = 0x10 constant IN_CLASSA_HOST (line 544) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 545) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 546) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 547) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 548) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 549) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 550) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 551) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 552) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 553) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 554) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 555) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 556) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 557) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 558) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 559) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 560) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 561) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 562) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 563) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 564) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 565) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 566) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 567) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 568) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 569) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 570) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 571) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 572) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 573) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 574) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 575) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 576) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 577) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 578) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 579) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 580) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 581) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 582) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 583) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 584) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 585) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 586) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 587) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 588) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 589) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 590) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 591) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 592) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 593) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 594) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 595) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 596) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 597) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 598) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 599) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 600) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 601) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 602) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 603) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 604) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 605) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 606) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 607) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 608) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 609) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 610) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 611) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 612) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 613) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 614) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 615) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 616) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 617) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 618) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 619) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 620) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 621) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 622) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 623) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 624) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 625) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 626) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 627) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 628) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 629) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 630) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 631) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 632) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 633) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 634) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 635) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 636) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 637) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 638) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 639) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 640) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 641) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 642) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 643) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 644) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 645) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 646) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 647) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 648) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 649) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 650) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 651) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 652) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 653) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 654) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 655) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 656) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 657) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 658) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 659) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 660) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 661) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 662) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 663) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 664) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 665) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 666) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 667) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 668) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 669) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 670) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 671) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 672) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 673) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 674) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 675) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 676) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 677) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 678) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 679) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 680) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 681) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 682) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 683) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 684) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 685) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 686) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 687) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 688) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 689) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 690) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 691) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 692) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 693) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 694) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 695) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 696) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 697) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 698) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 699) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 700) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 701) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 702) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 703) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 704) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 705) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 706) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 707) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 708) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 709) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 710) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 711) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 712) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 713) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 714) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 715) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 716) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 717) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 718) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 719) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 720) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 721) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 722) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 723) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 724) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 725) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 726) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 727) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 728) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 729) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 730) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 731) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 732) | IP_FAITH = 0x16 constant IP_FW_ADD (line 733) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 734) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 735) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 736) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 737) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 738) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 739) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 740) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 741) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 742) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 743) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 744) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 745) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 746) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 747) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 748) | IP_MSFILTER = 0x4a constant IP_MSS (line 749) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 750) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 751) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 752) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 753) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 754) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 755) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 756) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 757) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 758) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 759) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 760) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 761) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 762) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 763) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 764) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 765) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 766) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 767) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 768) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 769) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 770) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 771) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 772) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 773) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 774) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 775) | IP_RETOPTS = 0x8 constant IP_RF (line 776) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 777) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 778) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 779) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 780) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 781) | IP_STRIPHDR = 0x17 constant IP_TOS (line 782) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 783) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 784) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 785) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 786) | ISIG = 0x80 constant ISTRIP (line 787) | ISTRIP = 0x20 constant IUTF8 (line 788) | IUTF8 = 0x4000 constant IXANY (line 789) | IXANY = 0x800 constant IXOFF (line 790) | IXOFF = 0x400 constant IXON (line 791) | IXON = 0x200 constant LOCK_EX (line 792) | LOCK_EX = 0x2 constant LOCK_NB (line 793) | LOCK_NB = 0x4 constant LOCK_SH (line 794) | LOCK_SH = 0x1 constant LOCK_UN (line 795) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 796) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 797) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 798) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 799) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 800) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 801) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 802) | MADV_PAGEOUT = 0xa constant MADV_RANDOM (line 803) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 804) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 805) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 806) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 807) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 808) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 809) | MAP_COPY = 0x2 constant MAP_FILE (line 810) | MAP_FILE = 0x0 constant MAP_FIXED (line 811) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 812) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 813) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 814) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 815) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 816) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 817) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 818) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 819) | MAP_RESERVED0080 = 0x80 constant MAP_RESILIENT_CODESIGN (line 820) | MAP_RESILIENT_CODESIGN = 0x2000 constant MAP_RESILIENT_MEDIA (line 821) | MAP_RESILIENT_MEDIA = 0x4000 constant MAP_SHARED (line 822) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 823) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 824) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 825) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 826) | MNT_AUTOMOUNTED = 0x400000 constant MNT_CMDFLAGS (line 827) | MNT_CMDFLAGS = 0xf0000 constant MNT_CPROTECT (line 828) | MNT_CPROTECT = 0x80 constant MNT_DEFWRITE (line 829) | MNT_DEFWRITE = 0x2000000 constant MNT_DONTBROWSE (line 830) | MNT_DONTBROWSE = 0x100000 constant MNT_DOVOLFS (line 831) | MNT_DOVOLFS = 0x8000 constant MNT_DWAIT (line 832) | MNT_DWAIT = 0x4 constant MNT_EXPORTED (line 833) | MNT_EXPORTED = 0x100 constant MNT_FORCE (line 834) | MNT_FORCE = 0x80000 constant MNT_IGNORE_OWNERSHIP (line 835) | MNT_IGNORE_OWNERSHIP = 0x200000 constant MNT_JOURNALED (line 836) | MNT_JOURNALED = 0x800000 constant MNT_LOCAL (line 837) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 838) | MNT_MULTILABEL = 0x4000000 constant MNT_NOATIME (line 839) | MNT_NOATIME = 0x10000000 constant MNT_NOBLOCK (line 840) | MNT_NOBLOCK = 0x20000 constant MNT_NODEV (line 841) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 842) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 843) | MNT_NOSUID = 0x8 constant MNT_NOUSERXATTR (line 844) | MNT_NOUSERXATTR = 0x1000000 constant MNT_NOWAIT (line 845) | MNT_NOWAIT = 0x2 constant MNT_QUARANTINE (line 846) | MNT_QUARANTINE = 0x400 constant MNT_QUOTA (line 847) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 848) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 849) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 850) | MNT_ROOTFS = 0x4000 constant MNT_SYNCHRONOUS (line 851) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 852) | MNT_UNION = 0x20 constant MNT_UNKNOWNPERMISSIONS (line 853) | MNT_UNKNOWNPERMISSIONS = 0x200000 constant MNT_UPDATE (line 854) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 855) | MNT_VISFLAGMASK = 0x17f0f5ff constant MNT_WAIT (line 856) | MNT_WAIT = 0x1 constant MSG_CTRUNC (line 857) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 858) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 859) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 860) | MSG_EOF = 0x100 constant MSG_EOR (line 861) | MSG_EOR = 0x8 constant MSG_FLUSH (line 862) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 863) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 864) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 865) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 866) | MSG_OOB = 0x1 constant MSG_PEEK (line 867) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 868) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 869) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 870) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 871) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 872) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 873) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 874) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 875) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 876) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 877) | MS_SYNC = 0x10 constant NAME_MAX (line 878) | NAME_MAX = 0xff constant NET_RT_DUMP (line 879) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 880) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 881) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 882) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 883) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 884) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 885) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 886) | NET_RT_TRASH = 0x5 constant NL0 (line 887) | NL0 = 0x0 constant NL1 (line 888) | NL1 = 0x100 constant NL2 (line 889) | NL2 = 0x200 constant NL3 (line 890) | NL3 = 0x300 constant NLDLY (line 891) | NLDLY = 0x300 constant NOFLSH (line 892) | NOFLSH = 0x80000000 constant NOKERNINFO (line 893) | NOKERNINFO = 0x2000000 constant NOTE_ABSOLUTE (line 894) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 895) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 896) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 897) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 898) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 899) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 900) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 901) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 902) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 903) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 904) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 905) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 906) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 907) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 908) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 909) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 910) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 911) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 912) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 913) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 914) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 915) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 916) | NOTE_FORK = 0x40000000 constant NOTE_FUNLOCK (line 917) | NOTE_FUNLOCK = 0x100 constant NOTE_LEEWAY (line 918) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 919) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 920) | NOTE_LOWAT = 0x1 constant NOTE_MACH_CONTINUOUS_TIME (line 921) | NOTE_MACH_CONTINUOUS_TIME = 0x80 constant NOTE_NONE (line 922) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 923) | NOTE_NSECONDS = 0x4 constant NOTE_OOB (line 924) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 925) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 926) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 927) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 930) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 931) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 932) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 933) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 934) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 935) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 936) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 937) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 938) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 939) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 940) | NOTE_WRITE = 0x2 constant OCRNL (line 941) | OCRNL = 0x10 constant OFDEL (line 942) | OFDEL = 0x20000 constant OFILL (line 943) | OFILL = 0x80 constant ONLCR (line 944) | ONLCR = 0x2 constant ONLRET (line 945) | ONLRET = 0x40 constant ONOCR (line 946) | ONOCR = 0x20 constant ONOEOT (line 947) | ONOEOT = 0x8 constant OPOST (line 948) | OPOST = 0x1 constant OXTABS (line 949) | OXTABS = 0x4 constant O_ACCMODE (line 950) | O_ACCMODE = 0x3 constant O_ALERT (line 951) | O_ALERT = 0x20000000 constant O_APPEND (line 952) | O_APPEND = 0x8 constant O_ASYNC (line 953) | O_ASYNC = 0x40 constant O_CLOEXEC (line 954) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 955) | O_CREAT = 0x200 constant O_DIRECTORY (line 956) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 957) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DP_GETRAWUNENCRYPTED (line 958) | O_DP_GETRAWUNENCRYPTED = 0x2 constant O_DSYNC (line 959) | O_DSYNC = 0x400000 constant O_EVTONLY (line 960) | O_EVTONLY = 0x8000 constant O_EXCL (line 961) | O_EXCL = 0x800 constant O_EXLOCK (line 962) | O_EXLOCK = 0x20 constant O_FSYNC (line 963) | O_FSYNC = 0x80 constant O_NDELAY (line 964) | O_NDELAY = 0x4 constant O_NOCTTY (line 965) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 966) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 967) | O_NONBLOCK = 0x4 constant O_POPUP (line 968) | O_POPUP = 0x80000000 constant O_RDONLY (line 969) | O_RDONLY = 0x0 constant O_RDWR (line 970) | O_RDWR = 0x2 constant O_SHLOCK (line 971) | O_SHLOCK = 0x10 constant O_SYMLINK (line 972) | O_SYMLINK = 0x200000 constant O_SYNC (line 973) | O_SYNC = 0x80 constant O_TRUNC (line 974) | O_TRUNC = 0x400 constant O_WRONLY (line 975) | O_WRONLY = 0x1 constant PARENB (line 976) | PARENB = 0x1000 constant PARMRK (line 977) | PARMRK = 0x8 constant PARODD (line 978) | PARODD = 0x2000 constant PENDIN (line 979) | PENDIN = 0x20000000 constant PRIO_PGRP (line 980) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 981) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 982) | PRIO_USER = 0x2 constant PROT_EXEC (line 983) | PROT_EXEC = 0x4 constant PROT_NONE (line 984) | PROT_NONE = 0x0 constant PROT_READ (line 985) | PROT_READ = 0x1 constant PROT_WRITE (line 986) | PROT_WRITE = 0x2 constant PT_ATTACH (line 987) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 988) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 989) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 990) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 991) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 992) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 993) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 994) | PT_KILL = 0x8 constant PT_READ_D (line 995) | PT_READ_D = 0x2 constant PT_READ_I (line 996) | PT_READ_I = 0x1 constant PT_READ_U (line 997) | PT_READ_U = 0x3 constant PT_SIGEXC (line 998) | PT_SIGEXC = 0xc constant PT_STEP (line 999) | PT_STEP = 0x9 constant PT_THUPDATE (line 1000) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 1001) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 1002) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 1003) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 1004) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 1005) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 1006) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1007) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 1008) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 1009) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1010) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1011) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1012) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1013) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1014) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1015) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1016) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1017) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1018) | RTAX_BRD = 0x7 constant RTAX_DST (line 1019) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1020) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1021) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1022) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1023) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1024) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1025) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1026) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1027) | RTA_BRD = 0x80 constant RTA_DST (line 1028) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1029) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1030) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1031) | RTA_IFA = 0x20 constant RTA_IFP (line 1032) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1033) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1034) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1035) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1036) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 1037) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 1038) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 1039) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1040) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1041) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1042) | RTF_HOST = 0x4 constant RTF_IFREF (line 1043) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 1044) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 1045) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1046) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1047) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1048) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 1049) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 1050) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1051) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1052) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1053) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1054) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 1055) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 1056) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 1057) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 1058) | RTF_STATIC = 0x800 constant RTF_UP (line 1059) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1060) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1061) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1062) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1063) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1064) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1065) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1066) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1067) | RTM_GET = 0x4 constant RTM_GET2 (line 1068) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 1069) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 1070) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 1071) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1072) | RTM_LOSING = 0x5 constant RTM_MISS (line 1073) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1074) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1075) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 1076) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 1077) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1078) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1079) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1080) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1081) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1082) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1083) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1084) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1085) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1086) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1087) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1088) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1089) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1090) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1091) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1092) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1093) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1094) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1095) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1096) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1097) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1098) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1099) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1100) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1101) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1102) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1103) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1104) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1105) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1106) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1107) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1108) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1109) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETVLAN (line 1110) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1111) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1112) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1113) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1115) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1116) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1117) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1118) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDEVMTU (line 1119) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1120) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1121) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1123) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1124) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1125) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1126) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1127) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1128) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1129) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1130) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1131) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1132) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1133) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1134) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1135) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1136) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1137) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1138) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1139) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1140) | SIOCIFGCLONERS = 0xc00c6981 constant SIOCRSLVMULTI (line 1141) | SIOCRSLVMULTI = 0xc008693b constant SIOCSDRVSPEC (line 1142) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETVLAN (line 1143) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1144) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1145) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1146) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1147) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1148) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1149) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1150) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1151) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1152) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1153) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1154) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1155) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1156) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1157) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1158) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1159) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1160) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1161) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1162) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1163) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1164) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1165) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1166) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1167) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1168) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1169) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1170) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1171) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1172) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1173) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1174) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1175) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1176) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1177) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1178) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1179) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1180) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1181) | SO_LABEL = 0x1010 constant SO_LINGER (line 1182) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1183) | SO_LINGER_SEC = 0x1080 constant SO_NETSVC_MARKING_LEVEL (line 1184) | SO_NETSVC_MARKING_LEVEL = 0x1119 constant SO_NET_SERVICE_TYPE (line 1185) | SO_NET_SERVICE_TYPE = 0x1116 constant SO_NKE (line 1186) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1187) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1188) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1189) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1190) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1191) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1192) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1193) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1194) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1195) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1196) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1197) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1198) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1199) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1200) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1201) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1202) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1203) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1204) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1205) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1206) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1207) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1208) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1209) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1210) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1211) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1212) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1213) | S_IEXEC = 0x40 constant S_IFBLK (line 1214) | S_IFBLK = 0x6000 constant S_IFCHR (line 1215) | S_IFCHR = 0x2000 constant S_IFDIR (line 1216) | S_IFDIR = 0x4000 constant S_IFIFO (line 1217) | S_IFIFO = 0x1000 constant S_IFLNK (line 1218) | S_IFLNK = 0xa000 constant S_IFMT (line 1219) | S_IFMT = 0xf000 constant S_IFREG (line 1220) | S_IFREG = 0x8000 constant S_IFSOCK (line 1221) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1222) | S_IFWHT = 0xe000 constant S_IREAD (line 1223) | S_IREAD = 0x100 constant S_IRGRP (line 1224) | S_IRGRP = 0x20 constant S_IROTH (line 1225) | S_IROTH = 0x4 constant S_IRUSR (line 1226) | S_IRUSR = 0x100 constant S_IRWXG (line 1227) | S_IRWXG = 0x38 constant S_IRWXO (line 1228) | S_IRWXO = 0x7 constant S_IRWXU (line 1229) | S_IRWXU = 0x1c0 constant S_ISGID (line 1230) | S_ISGID = 0x400 constant S_ISTXT (line 1231) | S_ISTXT = 0x200 constant S_ISUID (line 1232) | S_ISUID = 0x800 constant S_ISVTX (line 1233) | S_ISVTX = 0x200 constant S_IWGRP (line 1234) | S_IWGRP = 0x10 constant S_IWOTH (line 1235) | S_IWOTH = 0x2 constant S_IWRITE (line 1236) | S_IWRITE = 0x80 constant S_IWUSR (line 1237) | S_IWUSR = 0x80 constant S_IXGRP (line 1238) | S_IXGRP = 0x8 constant S_IXOTH (line 1239) | S_IXOTH = 0x1 constant S_IXUSR (line 1240) | S_IXUSR = 0x40 constant TAB0 (line 1241) | TAB0 = 0x0 constant TAB1 (line 1242) | TAB1 = 0x400 constant TAB2 (line 1243) | TAB2 = 0x800 constant TAB3 (line 1244) | TAB3 = 0x4 constant TABDLY (line 1245) | TABDLY = 0xc04 constant TCIFLUSH (line 1246) | TCIFLUSH = 0x1 constant TCIOFF (line 1247) | TCIOFF = 0x3 constant TCIOFLUSH (line 1248) | TCIOFLUSH = 0x3 constant TCION (line 1249) | TCION = 0x4 constant TCOFLUSH (line 1250) | TCOFLUSH = 0x2 constant TCOOFF (line 1251) | TCOOFF = 0x1 constant TCOON (line 1252) | TCOON = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1253) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_CONNECTION_INFO (line 1254) | TCP_CONNECTION_INFO = 0x106 constant TCP_ENABLE_ECN (line 1255) | TCP_ENABLE_ECN = 0x104 constant TCP_FASTOPEN (line 1256) | TCP_FASTOPEN = 0x105 constant TCP_KEEPALIVE (line 1257) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1258) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1259) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1260) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1261) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1262) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1263) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1264) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1265) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1266) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1267) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1268) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1269) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1270) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1271) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1272) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1273) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1274) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1275) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1276) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1277) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1278) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1279) | TIOCDCDTIMESTAMP = 0x40087458 constant TIOCDRAIN (line 1280) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1281) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1282) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1283) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1284) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1285) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1286) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1287) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1288) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1289) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1290) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1291) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1292) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1293) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1294) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1295) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1296) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1297) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1298) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1299) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1300) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1301) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1302) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1303) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1304) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1305) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1306) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1307) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1308) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1309) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1310) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1311) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1312) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1313) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1314) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1315) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1316) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1317) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1318) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1319) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1320) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1321) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1322) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1323) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1324) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1325) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1326) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1327) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1328) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1329) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1330) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1331) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1332) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1333) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1334) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1335) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1336) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1337) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1338) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1339) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1340) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1341) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1342) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1343) | TIOCTIMESTAMP = 0x40087459 constant TIOCUCNTL (line 1344) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1345) | TOSTOP = 0x400000 constant VDISCARD (line 1346) | VDISCARD = 0xf constant VDSUSP (line 1347) | VDSUSP = 0xb constant VEOF (line 1348) | VEOF = 0x0 constant VEOL (line 1349) | VEOL = 0x1 constant VEOL2 (line 1350) | VEOL2 = 0x2 constant VERASE (line 1351) | VERASE = 0x3 constant VINTR (line 1352) | VINTR = 0x8 constant VKILL (line 1353) | VKILL = 0x5 constant VLNEXT (line 1354) | VLNEXT = 0xe constant VMIN (line 1355) | VMIN = 0x10 constant VM_LOADAVG (line 1356) | VM_LOADAVG = 0x2 constant VM_MACHFACTOR (line 1357) | VM_MACHFACTOR = 0x4 constant VM_MAXID (line 1358) | VM_MAXID = 0x6 constant VM_METER (line 1359) | VM_METER = 0x1 constant VM_SWAPUSAGE (line 1360) | VM_SWAPUSAGE = 0x5 constant VQUIT (line 1361) | VQUIT = 0x9 constant VREPRINT (line 1362) | VREPRINT = 0x6 constant VSTART (line 1363) | VSTART = 0xc constant VSTATUS (line 1364) | VSTATUS = 0x12 constant VSTOP (line 1365) | VSTOP = 0xd constant VSUSP (line 1366) | VSUSP = 0xa constant VT0 (line 1367) | VT0 = 0x0 constant VT1 (line 1368) | VT1 = 0x10000 constant VTDLY (line 1369) | VTDLY = 0x10000 constant VTIME (line 1370) | VTIME = 0x11 constant VWERASE (line 1371) | VWERASE = 0x4 constant WCONTINUED (line 1372) | WCONTINUED = 0x10 constant WCOREFLAG (line 1373) | WCOREFLAG = 0x80 constant WEXITED (line 1374) | WEXITED = 0x4 constant WNOHANG (line 1375) | WNOHANG = 0x1 constant WNOWAIT (line 1376) | WNOWAIT = 0x20 constant WORDSIZE (line 1377) | WORDSIZE = 0x20 constant WSTOPPED (line 1378) | WSTOPPED = 0x8 constant WUNTRACED (line 1379) | WUNTRACED = 0x2 constant E2BIG (line 1384) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1385) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1386) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1387) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1388) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1389) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1390) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1391) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1392) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1393) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1394) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1395) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1396) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1397) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1398) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1399) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1400) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1401) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1402) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1403) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1404) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1405) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1406) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1407) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1408) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1409) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1410) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1411) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1412) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1413) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1414) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1415) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1416) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1417) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1418) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1419) | EINVAL = syscall.Errno(0x16) constant EIO (line 1420) | EIO = syscall.Errno(0x5) constant EISCONN (line 1421) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1422) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1423) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1424) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1425) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1426) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1427) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1428) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1429) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1430) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1431) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1432) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1433) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1434) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1435) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1436) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1437) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1438) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1439) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1440) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1441) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1442) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1443) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1444) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1445) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1446) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1447) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1448) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1449) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1450) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1451) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1452) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1453) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1454) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1455) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1456) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1457) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1458) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1459) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1460) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1461) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1462) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1463) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1464) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1465) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1466) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1467) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1468) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1469) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1470) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1471) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1472) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1473) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1474) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1475) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1476) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1477) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1478) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1479) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1480) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1481) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1482) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1483) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1484) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1485) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1486) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1487) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1488) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1489) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1490) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1491) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1496) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1497) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1498) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1499) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1500) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1501) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1502) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1503) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1504) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1505) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1506) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1507) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1508) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1509) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1510) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1511) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1512) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1513) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1514) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1515) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1516) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1517) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1518) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1519) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1520) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1521) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1522) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1523) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1524) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1525) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1526) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1527) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant ALTWERASE (line 51) | ALTWERASE = 0x200 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 77) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 78) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 79) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 80) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 81) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 82) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 83) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 84) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 85) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 86) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 87) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 88) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 89) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 90) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 91) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 92) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 93) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 94) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 95) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 96) | BIOCVERSION = 0x40044271 constant BPF_A (line 97) | BPF_A = 0x10 constant BPF_ABS (line 98) | BPF_ABS = 0x20 constant BPF_ADD (line 99) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 100) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 101) | BPF_ALU = 0x4 constant BPF_AND (line 102) | BPF_AND = 0x50 constant BPF_B (line 103) | BPF_B = 0x10 constant BPF_DIV (line 104) | BPF_DIV = 0x30 constant BPF_H (line 105) | BPF_H = 0x8 constant BPF_IMM (line 106) | BPF_IMM = 0x0 constant BPF_IND (line 107) | BPF_IND = 0x40 constant BPF_JA (line 108) | BPF_JA = 0x0 constant BPF_JEQ (line 109) | BPF_JEQ = 0x10 constant BPF_JGE (line 110) | BPF_JGE = 0x30 constant BPF_JGT (line 111) | BPF_JGT = 0x20 constant BPF_JMP (line 112) | BPF_JMP = 0x5 constant BPF_JSET (line 113) | BPF_JSET = 0x40 constant BPF_K (line 114) | BPF_K = 0x0 constant BPF_LD (line 115) | BPF_LD = 0x0 constant BPF_LDX (line 116) | BPF_LDX = 0x1 constant BPF_LEN (line 117) | BPF_LEN = 0x80 constant BPF_LSH (line 118) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 119) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 120) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 121) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 122) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 123) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 124) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 125) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 126) | BPF_MISC = 0x7 constant BPF_MSH (line 127) | BPF_MSH = 0xa0 constant BPF_MUL (line 128) | BPF_MUL = 0x20 constant BPF_NEG (line 129) | BPF_NEG = 0x80 constant BPF_OR (line 130) | BPF_OR = 0x40 constant BPF_RELEASE (line 131) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 132) | BPF_RET = 0x6 constant BPF_RSH (line 133) | BPF_RSH = 0x70 constant BPF_ST (line 134) | BPF_ST = 0x2 constant BPF_STX (line 135) | BPF_STX = 0x3 constant BPF_SUB (line 136) | BPF_SUB = 0x10 constant BPF_TAX (line 137) | BPF_TAX = 0x0 constant BPF_TXA (line 138) | BPF_TXA = 0x80 constant BPF_W (line 139) | BPF_W = 0x0 constant BPF_X (line 140) | BPF_X = 0x8 constant BRKINT (line 141) | BRKINT = 0x2 constant BS0 (line 142) | BS0 = 0x0 constant BS1 (line 143) | BS1 = 0x8000 constant BSDLY (line 144) | BSDLY = 0x8000 constant CFLUSH (line 145) | CFLUSH = 0xf constant CLOCAL (line 146) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 147) | CLOCK_MONOTONIC = 0x6 constant CLOCK_MONOTONIC_RAW (line 148) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_MONOTONIC_RAW_APPROX (line 149) | CLOCK_MONOTONIC_RAW_APPROX = 0x5 constant CLOCK_PROCESS_CPUTIME_ID (line 150) | CLOCK_PROCESS_CPUTIME_ID = 0xc constant CLOCK_REALTIME (line 151) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 152) | CLOCK_THREAD_CPUTIME_ID = 0x10 constant CLOCK_UPTIME_RAW (line 153) | CLOCK_UPTIME_RAW = 0x8 constant CLOCK_UPTIME_RAW_APPROX (line 154) | CLOCK_UPTIME_RAW_APPROX = 0x9 constant CR0 (line 155) | CR0 = 0x0 constant CR1 (line 156) | CR1 = 0x1000 constant CR2 (line 157) | CR2 = 0x2000 constant CR3 (line 158) | CR3 = 0x3000 constant CRDLY (line 159) | CRDLY = 0x3000 constant CREAD (line 160) | CREAD = 0x800 constant CRTSCTS (line 161) | CRTSCTS = 0x30000 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant DLT_A429 (line 174) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 175) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 176) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 177) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 178) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 179) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 180) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 181) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 182) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 183) | DLT_AURORA = 0x7e constant DLT_AX25 (line 184) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 185) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 186) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 187) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 188) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 189) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 190) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 191) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 192) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 193) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 194) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 195) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 196) | DLT_DBUS = 0xe7 constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 199) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 200) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 201) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 202) | DLT_EN3MB = 0x2 constant DLT_ENC (line 203) | DLT_ENC = 0x6d constant DLT_ERF (line 204) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 205) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 206) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 207) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 208) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 209) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 210) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 211) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 212) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 213) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 214) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 215) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 216) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 217) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 218) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 219) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 221) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 222) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 223) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 224) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 225) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 226) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 227) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 228) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 229) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 233) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 234) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 235) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 236) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 237) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 238) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 239) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 240) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 241) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 242) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 243) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 244) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 245) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 246) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 247) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 248) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 249) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 250) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 251) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 252) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 253) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 254) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 255) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 256) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 257) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 258) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 259) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 260) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 261) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 262) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 263) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 264) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 265) | DLT_LAPD = 0xcb constant DLT_LIN (line 266) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 267) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 268) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 269) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 270) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 271) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 272) | DLT_LOOP = 0x6c constant DLT_LTALK (line 273) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 274) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 275) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 276) | DLT_MFR = 0xb6 constant DLT_MOST (line 277) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 278) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 283) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 284) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 285) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 286) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 287) | DLT_NFLOG = 0xef constant DLT_NG40 (line 288) | DLT_NG40 = 0xf4 constant DLT_NULL (line 289) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 290) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 291) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 292) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 293) | DLT_PPI = 0xc0 constant DLT_PPP (line 294) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 295) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 296) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 297) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 298) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 299) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 300) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 301) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 302) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 303) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 304) | DLT_RAW = 0xc constant DLT_RIO (line 305) | DLT_RIO = 0x7c constant DLT_SCCP (line 306) | DLT_SCCP = 0x8e constant DLT_SITA (line 307) | DLT_SITA = 0xc4 constant DLT_SLIP (line 308) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 309) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 310) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 311) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 312) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 313) | DLT_TZSP = 0x80 constant DLT_USB (line 314) | DLT_USB = 0xba constant DLT_USB_LINUX (line 315) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 316) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 317) | DLT_USER0 = 0x93 constant DLT_USER1 (line 318) | DLT_USER1 = 0x94 constant DLT_USER10 (line 319) | DLT_USER10 = 0x9d constant DLT_USER11 (line 320) | DLT_USER11 = 0x9e constant DLT_USER12 (line 321) | DLT_USER12 = 0x9f constant DLT_USER13 (line 322) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 323) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 324) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 325) | DLT_USER2 = 0x95 constant DLT_USER3 (line 326) | DLT_USER3 = 0x96 constant DLT_USER4 (line 327) | DLT_USER4 = 0x97 constant DLT_USER5 (line 328) | DLT_USER5 = 0x98 constant DLT_USER6 (line 329) | DLT_USER6 = 0x99 constant DLT_USER7 (line 330) | DLT_USER7 = 0x9a constant DLT_USER8 (line 331) | DLT_USER8 = 0x9b constant DLT_USER9 (line 332) | DLT_USER9 = 0x9c constant DLT_WIHART (line 333) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 334) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 335) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 336) | DT_BLK = 0x6 constant DT_CHR (line 337) | DT_CHR = 0x2 constant DT_DIR (line 338) | DT_DIR = 0x4 constant DT_FIFO (line 339) | DT_FIFO = 0x1 constant DT_LNK (line 340) | DT_LNK = 0xa constant DT_REG (line 341) | DT_REG = 0x8 constant DT_SOCK (line 342) | DT_SOCK = 0xc constant DT_UNKNOWN (line 343) | DT_UNKNOWN = 0x0 constant DT_WHT (line 344) | DT_WHT = 0xe constant ECHO (line 345) | ECHO = 0x8 constant ECHOCTL (line 346) | ECHOCTL = 0x40 constant ECHOE (line 347) | ECHOE = 0x2 constant ECHOK (line 348) | ECHOK = 0x4 constant ECHOKE (line 349) | ECHOKE = 0x1 constant ECHONL (line 350) | ECHONL = 0x10 constant ECHOPRT (line 351) | ECHOPRT = 0x20 constant EVFILT_AIO (line 352) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 353) | EVFILT_EXCEPT = -0xf constant EVFILT_FS (line 354) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 355) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 356) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 357) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 358) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 359) | EVFILT_SYSCOUNT = 0xf constant EVFILT_THREADMARKER (line 360) | EVFILT_THREADMARKER = 0xf constant EVFILT_TIMER (line 361) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 362) | EVFILT_USER = -0xa constant EVFILT_VM (line 363) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 364) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 365) | EVFILT_WRITE = -0x2 constant EV_ADD (line 366) | EV_ADD = 0x1 constant EV_CLEAR (line 367) | EV_CLEAR = 0x20 constant EV_DELETE (line 368) | EV_DELETE = 0x2 constant EV_DISABLE (line 369) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 370) | EV_DISPATCH = 0x80 constant EV_DISPATCH2 (line 371) | EV_DISPATCH2 = 0x180 constant EV_ENABLE (line 372) | EV_ENABLE = 0x4 constant EV_EOF (line 373) | EV_EOF = 0x8000 constant EV_ERROR (line 374) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 375) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 376) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 377) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 378) | EV_OOBAND = 0x2000 constant EV_POLL (line 379) | EV_POLL = 0x1000 constant EV_RECEIPT (line 380) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 381) | EV_SYSFLAGS = 0xf000 constant EV_UDATA_SPECIFIC (line 382) | EV_UDATA_SPECIFIC = 0x100 constant EV_VANISHED (line 383) | EV_VANISHED = 0x200 constant EXTA (line 384) | EXTA = 0x4b00 constant EXTB (line 385) | EXTB = 0x9600 constant EXTPROC (line 386) | EXTPROC = 0x800 constant FD_CLOEXEC (line 387) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 388) | FD_SETSIZE = 0x400 constant FF0 (line 389) | FF0 = 0x0 constant FF1 (line 390) | FF1 = 0x4000 constant FFDLY (line 391) | FFDLY = 0x4000 constant FLUSHO (line 392) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 393) | F_ADDFILESIGS = 0x3d constant F_ADDFILESIGS_FOR_DYLD_SIM (line 394) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53 constant F_ADDFILESIGS_RETURN (line 395) | F_ADDFILESIGS_RETURN = 0x61 constant F_ADDSIGS (line 396) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 397) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 398) | F_ALLOCATECONTIG = 0x2 constant F_BARRIERFSYNC (line 399) | F_BARRIERFSYNC = 0x55 constant F_CHECK_LV (line 400) | F_CHECK_LV = 0x62 constant F_CHKCLEAN (line 401) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 402) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 403) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 404) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 405) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 406) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 407) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 408) | F_GETCODEDIR = 0x48 constant F_GETFD (line 409) | F_GETFD = 0x1 constant F_GETFL (line 410) | F_GETFL = 0x3 constant F_GETLK (line 411) | F_GETLK = 0x7 constant F_GETLKPID (line 412) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 413) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 414) | F_GETOWN = 0x5 constant F_GETPATH (line 415) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 416) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 417) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 418) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 419) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 420) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 421) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 422) | F_NOCACHE = 0x30 constant F_NODIRECT (line 423) | F_NODIRECT = 0x3e constant F_OK (line 424) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 425) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 426) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 427) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 428) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 429) | F_RDAHEAD = 0x2d constant F_RDLCK (line 430) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 431) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 432) | F_SETFD = 0x2 constant F_SETFL (line 433) | F_SETFL = 0x4 constant F_SETLK (line 434) | F_SETLK = 0x8 constant F_SETLKW (line 435) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 436) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 437) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 438) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 439) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 440) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 441) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 442) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 443) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 444) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 445) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 446) | F_WRLCK = 0x3 constant HUPCL (line 447) | HUPCL = 0x4000 constant ICANON (line 448) | ICANON = 0x100 constant ICMP6_FILTER (line 449) | ICMP6_FILTER = 0x12 constant ICRNL (line 450) | ICRNL = 0x100 constant IEXTEN (line 451) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 453) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 454) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_AAL5 (line 471) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 472) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 473) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 474) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 475) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 476) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 477) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 478) | IFT_CEPT = 0x13 constant IFT_DS3 (line 479) | IFT_DS3 = 0x1e constant IFT_ENC (line 480) | IFT_ENC = 0xf4 constant IFT_EON (line 481) | IFT_EON = 0x19 constant IFT_ETHER (line 482) | IFT_ETHER = 0x6 constant IFT_FAITH (line 483) | IFT_FAITH = 0x38 constant IFT_FDDI (line 484) | IFT_FDDI = 0xf constant IFT_FRELAY (line 485) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 486) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 487) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 488) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 489) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 490) | IFT_HSSI = 0x2e constant IFT_HY (line 491) | IFT_HY = 0xe constant IFT_IEEE1394 (line 492) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 493) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 494) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 495) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 496) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 497) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 498) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 499) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 500) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 501) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 502) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 503) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 504) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 505) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 506) | IFT_MODEM = 0x30 constant IFT_NSIP (line 507) | IFT_NSIP = 0x1b constant IFT_OTHER (line 508) | IFT_OTHER = 0x1 constant IFT_P10 (line 509) | IFT_P10 = 0xc constant IFT_P80 (line 510) | IFT_P80 = 0xd constant IFT_PARA (line 511) | IFT_PARA = 0x22 constant IFT_PDP (line 512) | IFT_PDP = 0xff constant IFT_PFLOG (line 513) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 514) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 515) | IFT_PKTAP = 0xfe constant IFT_PPP (line 516) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 517) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 518) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 519) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 520) | IFT_RS232 = 0x21 constant IFT_SDLC (line 521) | IFT_SDLC = 0x11 constant IFT_SIP (line 522) | IFT_SIP = 0x1f constant IFT_SLIP (line 523) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 524) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 525) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 526) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 527) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 528) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 529) | IFT_STARLAN = 0xb constant IFT_STF (line 530) | IFT_STF = 0x39 constant IFT_T1 (line 531) | IFT_T1 = 0x12 constant IFT_ULTRA (line 532) | IFT_ULTRA = 0x1d constant IFT_V35 (line 533) | IFT_V35 = 0x2d constant IFT_X25 (line 534) | IFT_X25 = 0x5 constant IFT_X25DDN (line 535) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 536) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 537) | IFT_XETHER = 0x1a constant IGNBRK (line 538) | IGNBRK = 0x1 constant IGNCR (line 539) | IGNCR = 0x80 constant IGNPAR (line 540) | IGNPAR = 0x4 constant IMAXBEL (line 541) | IMAXBEL = 0x2000 constant INLCR (line 542) | INLCR = 0x40 constant INPCK (line 543) | INPCK = 0x10 constant IN_CLASSA_HOST (line 544) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 545) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 546) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 547) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 548) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 549) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 550) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 551) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 552) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 553) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 554) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 555) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 556) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 557) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 558) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 559) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 560) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 561) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 562) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 563) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 564) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 565) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 566) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 567) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 568) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 569) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 570) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 571) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 572) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 573) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 574) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 575) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 576) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 577) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 578) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 579) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 580) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 581) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 582) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 583) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 584) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 585) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 586) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 587) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 588) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 589) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 590) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 591) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 592) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 593) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 594) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 595) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 596) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 597) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 598) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 599) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 600) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 601) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 602) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 603) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 604) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 605) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 606) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 607) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 608) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 609) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 610) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 611) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 612) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 613) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 614) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 615) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 616) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 617) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 618) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 619) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 620) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 621) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 622) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 623) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 624) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 625) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 626) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 627) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 628) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 629) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 630) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 631) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 632) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 633) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 634) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 635) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 636) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 637) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 638) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 639) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 640) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 641) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 642) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 643) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 644) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 645) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 646) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 647) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 648) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 649) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 650) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 651) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 652) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 653) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 654) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 655) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 656) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 657) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 658) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 659) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 660) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 661) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 662) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 663) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 664) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 665) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 666) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 667) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 668) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 669) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 670) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 671) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 672) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 673) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 674) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 675) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 676) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 677) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 678) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 679) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 680) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 681) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 682) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 683) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 684) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 685) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 686) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 687) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 688) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 689) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 690) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 691) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 692) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 693) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 694) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 695) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 696) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 697) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 698) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 699) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 700) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 701) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 702) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 703) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 704) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 705) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 706) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 707) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 708) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 709) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 710) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 711) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 712) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 713) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 714) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 715) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 716) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 717) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 718) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 719) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 720) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 721) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 722) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 723) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 724) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 725) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 726) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 727) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 728) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 729) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 730) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 731) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 732) | IP_FAITH = 0x16 constant IP_FW_ADD (line 733) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 734) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 735) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 736) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 737) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 738) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 739) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 740) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 741) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 742) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 743) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 744) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 745) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 746) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 747) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 748) | IP_MSFILTER = 0x4a constant IP_MSS (line 749) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 750) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 751) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 752) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 753) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 754) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 755) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 756) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 757) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 758) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 759) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 760) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 761) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 762) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 763) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 764) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 765) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 766) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 767) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 768) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 769) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 770) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 771) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 772) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 773) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 774) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 775) | IP_RETOPTS = 0x8 constant IP_RF (line 776) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 777) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 778) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 779) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 780) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 781) | IP_STRIPHDR = 0x17 constant IP_TOS (line 782) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 783) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 784) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 785) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 786) | ISIG = 0x80 constant ISTRIP (line 787) | ISTRIP = 0x20 constant IUTF8 (line 788) | IUTF8 = 0x4000 constant IXANY (line 789) | IXANY = 0x800 constant IXOFF (line 790) | IXOFF = 0x400 constant IXON (line 791) | IXON = 0x200 constant LOCK_EX (line 792) | LOCK_EX = 0x2 constant LOCK_NB (line 793) | LOCK_NB = 0x4 constant LOCK_SH (line 794) | LOCK_SH = 0x1 constant LOCK_UN (line 795) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 796) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 797) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 798) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 799) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 800) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 801) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 802) | MADV_PAGEOUT = 0xa constant MADV_RANDOM (line 803) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 804) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 805) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 806) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 807) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 808) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 809) | MAP_COPY = 0x2 constant MAP_FILE (line 810) | MAP_FILE = 0x0 constant MAP_FIXED (line 811) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 812) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 813) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 814) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 815) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 816) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 817) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 818) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 819) | MAP_RESERVED0080 = 0x80 constant MAP_RESILIENT_CODESIGN (line 820) | MAP_RESILIENT_CODESIGN = 0x2000 constant MAP_RESILIENT_MEDIA (line 821) | MAP_RESILIENT_MEDIA = 0x4000 constant MAP_SHARED (line 822) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 823) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 824) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 825) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 826) | MNT_AUTOMOUNTED = 0x400000 constant MNT_CMDFLAGS (line 827) | MNT_CMDFLAGS = 0xf0000 constant MNT_CPROTECT (line 828) | MNT_CPROTECT = 0x80 constant MNT_DEFWRITE (line 829) | MNT_DEFWRITE = 0x2000000 constant MNT_DONTBROWSE (line 830) | MNT_DONTBROWSE = 0x100000 constant MNT_DOVOLFS (line 831) | MNT_DOVOLFS = 0x8000 constant MNT_DWAIT (line 832) | MNT_DWAIT = 0x4 constant MNT_EXPORTED (line 833) | MNT_EXPORTED = 0x100 constant MNT_FORCE (line 834) | MNT_FORCE = 0x80000 constant MNT_IGNORE_OWNERSHIP (line 835) | MNT_IGNORE_OWNERSHIP = 0x200000 constant MNT_JOURNALED (line 836) | MNT_JOURNALED = 0x800000 constant MNT_LOCAL (line 837) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 838) | MNT_MULTILABEL = 0x4000000 constant MNT_NOATIME (line 839) | MNT_NOATIME = 0x10000000 constant MNT_NOBLOCK (line 840) | MNT_NOBLOCK = 0x20000 constant MNT_NODEV (line 841) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 842) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 843) | MNT_NOSUID = 0x8 constant MNT_NOUSERXATTR (line 844) | MNT_NOUSERXATTR = 0x1000000 constant MNT_NOWAIT (line 845) | MNT_NOWAIT = 0x2 constant MNT_QUARANTINE (line 846) | MNT_QUARANTINE = 0x400 constant MNT_QUOTA (line 847) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 848) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 849) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 850) | MNT_ROOTFS = 0x4000 constant MNT_SYNCHRONOUS (line 851) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 852) | MNT_UNION = 0x20 constant MNT_UNKNOWNPERMISSIONS (line 853) | MNT_UNKNOWNPERMISSIONS = 0x200000 constant MNT_UPDATE (line 854) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 855) | MNT_VISFLAGMASK = 0x17f0f5ff constant MNT_WAIT (line 856) | MNT_WAIT = 0x1 constant MSG_CTRUNC (line 857) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 858) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 859) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 860) | MSG_EOF = 0x100 constant MSG_EOR (line 861) | MSG_EOR = 0x8 constant MSG_FLUSH (line 862) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 863) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 864) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 865) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 866) | MSG_OOB = 0x1 constant MSG_PEEK (line 867) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 868) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 869) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 870) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 871) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 872) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 873) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 874) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 875) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 876) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 877) | MS_SYNC = 0x10 constant NAME_MAX (line 878) | NAME_MAX = 0xff constant NET_RT_DUMP (line 879) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 880) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 881) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 882) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 883) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 884) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 885) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 886) | NET_RT_TRASH = 0x5 constant NL0 (line 887) | NL0 = 0x0 constant NL1 (line 888) | NL1 = 0x100 constant NL2 (line 889) | NL2 = 0x200 constant NL3 (line 890) | NL3 = 0x300 constant NLDLY (line 891) | NLDLY = 0x300 constant NOFLSH (line 892) | NOFLSH = 0x80000000 constant NOKERNINFO (line 893) | NOKERNINFO = 0x2000000 constant NOTE_ABSOLUTE (line 894) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 895) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 896) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 897) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 898) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 899) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 900) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 901) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 902) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 903) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 904) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 905) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 906) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 907) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 908) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 909) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 910) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 911) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 912) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 913) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 914) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 915) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 916) | NOTE_FORK = 0x40000000 constant NOTE_FUNLOCK (line 917) | NOTE_FUNLOCK = 0x100 constant NOTE_LEEWAY (line 918) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 919) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 920) | NOTE_LOWAT = 0x1 constant NOTE_MACH_CONTINUOUS_TIME (line 921) | NOTE_MACH_CONTINUOUS_TIME = 0x80 constant NOTE_NONE (line 922) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 923) | NOTE_NSECONDS = 0x4 constant NOTE_OOB (line 924) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 925) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 926) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 927) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 930) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 931) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 932) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 933) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 934) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 935) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 936) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 937) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 938) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 939) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 940) | NOTE_WRITE = 0x2 constant OCRNL (line 941) | OCRNL = 0x10 constant OFDEL (line 942) | OFDEL = 0x20000 constant OFILL (line 943) | OFILL = 0x80 constant ONLCR (line 944) | ONLCR = 0x2 constant ONLRET (line 945) | ONLRET = 0x40 constant ONOCR (line 946) | ONOCR = 0x20 constant ONOEOT (line 947) | ONOEOT = 0x8 constant OPOST (line 948) | OPOST = 0x1 constant OXTABS (line 949) | OXTABS = 0x4 constant O_ACCMODE (line 950) | O_ACCMODE = 0x3 constant O_ALERT (line 951) | O_ALERT = 0x20000000 constant O_APPEND (line 952) | O_APPEND = 0x8 constant O_ASYNC (line 953) | O_ASYNC = 0x40 constant O_CLOEXEC (line 954) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 955) | O_CREAT = 0x200 constant O_DIRECTORY (line 956) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 957) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DP_GETRAWUNENCRYPTED (line 958) | O_DP_GETRAWUNENCRYPTED = 0x2 constant O_DSYNC (line 959) | O_DSYNC = 0x400000 constant O_EVTONLY (line 960) | O_EVTONLY = 0x8000 constant O_EXCL (line 961) | O_EXCL = 0x800 constant O_EXLOCK (line 962) | O_EXLOCK = 0x20 constant O_FSYNC (line 963) | O_FSYNC = 0x80 constant O_NDELAY (line 964) | O_NDELAY = 0x4 constant O_NOCTTY (line 965) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 966) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 967) | O_NONBLOCK = 0x4 constant O_POPUP (line 968) | O_POPUP = 0x80000000 constant O_RDONLY (line 969) | O_RDONLY = 0x0 constant O_RDWR (line 970) | O_RDWR = 0x2 constant O_SHLOCK (line 971) | O_SHLOCK = 0x10 constant O_SYMLINK (line 972) | O_SYMLINK = 0x200000 constant O_SYNC (line 973) | O_SYNC = 0x80 constant O_TRUNC (line 974) | O_TRUNC = 0x400 constant O_WRONLY (line 975) | O_WRONLY = 0x1 constant PARENB (line 976) | PARENB = 0x1000 constant PARMRK (line 977) | PARMRK = 0x8 constant PARODD (line 978) | PARODD = 0x2000 constant PENDIN (line 979) | PENDIN = 0x20000000 constant PRIO_PGRP (line 980) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 981) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 982) | PRIO_USER = 0x2 constant PROT_EXEC (line 983) | PROT_EXEC = 0x4 constant PROT_NONE (line 984) | PROT_NONE = 0x0 constant PROT_READ (line 985) | PROT_READ = 0x1 constant PROT_WRITE (line 986) | PROT_WRITE = 0x2 constant PT_ATTACH (line 987) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 988) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 989) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 990) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 991) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 992) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 993) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 994) | PT_KILL = 0x8 constant PT_READ_D (line 995) | PT_READ_D = 0x2 constant PT_READ_I (line 996) | PT_READ_I = 0x1 constant PT_READ_U (line 997) | PT_READ_U = 0x3 constant PT_SIGEXC (line 998) | PT_SIGEXC = 0xc constant PT_STEP (line 999) | PT_STEP = 0x9 constant PT_THUPDATE (line 1000) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 1001) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 1002) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 1003) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 1004) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 1005) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 1006) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1007) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 1008) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 1009) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1010) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1011) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1012) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1013) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1014) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1015) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1016) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1017) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1018) | RTAX_BRD = 0x7 constant RTAX_DST (line 1019) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1020) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1021) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1022) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1023) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1024) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1025) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1026) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1027) | RTA_BRD = 0x80 constant RTA_DST (line 1028) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1029) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1030) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1031) | RTA_IFA = 0x20 constant RTA_IFP (line 1032) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1033) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1034) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1035) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1036) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 1037) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 1038) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 1039) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1040) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1041) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1042) | RTF_HOST = 0x4 constant RTF_IFREF (line 1043) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 1044) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 1045) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1046) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1047) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1048) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 1049) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 1050) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1051) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1052) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1053) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1054) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 1055) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 1056) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 1057) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 1058) | RTF_STATIC = 0x800 constant RTF_UP (line 1059) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1060) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1061) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1062) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1063) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1064) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1065) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1066) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1067) | RTM_GET = 0x4 constant RTM_GET2 (line 1068) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 1069) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 1070) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 1071) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1072) | RTM_LOSING = 0x5 constant RTM_MISS (line 1073) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1074) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1075) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 1076) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 1077) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1078) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1079) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1080) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1081) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1082) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1083) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1084) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1085) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1086) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1087) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1088) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1089) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1090) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1091) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1092) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1093) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1094) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1095) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1096) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1097) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1098) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1099) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1100) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1101) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1102) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1103) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1104) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1105) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1106) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1107) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1108) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1109) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1110) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1111) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1112) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1113) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1115) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1116) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1117) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1118) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1119) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1120) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1121) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1123) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1124) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1125) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1126) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1127) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1128) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1129) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1130) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1131) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1132) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1133) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1134) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1135) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1136) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1137) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1138) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1139) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1140) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1141) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1142) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1143) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1144) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1145) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1146) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1147) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1148) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1149) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1150) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1151) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1152) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1153) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1154) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1155) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1156) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1157) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1158) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1159) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1160) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1161) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1162) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1163) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1164) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1165) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1166) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1167) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1168) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1169) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1170) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1171) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1172) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1173) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1174) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1175) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1176) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1177) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1178) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1179) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1180) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1181) | SO_LABEL = 0x1010 constant SO_LINGER (line 1182) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1183) | SO_LINGER_SEC = 0x1080 constant SO_NETSVC_MARKING_LEVEL (line 1184) | SO_NETSVC_MARKING_LEVEL = 0x1119 constant SO_NET_SERVICE_TYPE (line 1185) | SO_NET_SERVICE_TYPE = 0x1116 constant SO_NKE (line 1186) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1187) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1188) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1189) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1190) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1191) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1192) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1193) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1194) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1195) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1196) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1197) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1198) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1199) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1200) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1201) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1202) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1203) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1204) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1205) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1206) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1207) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1208) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1209) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1210) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1211) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1212) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1213) | S_IEXEC = 0x40 constant S_IFBLK (line 1214) | S_IFBLK = 0x6000 constant S_IFCHR (line 1215) | S_IFCHR = 0x2000 constant S_IFDIR (line 1216) | S_IFDIR = 0x4000 constant S_IFIFO (line 1217) | S_IFIFO = 0x1000 constant S_IFLNK (line 1218) | S_IFLNK = 0xa000 constant S_IFMT (line 1219) | S_IFMT = 0xf000 constant S_IFREG (line 1220) | S_IFREG = 0x8000 constant S_IFSOCK (line 1221) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1222) | S_IFWHT = 0xe000 constant S_IREAD (line 1223) | S_IREAD = 0x100 constant S_IRGRP (line 1224) | S_IRGRP = 0x20 constant S_IROTH (line 1225) | S_IROTH = 0x4 constant S_IRUSR (line 1226) | S_IRUSR = 0x100 constant S_IRWXG (line 1227) | S_IRWXG = 0x38 constant S_IRWXO (line 1228) | S_IRWXO = 0x7 constant S_IRWXU (line 1229) | S_IRWXU = 0x1c0 constant S_ISGID (line 1230) | S_ISGID = 0x400 constant S_ISTXT (line 1231) | S_ISTXT = 0x200 constant S_ISUID (line 1232) | S_ISUID = 0x800 constant S_ISVTX (line 1233) | S_ISVTX = 0x200 constant S_IWGRP (line 1234) | S_IWGRP = 0x10 constant S_IWOTH (line 1235) | S_IWOTH = 0x2 constant S_IWRITE (line 1236) | S_IWRITE = 0x80 constant S_IWUSR (line 1237) | S_IWUSR = 0x80 constant S_IXGRP (line 1238) | S_IXGRP = 0x8 constant S_IXOTH (line 1239) | S_IXOTH = 0x1 constant S_IXUSR (line 1240) | S_IXUSR = 0x40 constant TAB0 (line 1241) | TAB0 = 0x0 constant TAB1 (line 1242) | TAB1 = 0x400 constant TAB2 (line 1243) | TAB2 = 0x800 constant TAB3 (line 1244) | TAB3 = 0x4 constant TABDLY (line 1245) | TABDLY = 0xc04 constant TCIFLUSH (line 1246) | TCIFLUSH = 0x1 constant TCIOFF (line 1247) | TCIOFF = 0x3 constant TCIOFLUSH (line 1248) | TCIOFLUSH = 0x3 constant TCION (line 1249) | TCION = 0x4 constant TCOFLUSH (line 1250) | TCOFLUSH = 0x2 constant TCOOFF (line 1251) | TCOOFF = 0x1 constant TCOON (line 1252) | TCOON = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1253) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_CONNECTION_INFO (line 1254) | TCP_CONNECTION_INFO = 0x106 constant TCP_ENABLE_ECN (line 1255) | TCP_ENABLE_ECN = 0x104 constant TCP_FASTOPEN (line 1256) | TCP_FASTOPEN = 0x105 constant TCP_KEEPALIVE (line 1257) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1258) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1259) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1260) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1261) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1262) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1263) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1264) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1265) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1266) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1267) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1268) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1269) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1270) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1271) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1272) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1273) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1274) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1275) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1276) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1277) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1278) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1279) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1280) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1281) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1282) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1283) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1284) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1285) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1286) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1287) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1288) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1289) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1290) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1291) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1292) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1293) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1294) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1295) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1296) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1297) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1298) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1299) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1300) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1301) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1302) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1303) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1304) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1305) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1306) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1307) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1308) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1309) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1310) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1311) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1312) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1313) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1314) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1315) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1316) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1317) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1318) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1319) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1320) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1321) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1322) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1323) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1324) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1325) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1326) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1327) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1328) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1329) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1330) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1331) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1332) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1333) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1334) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1335) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1336) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1337) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1338) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1339) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1340) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1341) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1342) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1343) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1344) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1345) | TOSTOP = 0x400000 constant VDISCARD (line 1346) | VDISCARD = 0xf constant VDSUSP (line 1347) | VDSUSP = 0xb constant VEOF (line 1348) | VEOF = 0x0 constant VEOL (line 1349) | VEOL = 0x1 constant VEOL2 (line 1350) | VEOL2 = 0x2 constant VERASE (line 1351) | VERASE = 0x3 constant VINTR (line 1352) | VINTR = 0x8 constant VKILL (line 1353) | VKILL = 0x5 constant VLNEXT (line 1354) | VLNEXT = 0xe constant VMIN (line 1355) | VMIN = 0x10 constant VM_LOADAVG (line 1356) | VM_LOADAVG = 0x2 constant VM_MACHFACTOR (line 1357) | VM_MACHFACTOR = 0x4 constant VM_MAXID (line 1358) | VM_MAXID = 0x6 constant VM_METER (line 1359) | VM_METER = 0x1 constant VM_SWAPUSAGE (line 1360) | VM_SWAPUSAGE = 0x5 constant VQUIT (line 1361) | VQUIT = 0x9 constant VREPRINT (line 1362) | VREPRINT = 0x6 constant VSTART (line 1363) | VSTART = 0xc constant VSTATUS (line 1364) | VSTATUS = 0x12 constant VSTOP (line 1365) | VSTOP = 0xd constant VSUSP (line 1366) | VSUSP = 0xa constant VT0 (line 1367) | VT0 = 0x0 constant VT1 (line 1368) | VT1 = 0x10000 constant VTDLY (line 1369) | VTDLY = 0x10000 constant VTIME (line 1370) | VTIME = 0x11 constant VWERASE (line 1371) | VWERASE = 0x4 constant WCONTINUED (line 1372) | WCONTINUED = 0x10 constant WCOREFLAG (line 1373) | WCOREFLAG = 0x80 constant WEXITED (line 1374) | WEXITED = 0x4 constant WNOHANG (line 1375) | WNOHANG = 0x1 constant WNOWAIT (line 1376) | WNOWAIT = 0x20 constant WORDSIZE (line 1377) | WORDSIZE = 0x40 constant WSTOPPED (line 1378) | WSTOPPED = 0x8 constant WUNTRACED (line 1379) | WUNTRACED = 0x2 constant E2BIG (line 1384) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1385) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1386) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1387) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1388) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1389) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1390) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1391) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1392) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1393) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1394) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1395) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1396) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1397) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1398) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1399) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1400) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1401) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1402) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1403) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1404) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1405) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1406) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1407) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1408) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1409) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1410) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1411) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1412) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1413) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1414) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1415) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1416) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1417) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1418) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1419) | EINVAL = syscall.Errno(0x16) constant EIO (line 1420) | EIO = syscall.Errno(0x5) constant EISCONN (line 1421) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1422) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1423) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1424) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1425) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1426) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1427) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1428) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1429) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1430) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1431) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1432) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1433) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1434) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1435) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1436) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1437) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1438) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1439) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1440) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1441) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1442) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1443) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1444) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1445) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1446) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1447) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1448) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1449) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1450) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1451) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1452) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1453) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1454) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1455) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1456) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1457) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1458) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1459) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1460) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1461) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1462) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1463) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1464) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1465) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1466) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1467) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1468) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1469) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1470) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1471) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1472) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1473) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1474) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1475) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1476) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1477) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1478) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1479) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1480) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1481) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1482) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1483) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1484) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1485) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1486) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1487) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1488) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1489) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1490) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1491) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1496) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1497) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1498) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1499) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1500) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1501) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1502) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1503) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1504) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1505) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1506) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1507) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1508) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1509) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1510) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1511) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1512) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1513) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1514) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1515) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1516) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1517) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1518) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1519) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1520) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1521) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1522) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1523) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1524) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1525) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1526) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1527) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant ALTWERASE (line 51) | ALTWERASE = 0x200 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 77) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 78) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 79) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 80) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 81) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 82) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 83) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 84) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 85) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 86) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 87) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 88) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 89) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 90) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 91) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 92) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 93) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 94) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 95) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 96) | BIOCVERSION = 0x40044271 constant BPF_A (line 97) | BPF_A = 0x10 constant BPF_ABS (line 98) | BPF_ABS = 0x20 constant BPF_ADD (line 99) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 100) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 101) | BPF_ALU = 0x4 constant BPF_AND (line 102) | BPF_AND = 0x50 constant BPF_B (line 103) | BPF_B = 0x10 constant BPF_DIV (line 104) | BPF_DIV = 0x30 constant BPF_H (line 105) | BPF_H = 0x8 constant BPF_IMM (line 106) | BPF_IMM = 0x0 constant BPF_IND (line 107) | BPF_IND = 0x40 constant BPF_JA (line 108) | BPF_JA = 0x0 constant BPF_JEQ (line 109) | BPF_JEQ = 0x10 constant BPF_JGE (line 110) | BPF_JGE = 0x30 constant BPF_JGT (line 111) | BPF_JGT = 0x20 constant BPF_JMP (line 112) | BPF_JMP = 0x5 constant BPF_JSET (line 113) | BPF_JSET = 0x40 constant BPF_K (line 114) | BPF_K = 0x0 constant BPF_LD (line 115) | BPF_LD = 0x0 constant BPF_LDX (line 116) | BPF_LDX = 0x1 constant BPF_LEN (line 117) | BPF_LEN = 0x80 constant BPF_LSH (line 118) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 119) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 120) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 121) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 122) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 123) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 124) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 125) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 126) | BPF_MISC = 0x7 constant BPF_MSH (line 127) | BPF_MSH = 0xa0 constant BPF_MUL (line 128) | BPF_MUL = 0x20 constant BPF_NEG (line 129) | BPF_NEG = 0x80 constant BPF_OR (line 130) | BPF_OR = 0x40 constant BPF_RELEASE (line 131) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 132) | BPF_RET = 0x6 constant BPF_RSH (line 133) | BPF_RSH = 0x70 constant BPF_ST (line 134) | BPF_ST = 0x2 constant BPF_STX (line 135) | BPF_STX = 0x3 constant BPF_SUB (line 136) | BPF_SUB = 0x10 constant BPF_TAX (line 137) | BPF_TAX = 0x0 constant BPF_TXA (line 138) | BPF_TXA = 0x80 constant BPF_W (line 139) | BPF_W = 0x0 constant BPF_X (line 140) | BPF_X = 0x8 constant BRKINT (line 141) | BRKINT = 0x2 constant BS0 (line 142) | BS0 = 0x0 constant BS1 (line 143) | BS1 = 0x8000 constant BSDLY (line 144) | BSDLY = 0x8000 constant CFLUSH (line 145) | CFLUSH = 0xf constant CLOCAL (line 146) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 147) | CLOCK_MONOTONIC = 0x6 constant CLOCK_MONOTONIC_RAW (line 148) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_MONOTONIC_RAW_APPROX (line 149) | CLOCK_MONOTONIC_RAW_APPROX = 0x5 constant CLOCK_PROCESS_CPUTIME_ID (line 150) | CLOCK_PROCESS_CPUTIME_ID = 0xc constant CLOCK_REALTIME (line 151) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 152) | CLOCK_THREAD_CPUTIME_ID = 0x10 constant CLOCK_UPTIME_RAW (line 153) | CLOCK_UPTIME_RAW = 0x8 constant CLOCK_UPTIME_RAW_APPROX (line 154) | CLOCK_UPTIME_RAW_APPROX = 0x9 constant CR0 (line 155) | CR0 = 0x0 constant CR1 (line 156) | CR1 = 0x1000 constant CR2 (line 157) | CR2 = 0x2000 constant CR3 (line 158) | CR3 = 0x3000 constant CRDLY (line 159) | CRDLY = 0x3000 constant CREAD (line 160) | CREAD = 0x800 constant CRTSCTS (line 161) | CRTSCTS = 0x30000 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant DLT_A429 (line 174) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 175) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 176) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 177) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 178) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 179) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 180) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 181) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 182) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 183) | DLT_AURORA = 0x7e constant DLT_AX25 (line 184) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 185) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 186) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 187) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 188) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 189) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 190) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 191) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 192) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 193) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 194) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 195) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 196) | DLT_DBUS = 0xe7 constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 199) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 200) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 201) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 202) | DLT_EN3MB = 0x2 constant DLT_ENC (line 203) | DLT_ENC = 0x6d constant DLT_ERF (line 204) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 205) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 206) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 207) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 208) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 209) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 210) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 211) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 212) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 213) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 214) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 215) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 216) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 217) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 218) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 219) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 221) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 222) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 223) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 224) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 225) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 226) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 227) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 228) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 229) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 233) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 234) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 235) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 236) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 237) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 238) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 239) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 240) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 241) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 242) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 243) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 244) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 245) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 246) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 247) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 248) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 249) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 250) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 251) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 252) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 253) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 254) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 255) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 256) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 257) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 258) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 259) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 260) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 261) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 262) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 263) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 264) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 265) | DLT_LAPD = 0xcb constant DLT_LIN (line 266) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 267) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 268) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 269) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 270) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 271) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 272) | DLT_LOOP = 0x6c constant DLT_LTALK (line 273) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 274) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 275) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 276) | DLT_MFR = 0xb6 constant DLT_MOST (line 277) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 278) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 283) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 284) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 285) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 286) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 287) | DLT_NFLOG = 0xef constant DLT_NG40 (line 288) | DLT_NG40 = 0xf4 constant DLT_NULL (line 289) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 290) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 291) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 292) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 293) | DLT_PPI = 0xc0 constant DLT_PPP (line 294) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 295) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 296) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 297) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 298) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 299) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 300) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 301) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 302) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 303) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 304) | DLT_RAW = 0xc constant DLT_RIO (line 305) | DLT_RIO = 0x7c constant DLT_SCCP (line 306) | DLT_SCCP = 0x8e constant DLT_SITA (line 307) | DLT_SITA = 0xc4 constant DLT_SLIP (line 308) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 309) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 310) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 311) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 312) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 313) | DLT_TZSP = 0x80 constant DLT_USB (line 314) | DLT_USB = 0xba constant DLT_USB_LINUX (line 315) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 316) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 317) | DLT_USER0 = 0x93 constant DLT_USER1 (line 318) | DLT_USER1 = 0x94 constant DLT_USER10 (line 319) | DLT_USER10 = 0x9d constant DLT_USER11 (line 320) | DLT_USER11 = 0x9e constant DLT_USER12 (line 321) | DLT_USER12 = 0x9f constant DLT_USER13 (line 322) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 323) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 324) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 325) | DLT_USER2 = 0x95 constant DLT_USER3 (line 326) | DLT_USER3 = 0x96 constant DLT_USER4 (line 327) | DLT_USER4 = 0x97 constant DLT_USER5 (line 328) | DLT_USER5 = 0x98 constant DLT_USER6 (line 329) | DLT_USER6 = 0x99 constant DLT_USER7 (line 330) | DLT_USER7 = 0x9a constant DLT_USER8 (line 331) | DLT_USER8 = 0x9b constant DLT_USER9 (line 332) | DLT_USER9 = 0x9c constant DLT_WIHART (line 333) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 334) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 335) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 336) | DT_BLK = 0x6 constant DT_CHR (line 337) | DT_CHR = 0x2 constant DT_DIR (line 338) | DT_DIR = 0x4 constant DT_FIFO (line 339) | DT_FIFO = 0x1 constant DT_LNK (line 340) | DT_LNK = 0xa constant DT_REG (line 341) | DT_REG = 0x8 constant DT_SOCK (line 342) | DT_SOCK = 0xc constant DT_UNKNOWN (line 343) | DT_UNKNOWN = 0x0 constant DT_WHT (line 344) | DT_WHT = 0xe constant ECHO (line 345) | ECHO = 0x8 constant ECHOCTL (line 346) | ECHOCTL = 0x40 constant ECHOE (line 347) | ECHOE = 0x2 constant ECHOK (line 348) | ECHOK = 0x4 constant ECHOKE (line 349) | ECHOKE = 0x1 constant ECHONL (line 350) | ECHONL = 0x10 constant ECHOPRT (line 351) | ECHOPRT = 0x20 constant EVFILT_AIO (line 352) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 353) | EVFILT_EXCEPT = -0xf constant EVFILT_FS (line 354) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 355) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 356) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 357) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 358) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 359) | EVFILT_SYSCOUNT = 0xf constant EVFILT_THREADMARKER (line 360) | EVFILT_THREADMARKER = 0xf constant EVFILT_TIMER (line 361) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 362) | EVFILT_USER = -0xa constant EVFILT_VM (line 363) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 364) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 365) | EVFILT_WRITE = -0x2 constant EV_ADD (line 366) | EV_ADD = 0x1 constant EV_CLEAR (line 367) | EV_CLEAR = 0x20 constant EV_DELETE (line 368) | EV_DELETE = 0x2 constant EV_DISABLE (line 369) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 370) | EV_DISPATCH = 0x80 constant EV_DISPATCH2 (line 371) | EV_DISPATCH2 = 0x180 constant EV_ENABLE (line 372) | EV_ENABLE = 0x4 constant EV_EOF (line 373) | EV_EOF = 0x8000 constant EV_ERROR (line 374) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 375) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 376) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 377) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 378) | EV_OOBAND = 0x2000 constant EV_POLL (line 379) | EV_POLL = 0x1000 constant EV_RECEIPT (line 380) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 381) | EV_SYSFLAGS = 0xf000 constant EV_UDATA_SPECIFIC (line 382) | EV_UDATA_SPECIFIC = 0x100 constant EV_VANISHED (line 383) | EV_VANISHED = 0x200 constant EXTA (line 384) | EXTA = 0x4b00 constant EXTB (line 385) | EXTB = 0x9600 constant EXTPROC (line 386) | EXTPROC = 0x800 constant FD_CLOEXEC (line 387) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 388) | FD_SETSIZE = 0x400 constant FF0 (line 389) | FF0 = 0x0 constant FF1 (line 390) | FF1 = 0x4000 constant FFDLY (line 391) | FFDLY = 0x4000 constant FLUSHO (line 392) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 393) | F_ADDFILESIGS = 0x3d constant F_ADDFILESIGS_FOR_DYLD_SIM (line 394) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53 constant F_ADDFILESIGS_RETURN (line 395) | F_ADDFILESIGS_RETURN = 0x61 constant F_ADDSIGS (line 396) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 397) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 398) | F_ALLOCATECONTIG = 0x2 constant F_BARRIERFSYNC (line 399) | F_BARRIERFSYNC = 0x55 constant F_CHECK_LV (line 400) | F_CHECK_LV = 0x62 constant F_CHKCLEAN (line 401) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 402) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 403) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 404) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 405) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 406) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 407) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 408) | F_GETCODEDIR = 0x48 constant F_GETFD (line 409) | F_GETFD = 0x1 constant F_GETFL (line 410) | F_GETFL = 0x3 constant F_GETLK (line 411) | F_GETLK = 0x7 constant F_GETLKPID (line 412) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 413) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 414) | F_GETOWN = 0x5 constant F_GETPATH (line 415) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 416) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 417) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 418) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 419) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 420) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 421) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 422) | F_NOCACHE = 0x30 constant F_NODIRECT (line 423) | F_NODIRECT = 0x3e constant F_OK (line 424) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 425) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 426) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 427) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 428) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 429) | F_RDAHEAD = 0x2d constant F_RDLCK (line 430) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 431) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 432) | F_SETFD = 0x2 constant F_SETFL (line 433) | F_SETFL = 0x4 constant F_SETLK (line 434) | F_SETLK = 0x8 constant F_SETLKW (line 435) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 436) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 437) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 438) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 439) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 440) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 441) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 442) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 443) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 444) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 445) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 446) | F_WRLCK = 0x3 constant HUPCL (line 447) | HUPCL = 0x4000 constant ICANON (line 448) | ICANON = 0x100 constant ICMP6_FILTER (line 449) | ICMP6_FILTER = 0x12 constant ICRNL (line 450) | ICRNL = 0x100 constant IEXTEN (line 451) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 453) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 454) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_AAL5 (line 471) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 472) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 473) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 474) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 475) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 476) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 477) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 478) | IFT_CEPT = 0x13 constant IFT_DS3 (line 479) | IFT_DS3 = 0x1e constant IFT_ENC (line 480) | IFT_ENC = 0xf4 constant IFT_EON (line 481) | IFT_EON = 0x19 constant IFT_ETHER (line 482) | IFT_ETHER = 0x6 constant IFT_FAITH (line 483) | IFT_FAITH = 0x38 constant IFT_FDDI (line 484) | IFT_FDDI = 0xf constant IFT_FRELAY (line 485) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 486) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 487) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 488) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 489) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 490) | IFT_HSSI = 0x2e constant IFT_HY (line 491) | IFT_HY = 0xe constant IFT_IEEE1394 (line 492) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 493) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 494) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 495) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 496) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 497) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 498) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 499) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 500) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 501) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 502) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 503) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 504) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 505) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 506) | IFT_MODEM = 0x30 constant IFT_NSIP (line 507) | IFT_NSIP = 0x1b constant IFT_OTHER (line 508) | IFT_OTHER = 0x1 constant IFT_P10 (line 509) | IFT_P10 = 0xc constant IFT_P80 (line 510) | IFT_P80 = 0xd constant IFT_PARA (line 511) | IFT_PARA = 0x22 constant IFT_PDP (line 512) | IFT_PDP = 0xff constant IFT_PFLOG (line 513) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 514) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 515) | IFT_PKTAP = 0xfe constant IFT_PPP (line 516) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 517) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 518) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 519) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 520) | IFT_RS232 = 0x21 constant IFT_SDLC (line 521) | IFT_SDLC = 0x11 constant IFT_SIP (line 522) | IFT_SIP = 0x1f constant IFT_SLIP (line 523) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 524) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 525) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 526) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 527) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 528) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 529) | IFT_STARLAN = 0xb constant IFT_STF (line 530) | IFT_STF = 0x39 constant IFT_T1 (line 531) | IFT_T1 = 0x12 constant IFT_ULTRA (line 532) | IFT_ULTRA = 0x1d constant IFT_V35 (line 533) | IFT_V35 = 0x2d constant IFT_X25 (line 534) | IFT_X25 = 0x5 constant IFT_X25DDN (line 535) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 536) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 537) | IFT_XETHER = 0x1a constant IGNBRK (line 538) | IGNBRK = 0x1 constant IGNCR (line 539) | IGNCR = 0x80 constant IGNPAR (line 540) | IGNPAR = 0x4 constant IMAXBEL (line 541) | IMAXBEL = 0x2000 constant INLCR (line 542) | INLCR = 0x40 constant INPCK (line 543) | INPCK = 0x10 constant IN_CLASSA_HOST (line 544) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 545) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 546) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 547) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 548) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 549) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 550) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 551) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 552) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 553) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 554) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 555) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 556) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 557) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 558) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 559) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 560) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 561) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 562) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 563) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 564) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 565) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 566) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 567) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 568) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 569) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 570) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 571) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 572) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 573) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 574) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 575) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 576) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 577) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 578) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 579) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 580) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 581) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 582) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 583) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 584) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 585) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 586) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 587) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 588) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 589) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 590) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 591) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 592) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 593) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 594) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 595) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 596) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 597) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 598) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 599) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 600) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 601) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 602) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 603) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 604) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 605) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 606) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 607) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 608) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 609) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 610) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 611) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 612) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 613) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 614) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 615) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 616) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 617) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 618) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 619) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 620) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 621) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 622) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 623) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 624) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 625) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 626) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 627) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 628) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 629) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 630) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 631) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 632) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 633) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 634) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 635) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 636) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 637) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 638) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 639) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 640) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 641) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 642) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 643) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 644) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 645) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 646) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 647) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 648) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 649) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 650) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 651) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 652) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 653) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 654) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 655) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 656) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 657) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 658) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 659) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 660) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 661) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 662) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 663) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 664) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 665) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 666) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 667) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 668) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 669) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 670) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 671) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 672) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 673) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 674) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 675) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 676) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 677) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 678) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 679) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 680) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 681) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 682) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 683) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 684) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 685) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 686) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 687) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 688) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 689) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 690) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 691) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 692) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 693) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 694) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 695) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 696) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 697) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 698) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 699) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 700) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 701) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 702) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 703) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 704) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 705) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 706) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 707) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 708) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 709) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 710) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 711) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 712) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 713) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 714) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 715) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 716) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 717) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 718) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 719) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 720) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 721) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 722) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 723) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 724) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 725) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 726) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 727) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 728) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 729) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 730) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 731) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 732) | IP_FAITH = 0x16 constant IP_FW_ADD (line 733) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 734) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 735) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 736) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 737) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 738) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 739) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 740) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 741) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 742) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 743) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 744) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 745) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 746) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 747) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 748) | IP_MSFILTER = 0x4a constant IP_MSS (line 749) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 750) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 751) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 752) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 753) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 754) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 755) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 756) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 757) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 758) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 759) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 760) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 761) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 762) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 763) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 764) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 765) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 766) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 767) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 768) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 769) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 770) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 771) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 772) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 773) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 774) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 775) | IP_RETOPTS = 0x8 constant IP_RF (line 776) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 777) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 778) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 779) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 780) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 781) | IP_STRIPHDR = 0x17 constant IP_TOS (line 782) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 783) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 784) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 785) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 786) | ISIG = 0x80 constant ISTRIP (line 787) | ISTRIP = 0x20 constant IUTF8 (line 788) | IUTF8 = 0x4000 constant IXANY (line 789) | IXANY = 0x800 constant IXOFF (line 790) | IXOFF = 0x400 constant IXON (line 791) | IXON = 0x200 constant LOCK_EX (line 792) | LOCK_EX = 0x2 constant LOCK_NB (line 793) | LOCK_NB = 0x4 constant LOCK_SH (line 794) | LOCK_SH = 0x1 constant LOCK_UN (line 795) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 796) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 797) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 798) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 799) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 800) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 801) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 802) | MADV_PAGEOUT = 0xa constant MADV_RANDOM (line 803) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 804) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 805) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 806) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 807) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 808) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 809) | MAP_COPY = 0x2 constant MAP_FILE (line 810) | MAP_FILE = 0x0 constant MAP_FIXED (line 811) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 812) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 813) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 814) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 815) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 816) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 817) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 818) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 819) | MAP_RESERVED0080 = 0x80 constant MAP_RESILIENT_CODESIGN (line 820) | MAP_RESILIENT_CODESIGN = 0x2000 constant MAP_RESILIENT_MEDIA (line 821) | MAP_RESILIENT_MEDIA = 0x4000 constant MAP_SHARED (line 822) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 823) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 824) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 825) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 826) | MNT_AUTOMOUNTED = 0x400000 constant MNT_CMDFLAGS (line 827) | MNT_CMDFLAGS = 0xf0000 constant MNT_CPROTECT (line 828) | MNT_CPROTECT = 0x80 constant MNT_DEFWRITE (line 829) | MNT_DEFWRITE = 0x2000000 constant MNT_DONTBROWSE (line 830) | MNT_DONTBROWSE = 0x100000 constant MNT_DOVOLFS (line 831) | MNT_DOVOLFS = 0x8000 constant MNT_DWAIT (line 832) | MNT_DWAIT = 0x4 constant MNT_EXPORTED (line 833) | MNT_EXPORTED = 0x100 constant MNT_FORCE (line 834) | MNT_FORCE = 0x80000 constant MNT_IGNORE_OWNERSHIP (line 835) | MNT_IGNORE_OWNERSHIP = 0x200000 constant MNT_JOURNALED (line 836) | MNT_JOURNALED = 0x800000 constant MNT_LOCAL (line 837) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 838) | MNT_MULTILABEL = 0x4000000 constant MNT_NOATIME (line 839) | MNT_NOATIME = 0x10000000 constant MNT_NOBLOCK (line 840) | MNT_NOBLOCK = 0x20000 constant MNT_NODEV (line 841) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 842) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 843) | MNT_NOSUID = 0x8 constant MNT_NOUSERXATTR (line 844) | MNT_NOUSERXATTR = 0x1000000 constant MNT_NOWAIT (line 845) | MNT_NOWAIT = 0x2 constant MNT_QUARANTINE (line 846) | MNT_QUARANTINE = 0x400 constant MNT_QUOTA (line 847) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 848) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 849) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 850) | MNT_ROOTFS = 0x4000 constant MNT_SYNCHRONOUS (line 851) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 852) | MNT_UNION = 0x20 constant MNT_UNKNOWNPERMISSIONS (line 853) | MNT_UNKNOWNPERMISSIONS = 0x200000 constant MNT_UPDATE (line 854) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 855) | MNT_VISFLAGMASK = 0x17f0f5ff constant MNT_WAIT (line 856) | MNT_WAIT = 0x1 constant MSG_CTRUNC (line 857) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 858) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 859) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 860) | MSG_EOF = 0x100 constant MSG_EOR (line 861) | MSG_EOR = 0x8 constant MSG_FLUSH (line 862) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 863) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 864) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 865) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 866) | MSG_OOB = 0x1 constant MSG_PEEK (line 867) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 868) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 869) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 870) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 871) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 872) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 873) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 874) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 875) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 876) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 877) | MS_SYNC = 0x10 constant NAME_MAX (line 878) | NAME_MAX = 0xff constant NET_RT_DUMP (line 879) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 880) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 881) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 882) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 883) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 884) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 885) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 886) | NET_RT_TRASH = 0x5 constant NL0 (line 887) | NL0 = 0x0 constant NL1 (line 888) | NL1 = 0x100 constant NL2 (line 889) | NL2 = 0x200 constant NL3 (line 890) | NL3 = 0x300 constant NLDLY (line 891) | NLDLY = 0x300 constant NOFLSH (line 892) | NOFLSH = 0x80000000 constant NOKERNINFO (line 893) | NOKERNINFO = 0x2000000 constant NOTE_ABSOLUTE (line 894) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 895) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 896) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 897) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 898) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 899) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 900) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 901) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 902) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 903) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 904) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 905) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 906) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 907) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 908) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 909) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 910) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 911) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 912) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 913) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 914) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 915) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 916) | NOTE_FORK = 0x40000000 constant NOTE_FUNLOCK (line 917) | NOTE_FUNLOCK = 0x100 constant NOTE_LEEWAY (line 918) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 919) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 920) | NOTE_LOWAT = 0x1 constant NOTE_MACH_CONTINUOUS_TIME (line 921) | NOTE_MACH_CONTINUOUS_TIME = 0x80 constant NOTE_NONE (line 922) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 923) | NOTE_NSECONDS = 0x4 constant NOTE_OOB (line 924) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 925) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 926) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 927) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 930) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 931) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 932) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 933) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 934) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 935) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 936) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 937) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 938) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 939) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 940) | NOTE_WRITE = 0x2 constant OCRNL (line 941) | OCRNL = 0x10 constant OFDEL (line 942) | OFDEL = 0x20000 constant OFILL (line 943) | OFILL = 0x80 constant ONLCR (line 944) | ONLCR = 0x2 constant ONLRET (line 945) | ONLRET = 0x40 constant ONOCR (line 946) | ONOCR = 0x20 constant ONOEOT (line 947) | ONOEOT = 0x8 constant OPOST (line 948) | OPOST = 0x1 constant OXTABS (line 949) | OXTABS = 0x4 constant O_ACCMODE (line 950) | O_ACCMODE = 0x3 constant O_ALERT (line 951) | O_ALERT = 0x20000000 constant O_APPEND (line 952) | O_APPEND = 0x8 constant O_ASYNC (line 953) | O_ASYNC = 0x40 constant O_CLOEXEC (line 954) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 955) | O_CREAT = 0x200 constant O_DIRECTORY (line 956) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 957) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DP_GETRAWUNENCRYPTED (line 958) | O_DP_GETRAWUNENCRYPTED = 0x2 constant O_DSYNC (line 959) | O_DSYNC = 0x400000 constant O_EVTONLY (line 960) | O_EVTONLY = 0x8000 constant O_EXCL (line 961) | O_EXCL = 0x800 constant O_EXLOCK (line 962) | O_EXLOCK = 0x20 constant O_FSYNC (line 963) | O_FSYNC = 0x80 constant O_NDELAY (line 964) | O_NDELAY = 0x4 constant O_NOCTTY (line 965) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 966) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 967) | O_NONBLOCK = 0x4 constant O_POPUP (line 968) | O_POPUP = 0x80000000 constant O_RDONLY (line 969) | O_RDONLY = 0x0 constant O_RDWR (line 970) | O_RDWR = 0x2 constant O_SHLOCK (line 971) | O_SHLOCK = 0x10 constant O_SYMLINK (line 972) | O_SYMLINK = 0x200000 constant O_SYNC (line 973) | O_SYNC = 0x80 constant O_TRUNC (line 974) | O_TRUNC = 0x400 constant O_WRONLY (line 975) | O_WRONLY = 0x1 constant PARENB (line 976) | PARENB = 0x1000 constant PARMRK (line 977) | PARMRK = 0x8 constant PARODD (line 978) | PARODD = 0x2000 constant PENDIN (line 979) | PENDIN = 0x20000000 constant PRIO_PGRP (line 980) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 981) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 982) | PRIO_USER = 0x2 constant PROT_EXEC (line 983) | PROT_EXEC = 0x4 constant PROT_NONE (line 984) | PROT_NONE = 0x0 constant PROT_READ (line 985) | PROT_READ = 0x1 constant PROT_WRITE (line 986) | PROT_WRITE = 0x2 constant PT_ATTACH (line 987) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 988) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 989) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 990) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 991) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 992) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 993) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 994) | PT_KILL = 0x8 constant PT_READ_D (line 995) | PT_READ_D = 0x2 constant PT_READ_I (line 996) | PT_READ_I = 0x1 constant PT_READ_U (line 997) | PT_READ_U = 0x3 constant PT_SIGEXC (line 998) | PT_SIGEXC = 0xc constant PT_STEP (line 999) | PT_STEP = 0x9 constant PT_THUPDATE (line 1000) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 1001) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 1002) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 1003) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 1004) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 1005) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 1006) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1007) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 1008) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 1009) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1010) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1011) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1012) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1013) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1014) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1015) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1016) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1017) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1018) | RTAX_BRD = 0x7 constant RTAX_DST (line 1019) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1020) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1021) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1022) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1023) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1024) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1025) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1026) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1027) | RTA_BRD = 0x80 constant RTA_DST (line 1028) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1029) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1030) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1031) | RTA_IFA = 0x20 constant RTA_IFP (line 1032) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1033) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1034) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1035) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1036) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 1037) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 1038) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 1039) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1040) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1041) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1042) | RTF_HOST = 0x4 constant RTF_IFREF (line 1043) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 1044) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 1045) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1046) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1047) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1048) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 1049) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 1050) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1051) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1052) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1053) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1054) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 1055) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 1056) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 1057) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 1058) | RTF_STATIC = 0x800 constant RTF_UP (line 1059) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1060) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1061) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1062) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1063) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1064) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1065) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1066) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1067) | RTM_GET = 0x4 constant RTM_GET2 (line 1068) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 1069) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 1070) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 1071) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1072) | RTM_LOSING = 0x5 constant RTM_MISS (line 1073) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1074) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1075) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 1076) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 1077) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1078) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1079) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1080) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1081) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1082) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1083) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1084) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1085) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1086) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1087) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1088) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1089) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1090) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1091) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1092) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1093) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1094) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1095) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1096) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1097) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1098) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1099) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1100) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1101) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1102) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1103) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1104) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1105) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1106) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1107) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1108) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1109) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1110) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1111) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1112) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1113) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1115) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1116) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1117) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1118) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1119) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1120) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1121) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1123) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1124) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1125) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1126) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1127) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1128) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1129) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1130) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1131) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1132) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1133) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1134) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1135) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1136) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1137) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1138) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1139) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1140) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1141) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1142) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1143) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1144) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1145) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1146) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1147) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1148) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1149) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1150) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1151) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1152) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1153) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1154) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1155) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1156) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1157) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1158) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1159) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1160) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1161) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1162) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1163) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1164) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1165) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1166) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1167) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1168) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1169) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1170) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1171) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1172) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1173) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1174) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1175) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1176) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1177) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1178) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1179) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1180) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1181) | SO_LABEL = 0x1010 constant SO_LINGER (line 1182) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1183) | SO_LINGER_SEC = 0x1080 constant SO_NETSVC_MARKING_LEVEL (line 1184) | SO_NETSVC_MARKING_LEVEL = 0x1119 constant SO_NET_SERVICE_TYPE (line 1185) | SO_NET_SERVICE_TYPE = 0x1116 constant SO_NKE (line 1186) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1187) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1188) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1189) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1190) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1191) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1192) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1193) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1194) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1195) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1196) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1197) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1198) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1199) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1200) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1201) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1202) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1203) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1204) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1205) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1206) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1207) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1208) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1209) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1210) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1211) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1212) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1213) | S_IEXEC = 0x40 constant S_IFBLK (line 1214) | S_IFBLK = 0x6000 constant S_IFCHR (line 1215) | S_IFCHR = 0x2000 constant S_IFDIR (line 1216) | S_IFDIR = 0x4000 constant S_IFIFO (line 1217) | S_IFIFO = 0x1000 constant S_IFLNK (line 1218) | S_IFLNK = 0xa000 constant S_IFMT (line 1219) | S_IFMT = 0xf000 constant S_IFREG (line 1220) | S_IFREG = 0x8000 constant S_IFSOCK (line 1221) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1222) | S_IFWHT = 0xe000 constant S_IREAD (line 1223) | S_IREAD = 0x100 constant S_IRGRP (line 1224) | S_IRGRP = 0x20 constant S_IROTH (line 1225) | S_IROTH = 0x4 constant S_IRUSR (line 1226) | S_IRUSR = 0x100 constant S_IRWXG (line 1227) | S_IRWXG = 0x38 constant S_IRWXO (line 1228) | S_IRWXO = 0x7 constant S_IRWXU (line 1229) | S_IRWXU = 0x1c0 constant S_ISGID (line 1230) | S_ISGID = 0x400 constant S_ISTXT (line 1231) | S_ISTXT = 0x200 constant S_ISUID (line 1232) | S_ISUID = 0x800 constant S_ISVTX (line 1233) | S_ISVTX = 0x200 constant S_IWGRP (line 1234) | S_IWGRP = 0x10 constant S_IWOTH (line 1235) | S_IWOTH = 0x2 constant S_IWRITE (line 1236) | S_IWRITE = 0x80 constant S_IWUSR (line 1237) | S_IWUSR = 0x80 constant S_IXGRP (line 1238) | S_IXGRP = 0x8 constant S_IXOTH (line 1239) | S_IXOTH = 0x1 constant S_IXUSR (line 1240) | S_IXUSR = 0x40 constant TAB0 (line 1241) | TAB0 = 0x0 constant TAB1 (line 1242) | TAB1 = 0x400 constant TAB2 (line 1243) | TAB2 = 0x800 constant TAB3 (line 1244) | TAB3 = 0x4 constant TABDLY (line 1245) | TABDLY = 0xc04 constant TCIFLUSH (line 1246) | TCIFLUSH = 0x1 constant TCIOFF (line 1247) | TCIOFF = 0x3 constant TCIOFLUSH (line 1248) | TCIOFLUSH = 0x3 constant TCION (line 1249) | TCION = 0x4 constant TCOFLUSH (line 1250) | TCOFLUSH = 0x2 constant TCOOFF (line 1251) | TCOOFF = 0x1 constant TCOON (line 1252) | TCOON = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1253) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_CONNECTION_INFO (line 1254) | TCP_CONNECTION_INFO = 0x106 constant TCP_ENABLE_ECN (line 1255) | TCP_ENABLE_ECN = 0x104 constant TCP_FASTOPEN (line 1256) | TCP_FASTOPEN = 0x105 constant TCP_KEEPALIVE (line 1257) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1258) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1259) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1260) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1261) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1262) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1263) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1264) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1265) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1266) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1267) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1268) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1269) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1270) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1271) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1272) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1273) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1274) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1275) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1276) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1277) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1278) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1279) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1280) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1281) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1282) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1283) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1284) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1285) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1286) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1287) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1288) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1289) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1290) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1291) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1292) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1293) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1294) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1295) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1296) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1297) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1298) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1299) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1300) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1301) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1302) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1303) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1304) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1305) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1306) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1307) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1308) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1309) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1310) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1311) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1312) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1313) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1314) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1315) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1316) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1317) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1318) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1319) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1320) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1321) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1322) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1323) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1324) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1325) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1326) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1327) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1328) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1329) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1330) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1331) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1332) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1333) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1334) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1335) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1336) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1337) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1338) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1339) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1340) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1341) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1342) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1343) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1344) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1345) | TOSTOP = 0x400000 constant VDISCARD (line 1346) | VDISCARD = 0xf constant VDSUSP (line 1347) | VDSUSP = 0xb constant VEOF (line 1348) | VEOF = 0x0 constant VEOL (line 1349) | VEOL = 0x1 constant VEOL2 (line 1350) | VEOL2 = 0x2 constant VERASE (line 1351) | VERASE = 0x3 constant VINTR (line 1352) | VINTR = 0x8 constant VKILL (line 1353) | VKILL = 0x5 constant VLNEXT (line 1354) | VLNEXT = 0xe constant VMIN (line 1355) | VMIN = 0x10 constant VM_LOADAVG (line 1356) | VM_LOADAVG = 0x2 constant VM_MACHFACTOR (line 1357) | VM_MACHFACTOR = 0x4 constant VM_MAXID (line 1358) | VM_MAXID = 0x6 constant VM_METER (line 1359) | VM_METER = 0x1 constant VM_SWAPUSAGE (line 1360) | VM_SWAPUSAGE = 0x5 constant VQUIT (line 1361) | VQUIT = 0x9 constant VREPRINT (line 1362) | VREPRINT = 0x6 constant VSTART (line 1363) | VSTART = 0xc constant VSTATUS (line 1364) | VSTATUS = 0x12 constant VSTOP (line 1365) | VSTOP = 0xd constant VSUSP (line 1366) | VSUSP = 0xa constant VT0 (line 1367) | VT0 = 0x0 constant VT1 (line 1368) | VT1 = 0x10000 constant VTDLY (line 1369) | VTDLY = 0x10000 constant VTIME (line 1370) | VTIME = 0x11 constant VWERASE (line 1371) | VWERASE = 0x4 constant WCONTINUED (line 1372) | WCONTINUED = 0x10 constant WCOREFLAG (line 1373) | WCOREFLAG = 0x80 constant WEXITED (line 1374) | WEXITED = 0x4 constant WNOHANG (line 1375) | WNOHANG = 0x1 constant WNOWAIT (line 1376) | WNOWAIT = 0x20 constant WORDSIZE (line 1377) | WORDSIZE = 0x40 constant WSTOPPED (line 1378) | WSTOPPED = 0x8 constant WUNTRACED (line 1379) | WUNTRACED = 0x2 constant E2BIG (line 1384) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1385) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1386) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1387) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1388) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1389) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1390) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1391) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1392) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1393) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1394) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1395) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1396) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1397) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1398) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1399) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1400) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1401) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1402) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1403) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1404) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1405) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1406) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1407) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1408) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1409) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1410) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1411) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1412) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1413) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1414) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1415) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1416) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1417) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1418) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1419) | EINVAL = syscall.Errno(0x16) constant EIO (line 1420) | EIO = syscall.Errno(0x5) constant EISCONN (line 1421) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1422) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1423) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1424) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1425) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1426) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1427) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1428) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1429) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1430) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1431) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1432) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1433) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1434) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1435) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1436) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1437) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1438) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1439) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1440) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1441) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1442) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1443) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1444) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1445) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1446) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1447) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1448) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1449) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1450) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1451) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1452) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1453) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1454) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1455) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1456) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1457) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1458) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1459) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1460) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1461) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1462) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1463) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1464) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1465) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1466) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1467) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1468) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1469) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1470) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1471) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1472) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1473) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1474) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1475) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1476) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1477) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1478) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1479) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1480) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1481) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1482) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1483) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1484) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1485) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1486) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1487) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1488) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1489) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1490) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1491) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1496) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1497) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1498) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1499) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1500) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1501) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1502) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1503) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1504) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1505) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1506) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1507) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1508) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1509) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1510) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1511) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1512) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1513) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1514) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1515) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1516) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1517) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1518) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1519) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1520) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1521) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1522) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1523) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1524) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1525) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1526) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1527) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant ALTWERASE (line 51) | ALTWERASE = 0x200 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 77) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 78) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 79) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 80) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 81) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 82) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 83) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 84) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 85) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 86) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 87) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 88) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 89) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 90) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 91) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 92) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 93) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 94) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 95) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 96) | BIOCVERSION = 0x40044271 constant BPF_A (line 97) | BPF_A = 0x10 constant BPF_ABS (line 98) | BPF_ABS = 0x20 constant BPF_ADD (line 99) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 100) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 101) | BPF_ALU = 0x4 constant BPF_AND (line 102) | BPF_AND = 0x50 constant BPF_B (line 103) | BPF_B = 0x10 constant BPF_DIV (line 104) | BPF_DIV = 0x30 constant BPF_H (line 105) | BPF_H = 0x8 constant BPF_IMM (line 106) | BPF_IMM = 0x0 constant BPF_IND (line 107) | BPF_IND = 0x40 constant BPF_JA (line 108) | BPF_JA = 0x0 constant BPF_JEQ (line 109) | BPF_JEQ = 0x10 constant BPF_JGE (line 110) | BPF_JGE = 0x30 constant BPF_JGT (line 111) | BPF_JGT = 0x20 constant BPF_JMP (line 112) | BPF_JMP = 0x5 constant BPF_JSET (line 113) | BPF_JSET = 0x40 constant BPF_K (line 114) | BPF_K = 0x0 constant BPF_LD (line 115) | BPF_LD = 0x0 constant BPF_LDX (line 116) | BPF_LDX = 0x1 constant BPF_LEN (line 117) | BPF_LEN = 0x80 constant BPF_LSH (line 118) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 119) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 120) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 121) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 122) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 123) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 124) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 125) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 126) | BPF_MISC = 0x7 constant BPF_MSH (line 127) | BPF_MSH = 0xa0 constant BPF_MUL (line 128) | BPF_MUL = 0x20 constant BPF_NEG (line 129) | BPF_NEG = 0x80 constant BPF_OR (line 130) | BPF_OR = 0x40 constant BPF_RELEASE (line 131) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 132) | BPF_RET = 0x6 constant BPF_RSH (line 133) | BPF_RSH = 0x70 constant BPF_ST (line 134) | BPF_ST = 0x2 constant BPF_STX (line 135) | BPF_STX = 0x3 constant BPF_SUB (line 136) | BPF_SUB = 0x10 constant BPF_TAX (line 137) | BPF_TAX = 0x0 constant BPF_TXA (line 138) | BPF_TXA = 0x80 constant BPF_W (line 139) | BPF_W = 0x0 constant BPF_X (line 140) | BPF_X = 0x8 constant BRKINT (line 141) | BRKINT = 0x2 constant BS0 (line 142) | BS0 = 0x0 constant BS1 (line 143) | BS1 = 0x8000 constant BSDLY (line 144) | BSDLY = 0x8000 constant CFLUSH (line 145) | CFLUSH = 0xf constant CLOCAL (line 146) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 147) | CLOCK_MONOTONIC = 0x6 constant CLOCK_MONOTONIC_RAW (line 148) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_MONOTONIC_RAW_APPROX (line 149) | CLOCK_MONOTONIC_RAW_APPROX = 0x5 constant CLOCK_PROCESS_CPUTIME_ID (line 150) | CLOCK_PROCESS_CPUTIME_ID = 0xc constant CLOCK_REALTIME (line 151) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 152) | CLOCK_THREAD_CPUTIME_ID = 0x10 constant CLOCK_UPTIME_RAW (line 153) | CLOCK_UPTIME_RAW = 0x8 constant CLOCK_UPTIME_RAW_APPROX (line 154) | CLOCK_UPTIME_RAW_APPROX = 0x9 constant CR0 (line 155) | CR0 = 0x0 constant CR1 (line 156) | CR1 = 0x1000 constant CR2 (line 157) | CR2 = 0x2000 constant CR3 (line 158) | CR3 = 0x3000 constant CRDLY (line 159) | CRDLY = 0x3000 constant CREAD (line 160) | CREAD = 0x800 constant CRTSCTS (line 161) | CRTSCTS = 0x30000 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant DLT_A429 (line 174) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 175) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 176) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 177) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 178) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 179) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 180) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 181) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 182) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 183) | DLT_AURORA = 0x7e constant DLT_AX25 (line 184) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 185) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 186) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 187) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 188) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 189) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 190) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 191) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 192) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 193) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 194) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 195) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 196) | DLT_DBUS = 0xe7 constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 199) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 200) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 201) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 202) | DLT_EN3MB = 0x2 constant DLT_ENC (line 203) | DLT_ENC = 0x6d constant DLT_ERF (line 204) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 205) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 206) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 207) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 208) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 209) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 210) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 211) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 212) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 213) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 214) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 215) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 216) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 217) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 218) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 219) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 221) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 222) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 223) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 224) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 225) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 226) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 227) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 228) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 229) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 233) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 234) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 235) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 236) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 237) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 238) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 239) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 240) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 241) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 242) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 243) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 244) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 245) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 246) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 247) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 248) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 249) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 250) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 251) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 252) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 253) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 254) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 255) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 256) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 257) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 258) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 259) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 260) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 261) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 262) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 263) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 264) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 265) | DLT_LAPD = 0xcb constant DLT_LIN (line 266) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 267) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 268) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 269) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 270) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 271) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 272) | DLT_LOOP = 0x6c constant DLT_LTALK (line 273) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 274) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 275) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 276) | DLT_MFR = 0xb6 constant DLT_MOST (line 277) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 278) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 283) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 284) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 285) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 286) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 287) | DLT_NFLOG = 0xef constant DLT_NG40 (line 288) | DLT_NG40 = 0xf4 constant DLT_NULL (line 289) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 290) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 291) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 292) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 293) | DLT_PPI = 0xc0 constant DLT_PPP (line 294) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 295) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 296) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 297) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 298) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 299) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 300) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 301) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 302) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 303) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 304) | DLT_RAW = 0xc constant DLT_RIO (line 305) | DLT_RIO = 0x7c constant DLT_SCCP (line 306) | DLT_SCCP = 0x8e constant DLT_SITA (line 307) | DLT_SITA = 0xc4 constant DLT_SLIP (line 308) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 309) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 310) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 311) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 312) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 313) | DLT_TZSP = 0x80 constant DLT_USB (line 314) | DLT_USB = 0xba constant DLT_USB_LINUX (line 315) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 316) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 317) | DLT_USER0 = 0x93 constant DLT_USER1 (line 318) | DLT_USER1 = 0x94 constant DLT_USER10 (line 319) | DLT_USER10 = 0x9d constant DLT_USER11 (line 320) | DLT_USER11 = 0x9e constant DLT_USER12 (line 321) | DLT_USER12 = 0x9f constant DLT_USER13 (line 322) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 323) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 324) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 325) | DLT_USER2 = 0x95 constant DLT_USER3 (line 326) | DLT_USER3 = 0x96 constant DLT_USER4 (line 327) | DLT_USER4 = 0x97 constant DLT_USER5 (line 328) | DLT_USER5 = 0x98 constant DLT_USER6 (line 329) | DLT_USER6 = 0x99 constant DLT_USER7 (line 330) | DLT_USER7 = 0x9a constant DLT_USER8 (line 331) | DLT_USER8 = 0x9b constant DLT_USER9 (line 332) | DLT_USER9 = 0x9c constant DLT_WIHART (line 333) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 334) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 335) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 336) | DT_BLK = 0x6 constant DT_CHR (line 337) | DT_CHR = 0x2 constant DT_DIR (line 338) | DT_DIR = 0x4 constant DT_FIFO (line 339) | DT_FIFO = 0x1 constant DT_LNK (line 340) | DT_LNK = 0xa constant DT_REG (line 341) | DT_REG = 0x8 constant DT_SOCK (line 342) | DT_SOCK = 0xc constant DT_UNKNOWN (line 343) | DT_UNKNOWN = 0x0 constant DT_WHT (line 344) | DT_WHT = 0xe constant ECHO (line 345) | ECHO = 0x8 constant ECHOCTL (line 346) | ECHOCTL = 0x40 constant ECHOE (line 347) | ECHOE = 0x2 constant ECHOK (line 348) | ECHOK = 0x4 constant ECHOKE (line 349) | ECHOKE = 0x1 constant ECHONL (line 350) | ECHONL = 0x10 constant ECHOPRT (line 351) | ECHOPRT = 0x20 constant EVFILT_AIO (line 352) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 353) | EVFILT_EXCEPT = -0xf constant EVFILT_FS (line 354) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 355) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 356) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 357) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 358) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 359) | EVFILT_SYSCOUNT = 0xf constant EVFILT_THREADMARKER (line 360) | EVFILT_THREADMARKER = 0xf constant EVFILT_TIMER (line 361) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 362) | EVFILT_USER = -0xa constant EVFILT_VM (line 363) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 364) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 365) | EVFILT_WRITE = -0x2 constant EV_ADD (line 366) | EV_ADD = 0x1 constant EV_CLEAR (line 367) | EV_CLEAR = 0x20 constant EV_DELETE (line 368) | EV_DELETE = 0x2 constant EV_DISABLE (line 369) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 370) | EV_DISPATCH = 0x80 constant EV_DISPATCH2 (line 371) | EV_DISPATCH2 = 0x180 constant EV_ENABLE (line 372) | EV_ENABLE = 0x4 constant EV_EOF (line 373) | EV_EOF = 0x8000 constant EV_ERROR (line 374) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 375) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 376) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 377) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 378) | EV_OOBAND = 0x2000 constant EV_POLL (line 379) | EV_POLL = 0x1000 constant EV_RECEIPT (line 380) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 381) | EV_SYSFLAGS = 0xf000 constant EV_UDATA_SPECIFIC (line 382) | EV_UDATA_SPECIFIC = 0x100 constant EV_VANISHED (line 383) | EV_VANISHED = 0x200 constant EXTA (line 384) | EXTA = 0x4b00 constant EXTB (line 385) | EXTB = 0x9600 constant EXTPROC (line 386) | EXTPROC = 0x800 constant FD_CLOEXEC (line 387) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 388) | FD_SETSIZE = 0x400 constant FF0 (line 389) | FF0 = 0x0 constant FF1 (line 390) | FF1 = 0x4000 constant FFDLY (line 391) | FFDLY = 0x4000 constant FLUSHO (line 392) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 393) | F_ADDFILESIGS = 0x3d constant F_ADDFILESIGS_FOR_DYLD_SIM (line 394) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53 constant F_ADDFILESIGS_RETURN (line 395) | F_ADDFILESIGS_RETURN = 0x61 constant F_ADDSIGS (line 396) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 397) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 398) | F_ALLOCATECONTIG = 0x2 constant F_BARRIERFSYNC (line 399) | F_BARRIERFSYNC = 0x55 constant F_CHECK_LV (line 400) | F_CHECK_LV = 0x62 constant F_CHKCLEAN (line 401) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 402) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 403) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 404) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 405) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 406) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 407) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 408) | F_GETCODEDIR = 0x48 constant F_GETFD (line 409) | F_GETFD = 0x1 constant F_GETFL (line 410) | F_GETFL = 0x3 constant F_GETLK (line 411) | F_GETLK = 0x7 constant F_GETLKPID (line 412) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 413) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 414) | F_GETOWN = 0x5 constant F_GETPATH (line 415) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 416) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 417) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 418) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 419) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 420) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 421) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 422) | F_NOCACHE = 0x30 constant F_NODIRECT (line 423) | F_NODIRECT = 0x3e constant F_OK (line 424) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 425) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 426) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 427) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 428) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 429) | F_RDAHEAD = 0x2d constant F_RDLCK (line 430) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 431) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 432) | F_SETFD = 0x2 constant F_SETFL (line 433) | F_SETFL = 0x4 constant F_SETLK (line 434) | F_SETLK = 0x8 constant F_SETLKW (line 435) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 436) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 437) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 438) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 439) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 440) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 441) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 442) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 443) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 444) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 445) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 446) | F_WRLCK = 0x3 constant HUPCL (line 447) | HUPCL = 0x4000 constant ICANON (line 448) | ICANON = 0x100 constant ICMP6_FILTER (line 449) | ICMP6_FILTER = 0x12 constant ICRNL (line 450) | ICRNL = 0x100 constant IEXTEN (line 451) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 453) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 454) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_AAL5 (line 471) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 472) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 473) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 474) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 475) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 476) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 477) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 478) | IFT_CEPT = 0x13 constant IFT_DS3 (line 479) | IFT_DS3 = 0x1e constant IFT_ENC (line 480) | IFT_ENC = 0xf4 constant IFT_EON (line 481) | IFT_EON = 0x19 constant IFT_ETHER (line 482) | IFT_ETHER = 0x6 constant IFT_FAITH (line 483) | IFT_FAITH = 0x38 constant IFT_FDDI (line 484) | IFT_FDDI = 0xf constant IFT_FRELAY (line 485) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 486) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 487) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 488) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 489) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 490) | IFT_HSSI = 0x2e constant IFT_HY (line 491) | IFT_HY = 0xe constant IFT_IEEE1394 (line 492) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 493) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 494) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 495) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 496) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 497) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 498) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 499) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 500) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 501) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 502) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 503) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 504) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 505) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 506) | IFT_MODEM = 0x30 constant IFT_NSIP (line 507) | IFT_NSIP = 0x1b constant IFT_OTHER (line 508) | IFT_OTHER = 0x1 constant IFT_P10 (line 509) | IFT_P10 = 0xc constant IFT_P80 (line 510) | IFT_P80 = 0xd constant IFT_PARA (line 511) | IFT_PARA = 0x22 constant IFT_PDP (line 512) | IFT_PDP = 0xff constant IFT_PFLOG (line 513) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 514) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 515) | IFT_PKTAP = 0xfe constant IFT_PPP (line 516) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 517) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 518) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 519) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 520) | IFT_RS232 = 0x21 constant IFT_SDLC (line 521) | IFT_SDLC = 0x11 constant IFT_SIP (line 522) | IFT_SIP = 0x1f constant IFT_SLIP (line 523) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 524) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 525) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 526) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 527) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 528) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 529) | IFT_STARLAN = 0xb constant IFT_STF (line 530) | IFT_STF = 0x39 constant IFT_T1 (line 531) | IFT_T1 = 0x12 constant IFT_ULTRA (line 532) | IFT_ULTRA = 0x1d constant IFT_V35 (line 533) | IFT_V35 = 0x2d constant IFT_X25 (line 534) | IFT_X25 = 0x5 constant IFT_X25DDN (line 535) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 536) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 537) | IFT_XETHER = 0x1a constant IGNBRK (line 538) | IGNBRK = 0x1 constant IGNCR (line 539) | IGNCR = 0x80 constant IGNPAR (line 540) | IGNPAR = 0x4 constant IMAXBEL (line 541) | IMAXBEL = 0x2000 constant INLCR (line 542) | INLCR = 0x40 constant INPCK (line 543) | INPCK = 0x10 constant IN_CLASSA_HOST (line 544) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 545) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 546) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 547) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 548) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 549) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 550) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 551) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 552) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 553) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 554) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 555) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 556) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 557) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 558) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 559) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 560) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 561) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 562) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 563) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 564) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 565) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 566) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 567) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 568) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 569) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 570) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 571) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 572) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 573) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 574) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 575) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 576) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 577) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 578) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 579) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 580) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 581) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 582) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 583) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 584) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 585) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 586) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 587) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 588) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 589) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 590) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 591) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 592) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 593) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 594) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 595) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 596) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 597) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 598) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 599) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 600) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 601) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 602) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 603) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 604) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 605) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 606) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 607) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 608) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 609) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 610) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 611) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 612) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 613) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 614) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 615) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 616) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 617) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 618) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 619) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 620) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 621) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 622) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 623) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 624) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 625) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 626) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 627) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 628) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 629) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 630) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 631) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 632) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 633) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 634) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 635) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 636) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 637) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 638) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 639) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 640) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 641) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 642) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 643) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 644) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 645) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 646) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 647) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 648) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 649) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 650) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 651) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 652) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 653) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 654) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 655) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 656) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 657) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 658) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 659) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 660) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 661) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 662) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 663) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 664) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 665) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 666) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 667) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 668) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 669) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 670) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 671) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 672) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 673) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 674) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 675) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 676) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 677) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 678) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 679) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 680) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 681) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 682) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 683) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 684) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 685) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 686) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 687) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 688) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 689) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 690) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 691) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 692) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 693) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 694) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 695) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 696) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 697) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 698) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 699) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 700) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 701) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 702) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 703) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 704) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 705) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 706) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 707) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 708) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 709) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 710) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 711) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 712) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 713) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 714) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 715) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 716) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 717) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 718) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 719) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 720) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 721) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 722) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 723) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 724) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 725) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 726) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 727) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 728) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 729) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 730) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 731) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 732) | IP_FAITH = 0x16 constant IP_FW_ADD (line 733) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 734) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 735) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 736) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 737) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 738) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 739) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 740) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 741) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 742) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 743) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 744) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 745) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 746) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 747) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 748) | IP_MSFILTER = 0x4a constant IP_MSS (line 749) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 750) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 751) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 752) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 753) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 754) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 755) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 756) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 757) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 758) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 759) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 760) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 761) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 762) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 763) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 764) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 765) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 766) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 767) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 768) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 769) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 770) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 771) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 772) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 773) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 774) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 775) | IP_RETOPTS = 0x8 constant IP_RF (line 776) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 777) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 778) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 779) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 780) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 781) | IP_STRIPHDR = 0x17 constant IP_TOS (line 782) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 783) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 784) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 785) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 786) | ISIG = 0x80 constant ISTRIP (line 787) | ISTRIP = 0x20 constant IUTF8 (line 788) | IUTF8 = 0x4000 constant IXANY (line 789) | IXANY = 0x800 constant IXOFF (line 790) | IXOFF = 0x400 constant IXON (line 791) | IXON = 0x200 constant LOCK_EX (line 792) | LOCK_EX = 0x2 constant LOCK_NB (line 793) | LOCK_NB = 0x4 constant LOCK_SH (line 794) | LOCK_SH = 0x1 constant LOCK_UN (line 795) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 796) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 797) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 798) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 799) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 800) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 801) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 802) | MADV_PAGEOUT = 0xa constant MADV_RANDOM (line 803) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 804) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 805) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 806) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 807) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 808) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 809) | MAP_COPY = 0x2 constant MAP_FILE (line 810) | MAP_FILE = 0x0 constant MAP_FIXED (line 811) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 812) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 813) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 814) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 815) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 816) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 817) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 818) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 819) | MAP_RESERVED0080 = 0x80 constant MAP_RESILIENT_CODESIGN (line 820) | MAP_RESILIENT_CODESIGN = 0x2000 constant MAP_RESILIENT_MEDIA (line 821) | MAP_RESILIENT_MEDIA = 0x4000 constant MAP_SHARED (line 822) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 823) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 824) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 825) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 826) | MNT_AUTOMOUNTED = 0x400000 constant MNT_CMDFLAGS (line 827) | MNT_CMDFLAGS = 0xf0000 constant MNT_CPROTECT (line 828) | MNT_CPROTECT = 0x80 constant MNT_DEFWRITE (line 829) | MNT_DEFWRITE = 0x2000000 constant MNT_DONTBROWSE (line 830) | MNT_DONTBROWSE = 0x100000 constant MNT_DOVOLFS (line 831) | MNT_DOVOLFS = 0x8000 constant MNT_DWAIT (line 832) | MNT_DWAIT = 0x4 constant MNT_EXPORTED (line 833) | MNT_EXPORTED = 0x100 constant MNT_FORCE (line 834) | MNT_FORCE = 0x80000 constant MNT_IGNORE_OWNERSHIP (line 835) | MNT_IGNORE_OWNERSHIP = 0x200000 constant MNT_JOURNALED (line 836) | MNT_JOURNALED = 0x800000 constant MNT_LOCAL (line 837) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 838) | MNT_MULTILABEL = 0x4000000 constant MNT_NOATIME (line 839) | MNT_NOATIME = 0x10000000 constant MNT_NOBLOCK (line 840) | MNT_NOBLOCK = 0x20000 constant MNT_NODEV (line 841) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 842) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 843) | MNT_NOSUID = 0x8 constant MNT_NOUSERXATTR (line 844) | MNT_NOUSERXATTR = 0x1000000 constant MNT_NOWAIT (line 845) | MNT_NOWAIT = 0x2 constant MNT_QUARANTINE (line 846) | MNT_QUARANTINE = 0x400 constant MNT_QUOTA (line 847) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 848) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 849) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 850) | MNT_ROOTFS = 0x4000 constant MNT_SYNCHRONOUS (line 851) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 852) | MNT_UNION = 0x20 constant MNT_UNKNOWNPERMISSIONS (line 853) | MNT_UNKNOWNPERMISSIONS = 0x200000 constant MNT_UPDATE (line 854) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 855) | MNT_VISFLAGMASK = 0x17f0f5ff constant MNT_WAIT (line 856) | MNT_WAIT = 0x1 constant MSG_CTRUNC (line 857) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 858) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 859) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 860) | MSG_EOF = 0x100 constant MSG_EOR (line 861) | MSG_EOR = 0x8 constant MSG_FLUSH (line 862) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 863) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 864) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 865) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 866) | MSG_OOB = 0x1 constant MSG_PEEK (line 867) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 868) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 869) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 870) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 871) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 872) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 873) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 874) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 875) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 876) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 877) | MS_SYNC = 0x10 constant NAME_MAX (line 878) | NAME_MAX = 0xff constant NET_RT_DUMP (line 879) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 880) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 881) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 882) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 883) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 884) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 885) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 886) | NET_RT_TRASH = 0x5 constant NL0 (line 887) | NL0 = 0x0 constant NL1 (line 888) | NL1 = 0x100 constant NL2 (line 889) | NL2 = 0x200 constant NL3 (line 890) | NL3 = 0x300 constant NLDLY (line 891) | NLDLY = 0x300 constant NOFLSH (line 892) | NOFLSH = 0x80000000 constant NOKERNINFO (line 893) | NOKERNINFO = 0x2000000 constant NOTE_ABSOLUTE (line 894) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 895) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 896) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 897) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 898) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 899) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 900) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 901) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 902) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 903) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 904) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 905) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 906) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 907) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 908) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 909) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 910) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 911) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 912) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 913) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 914) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 915) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 916) | NOTE_FORK = 0x40000000 constant NOTE_FUNLOCK (line 917) | NOTE_FUNLOCK = 0x100 constant NOTE_LEEWAY (line 918) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 919) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 920) | NOTE_LOWAT = 0x1 constant NOTE_MACH_CONTINUOUS_TIME (line 921) | NOTE_MACH_CONTINUOUS_TIME = 0x80 constant NOTE_NONE (line 922) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 923) | NOTE_NSECONDS = 0x4 constant NOTE_OOB (line 924) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 925) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 926) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 927) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 930) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 931) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 932) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 933) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 934) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 935) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 936) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 937) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 938) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 939) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 940) | NOTE_WRITE = 0x2 constant OCRNL (line 941) | OCRNL = 0x10 constant OFDEL (line 942) | OFDEL = 0x20000 constant OFILL (line 943) | OFILL = 0x80 constant ONLCR (line 944) | ONLCR = 0x2 constant ONLRET (line 945) | ONLRET = 0x40 constant ONOCR (line 946) | ONOCR = 0x20 constant ONOEOT (line 947) | ONOEOT = 0x8 constant OPOST (line 948) | OPOST = 0x1 constant OXTABS (line 949) | OXTABS = 0x4 constant O_ACCMODE (line 950) | O_ACCMODE = 0x3 constant O_ALERT (line 951) | O_ALERT = 0x20000000 constant O_APPEND (line 952) | O_APPEND = 0x8 constant O_ASYNC (line 953) | O_ASYNC = 0x40 constant O_CLOEXEC (line 954) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 955) | O_CREAT = 0x200 constant O_DIRECTORY (line 956) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 957) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DP_GETRAWUNENCRYPTED (line 958) | O_DP_GETRAWUNENCRYPTED = 0x2 constant O_DSYNC (line 959) | O_DSYNC = 0x400000 constant O_EVTONLY (line 960) | O_EVTONLY = 0x8000 constant O_EXCL (line 961) | O_EXCL = 0x800 constant O_EXLOCK (line 962) | O_EXLOCK = 0x20 constant O_FSYNC (line 963) | O_FSYNC = 0x80 constant O_NDELAY (line 964) | O_NDELAY = 0x4 constant O_NOCTTY (line 965) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 966) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 967) | O_NONBLOCK = 0x4 constant O_POPUP (line 968) | O_POPUP = 0x80000000 constant O_RDONLY (line 969) | O_RDONLY = 0x0 constant O_RDWR (line 970) | O_RDWR = 0x2 constant O_SHLOCK (line 971) | O_SHLOCK = 0x10 constant O_SYMLINK (line 972) | O_SYMLINK = 0x200000 constant O_SYNC (line 973) | O_SYNC = 0x80 constant O_TRUNC (line 974) | O_TRUNC = 0x400 constant O_WRONLY (line 975) | O_WRONLY = 0x1 constant PARENB (line 976) | PARENB = 0x1000 constant PARMRK (line 977) | PARMRK = 0x8 constant PARODD (line 978) | PARODD = 0x2000 constant PENDIN (line 979) | PENDIN = 0x20000000 constant PRIO_PGRP (line 980) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 981) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 982) | PRIO_USER = 0x2 constant PROT_EXEC (line 983) | PROT_EXEC = 0x4 constant PROT_NONE (line 984) | PROT_NONE = 0x0 constant PROT_READ (line 985) | PROT_READ = 0x1 constant PROT_WRITE (line 986) | PROT_WRITE = 0x2 constant PT_ATTACH (line 987) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 988) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 989) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 990) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 991) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 992) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 993) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 994) | PT_KILL = 0x8 constant PT_READ_D (line 995) | PT_READ_D = 0x2 constant PT_READ_I (line 996) | PT_READ_I = 0x1 constant PT_READ_U (line 997) | PT_READ_U = 0x3 constant PT_SIGEXC (line 998) | PT_SIGEXC = 0xc constant PT_STEP (line 999) | PT_STEP = 0x9 constant PT_THUPDATE (line 1000) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 1001) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 1002) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 1003) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 1004) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 1005) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 1006) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1007) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 1008) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 1009) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1010) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1011) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1012) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1013) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1014) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1015) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1016) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1017) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1018) | RTAX_BRD = 0x7 constant RTAX_DST (line 1019) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1020) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1021) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1022) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1023) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1024) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1025) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1026) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1027) | RTA_BRD = 0x80 constant RTA_DST (line 1028) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1029) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1030) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1031) | RTA_IFA = 0x20 constant RTA_IFP (line 1032) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1033) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1034) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1035) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1036) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 1037) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 1038) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 1039) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1040) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1041) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1042) | RTF_HOST = 0x4 constant RTF_IFREF (line 1043) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 1044) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 1045) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1046) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1047) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1048) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 1049) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 1050) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1051) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1052) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1053) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1054) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 1055) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 1056) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 1057) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 1058) | RTF_STATIC = 0x800 constant RTF_UP (line 1059) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1060) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1061) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1062) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1063) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1064) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1065) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1066) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1067) | RTM_GET = 0x4 constant RTM_GET2 (line 1068) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 1069) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 1070) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 1071) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1072) | RTM_LOSING = 0x5 constant RTM_MISS (line 1073) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1074) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1075) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 1076) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 1077) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1078) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1079) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1080) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1081) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1082) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1083) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1084) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1085) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1086) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1087) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1088) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1089) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1090) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1091) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1092) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1093) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1094) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1095) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1096) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1097) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1098) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1099) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1100) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1101) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1102) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1103) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1104) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1105) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1106) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1107) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1108) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1109) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1110) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1111) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1112) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1113) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1115) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1116) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1117) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1118) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1119) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1120) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1121) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1123) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1124) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1125) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1126) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1127) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1128) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1129) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1130) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1131) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1132) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1133) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1134) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1135) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1136) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1137) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1138) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1139) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1140) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1141) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1142) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1143) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1144) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1145) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1146) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1147) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1148) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1149) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1150) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1151) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1152) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1153) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1154) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1155) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1156) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1157) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1158) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1159) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1160) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1161) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1162) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1163) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1164) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1165) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1166) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1167) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1168) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1169) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1170) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1171) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1172) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1173) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1174) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1175) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1176) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1177) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1178) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1179) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1180) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1181) | SO_LABEL = 0x1010 constant SO_LINGER (line 1182) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1183) | SO_LINGER_SEC = 0x1080 constant SO_NETSVC_MARKING_LEVEL (line 1184) | SO_NETSVC_MARKING_LEVEL = 0x1119 constant SO_NET_SERVICE_TYPE (line 1185) | SO_NET_SERVICE_TYPE = 0x1116 constant SO_NKE (line 1186) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1187) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1188) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1189) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1190) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1191) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1192) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1193) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1194) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1195) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1196) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1197) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1198) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1199) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1200) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1201) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1202) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1203) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1204) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1205) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1206) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1207) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1208) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1209) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1210) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1211) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1212) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1213) | S_IEXEC = 0x40 constant S_IFBLK (line 1214) | S_IFBLK = 0x6000 constant S_IFCHR (line 1215) | S_IFCHR = 0x2000 constant S_IFDIR (line 1216) | S_IFDIR = 0x4000 constant S_IFIFO (line 1217) | S_IFIFO = 0x1000 constant S_IFLNK (line 1218) | S_IFLNK = 0xa000 constant S_IFMT (line 1219) | S_IFMT = 0xf000 constant S_IFREG (line 1220) | S_IFREG = 0x8000 constant S_IFSOCK (line 1221) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1222) | S_IFWHT = 0xe000 constant S_IREAD (line 1223) | S_IREAD = 0x100 constant S_IRGRP (line 1224) | S_IRGRP = 0x20 constant S_IROTH (line 1225) | S_IROTH = 0x4 constant S_IRUSR (line 1226) | S_IRUSR = 0x100 constant S_IRWXG (line 1227) | S_IRWXG = 0x38 constant S_IRWXO (line 1228) | S_IRWXO = 0x7 constant S_IRWXU (line 1229) | S_IRWXU = 0x1c0 constant S_ISGID (line 1230) | S_ISGID = 0x400 constant S_ISTXT (line 1231) | S_ISTXT = 0x200 constant S_ISUID (line 1232) | S_ISUID = 0x800 constant S_ISVTX (line 1233) | S_ISVTX = 0x200 constant S_IWGRP (line 1234) | S_IWGRP = 0x10 constant S_IWOTH (line 1235) | S_IWOTH = 0x2 constant S_IWRITE (line 1236) | S_IWRITE = 0x80 constant S_IWUSR (line 1237) | S_IWUSR = 0x80 constant S_IXGRP (line 1238) | S_IXGRP = 0x8 constant S_IXOTH (line 1239) | S_IXOTH = 0x1 constant S_IXUSR (line 1240) | S_IXUSR = 0x40 constant TAB0 (line 1241) | TAB0 = 0x0 constant TAB1 (line 1242) | TAB1 = 0x400 constant TAB2 (line 1243) | TAB2 = 0x800 constant TAB3 (line 1244) | TAB3 = 0x4 constant TABDLY (line 1245) | TABDLY = 0xc04 constant TCIFLUSH (line 1246) | TCIFLUSH = 0x1 constant TCIOFF (line 1247) | TCIOFF = 0x3 constant TCIOFLUSH (line 1248) | TCIOFLUSH = 0x3 constant TCION (line 1249) | TCION = 0x4 constant TCOFLUSH (line 1250) | TCOFLUSH = 0x2 constant TCOOFF (line 1251) | TCOOFF = 0x1 constant TCOON (line 1252) | TCOON = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1253) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_CONNECTION_INFO (line 1254) | TCP_CONNECTION_INFO = 0x106 constant TCP_ENABLE_ECN (line 1255) | TCP_ENABLE_ECN = 0x104 constant TCP_FASTOPEN (line 1256) | TCP_FASTOPEN = 0x105 constant TCP_KEEPALIVE (line 1257) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1258) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1259) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1260) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1261) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1262) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1263) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1264) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1265) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1266) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1267) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1268) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1269) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1270) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1271) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1272) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1273) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1274) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1275) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1276) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1277) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1278) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1279) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1280) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1281) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1282) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1283) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1284) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1285) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1286) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1287) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1288) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1289) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1290) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1291) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1292) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1293) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1294) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1295) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1296) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1297) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1298) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1299) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1300) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1301) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1302) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1303) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1304) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1305) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1306) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1307) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1308) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1309) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1310) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1311) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1312) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1313) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1314) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1315) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1316) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1317) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1318) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1319) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1320) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1321) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1322) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1323) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1324) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1325) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1326) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1327) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1328) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1329) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1330) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1331) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1332) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1333) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1334) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1335) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1336) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1337) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1338) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1339) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1340) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1341) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1342) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1343) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1344) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1345) | TOSTOP = 0x400000 constant VDISCARD (line 1346) | VDISCARD = 0xf constant VDSUSP (line 1347) | VDSUSP = 0xb constant VEOF (line 1348) | VEOF = 0x0 constant VEOL (line 1349) | VEOL = 0x1 constant VEOL2 (line 1350) | VEOL2 = 0x2 constant VERASE (line 1351) | VERASE = 0x3 constant VINTR (line 1352) | VINTR = 0x8 constant VKILL (line 1353) | VKILL = 0x5 constant VLNEXT (line 1354) | VLNEXT = 0xe constant VMIN (line 1355) | VMIN = 0x10 constant VM_LOADAVG (line 1356) | VM_LOADAVG = 0x2 constant VM_MACHFACTOR (line 1357) | VM_MACHFACTOR = 0x4 constant VM_MAXID (line 1358) | VM_MAXID = 0x6 constant VM_METER (line 1359) | VM_METER = 0x1 constant VM_SWAPUSAGE (line 1360) | VM_SWAPUSAGE = 0x5 constant VQUIT (line 1361) | VQUIT = 0x9 constant VREPRINT (line 1362) | VREPRINT = 0x6 constant VSTART (line 1363) | VSTART = 0xc constant VSTATUS (line 1364) | VSTATUS = 0x12 constant VSTOP (line 1365) | VSTOP = 0xd constant VSUSP (line 1366) | VSUSP = 0xa constant VT0 (line 1367) | VT0 = 0x0 constant VT1 (line 1368) | VT1 = 0x10000 constant VTDLY (line 1369) | VTDLY = 0x10000 constant VTIME (line 1370) | VTIME = 0x11 constant VWERASE (line 1371) | VWERASE = 0x4 constant WCONTINUED (line 1372) | WCONTINUED = 0x10 constant WCOREFLAG (line 1373) | WCOREFLAG = 0x80 constant WEXITED (line 1374) | WEXITED = 0x4 constant WNOHANG (line 1375) | WNOHANG = 0x1 constant WNOWAIT (line 1376) | WNOWAIT = 0x20 constant WORDSIZE (line 1377) | WORDSIZE = 0x40 constant WSTOPPED (line 1378) | WSTOPPED = 0x8 constant WUNTRACED (line 1379) | WUNTRACED = 0x2 constant E2BIG (line 1384) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1385) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1386) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1387) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1388) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1389) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1390) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1391) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1392) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1393) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1394) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1395) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1396) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1397) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1398) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1399) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1400) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1401) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1402) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1403) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1404) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1405) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1406) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1407) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1408) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1409) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1410) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1411) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1412) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1413) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1414) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1415) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1416) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1417) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1418) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1419) | EINVAL = syscall.Errno(0x16) constant EIO (line 1420) | EIO = syscall.Errno(0x5) constant EISCONN (line 1421) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1422) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1423) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1424) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1425) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1426) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1427) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1428) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1429) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1430) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1431) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1432) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1433) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1434) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1435) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1436) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1437) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1438) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1439) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1440) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1441) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1442) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1443) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1444) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1445) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1446) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1447) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1448) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1449) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1450) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1451) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1452) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1453) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1454) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1455) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1456) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1457) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1458) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1459) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1460) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1461) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1462) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1463) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1464) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1465) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1466) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1467) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1468) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1469) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1470) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1471) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1472) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1473) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1474) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1475) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1476) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1477) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1478) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1479) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1480) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1481) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1482) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1483) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1484) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1485) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1486) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1487) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1488) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1489) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1490) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1491) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1496) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1497) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1498) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1499) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1500) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1501) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1502) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1503) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1504) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1505) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1506) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1507) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1508) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1509) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1510) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1511) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1512) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1513) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1514) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1515) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1516) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1517) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1518) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1519) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1520) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1521) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1522) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1523) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1524) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1525) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1526) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1527) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ATM (line 15) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x21 constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x23 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x1c constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x22 constant AF_NATM (line 39) | AF_NATM = 0x1d constant AF_NETBIOS (line 40) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 41) | AF_NETGRAPH = 0x20 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_UNIX (line 47) | AF_UNIX = 0x1 constant AF_UNSPEC (line 48) | AF_UNSPEC = 0x0 constant ALTWERASE (line 49) | ALTWERASE = 0x200 constant B0 (line 50) | B0 = 0x0 constant B110 (line 51) | B110 = 0x6e constant B115200 (line 52) | B115200 = 0x1c200 constant B1200 (line 53) | B1200 = 0x4b0 constant B134 (line 54) | B134 = 0x86 constant B14400 (line 55) | B14400 = 0x3840 constant B150 (line 56) | B150 = 0x96 constant B1800 (line 57) | B1800 = 0x708 constant B19200 (line 58) | B19200 = 0x4b00 constant B200 (line 59) | B200 = 0xc8 constant B230400 (line 60) | B230400 = 0x38400 constant B2400 (line 61) | B2400 = 0x960 constant B28800 (line 62) | B28800 = 0x7080 constant B300 (line 63) | B300 = 0x12c constant B38400 (line 64) | B38400 = 0x9600 constant B4800 (line 65) | B4800 = 0x12c0 constant B50 (line 66) | B50 = 0x32 constant B57600 (line 67) | B57600 = 0xe100 constant B600 (line 68) | B600 = 0x258 constant B7200 (line 69) | B7200 = 0x1c20 constant B75 (line 70) | B75 = 0x4b constant B76800 (line 71) | B76800 = 0x12c00 constant B9600 (line 72) | B9600 = 0x2580 constant BIOCFLUSH (line 73) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 74) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 75) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 76) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETIF (line 77) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 78) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 79) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 80) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 81) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 82) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 83) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 84) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 85) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 86) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 87) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 88) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 89) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 90) | BIOCSETWF = 0x8010427b constant BIOCSHDRCMPLT (line 91) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 92) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 93) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 94) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 95) | BIOCVERSION = 0x40044271 constant BPF_A (line 96) | BPF_A = 0x10 constant BPF_ABS (line 97) | BPF_ABS = 0x20 constant BPF_ADD (line 98) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 99) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 100) | BPF_ALU = 0x4 constant BPF_AND (line 101) | BPF_AND = 0x50 constant BPF_B (line 102) | BPF_B = 0x10 constant BPF_DEFAULTBUFSIZE (line 103) | BPF_DEFAULTBUFSIZE = 0x1000 constant BPF_DIV (line 104) | BPF_DIV = 0x30 constant BPF_H (line 105) | BPF_H = 0x8 constant BPF_IMM (line 106) | BPF_IMM = 0x0 constant BPF_IND (line 107) | BPF_IND = 0x40 constant BPF_JA (line 108) | BPF_JA = 0x0 constant BPF_JEQ (line 109) | BPF_JEQ = 0x10 constant BPF_JGE (line 110) | BPF_JGE = 0x30 constant BPF_JGT (line 111) | BPF_JGT = 0x20 constant BPF_JMP (line 112) | BPF_JMP = 0x5 constant BPF_JSET (line 113) | BPF_JSET = 0x40 constant BPF_K (line 114) | BPF_K = 0x0 constant BPF_LD (line 115) | BPF_LD = 0x0 constant BPF_LDX (line 116) | BPF_LDX = 0x1 constant BPF_LEN (line 117) | BPF_LEN = 0x80 constant BPF_LSH (line 118) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 119) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 120) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 121) | BPF_MAXINSNS = 0x200 constant BPF_MAX_CLONES (line 122) | BPF_MAX_CLONES = 0x80 constant BPF_MEM (line 123) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 124) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 125) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 126) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 127) | BPF_MISC = 0x7 constant BPF_MSH (line 128) | BPF_MSH = 0xa0 constant BPF_MUL (line 129) | BPF_MUL = 0x20 constant BPF_NEG (line 130) | BPF_NEG = 0x80 constant BPF_OR (line 131) | BPF_OR = 0x40 constant BPF_RELEASE (line 132) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 133) | BPF_RET = 0x6 constant BPF_RSH (line 134) | BPF_RSH = 0x70 constant BPF_ST (line 135) | BPF_ST = 0x2 constant BPF_STX (line 136) | BPF_STX = 0x3 constant BPF_SUB (line 137) | BPF_SUB = 0x10 constant BPF_TAX (line 138) | BPF_TAX = 0x0 constant BPF_TXA (line 139) | BPF_TXA = 0x80 constant BPF_W (line 140) | BPF_W = 0x0 constant BPF_X (line 141) | BPF_X = 0x8 constant BRKINT (line 142) | BRKINT = 0x2 constant CFLUSH (line 143) | CFLUSH = 0xf constant CLOCAL (line 144) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 145) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 146) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 147) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 148) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 149) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 150) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 151) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 152) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 153) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 154) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 155) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 156) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 157) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 158) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 159) | CREAD = 0x800 constant CRTSCTS (line 160) | CRTSCTS = 0x30000 constant CS5 (line 161) | CS5 = 0x0 constant CS6 (line 162) | CS6 = 0x100 constant CS7 (line 163) | CS7 = 0x200 constant CS8 (line 164) | CS8 = 0x300 constant CSIZE (line 165) | CSIZE = 0x300 constant CSTART (line 166) | CSTART = 0x11 constant CSTATUS (line 167) | CSTATUS = 0x14 constant CSTOP (line 168) | CSTOP = 0x13 constant CSTOPB (line 169) | CSTOPB = 0x400 constant CSUSP (line 170) | CSUSP = 0x1a constant CTL_MAXNAME (line 171) | CTL_MAXNAME = 0xc constant CTL_NET (line 172) | CTL_NET = 0x4 constant DLT_A429 (line 173) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 174) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 175) | DLT_AIRONET_HEADER = 0x78 constant DLT_APPLE_IP_OVER_IEEE1394 (line 176) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 177) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 178) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 179) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 180) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 181) | DLT_AURORA = 0x7e constant DLT_AX25 (line 182) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 183) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 184) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 185) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 186) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 187) | DLT_CAN20B = 0xbe constant DLT_CHAOS (line 188) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 189) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 190) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 191) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 192) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DOCSIS (line 193) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 194) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 195) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 196) | DLT_EN3MB = 0x2 constant DLT_ENC (line 197) | DLT_ENC = 0x6d constant DLT_ERF (line 198) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 199) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 200) | DLT_ERF_POS = 0xb0 constant DLT_FDDI (line 201) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 202) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 203) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 204) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 205) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 206) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 207) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 208) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 209) | DLT_GPRS_LLC = 0xa9 constant DLT_HHDLC (line 210) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 211) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 212) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 213) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 214) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 215) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 216) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 217) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 218) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 219) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 220) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 221) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 222) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 223) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 224) | DLT_IPMB_LINUX = 0xd1 constant DLT_IP_OVER_FC (line 225) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 226) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 227) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 228) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 229) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 230) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 231) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 232) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 233) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 234) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 235) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 236) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 237) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 238) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 239) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 240) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 241) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 242) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 243) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 244) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 245) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 246) | DLT_LAPD = 0xcb constant DLT_LIN (line 247) | DLT_LIN = 0xd4 constant DLT_LINUX_IRDA (line 248) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 249) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 250) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 251) | DLT_LOOP = 0x6c constant DLT_LTALK (line 252) | DLT_LTALK = 0x72 constant DLT_MFR (line 253) | DLT_MFR = 0xb6 constant DLT_MOST (line 254) | DLT_MOST = 0xd3 constant DLT_MTP2 (line 255) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 256) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 257) | DLT_MTP3 = 0x8d constant DLT_NULL (line 258) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 259) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 260) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 261) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 262) | DLT_PPI = 0xc0 constant DLT_PPP (line 263) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 264) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 265) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 266) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 267) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 268) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 269) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 270) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 271) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 272) | DLT_RAW = 0xc constant DLT_REDBACK_SMARTEDGE (line 273) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 274) | DLT_RIO = 0x7c constant DLT_SCCP (line 275) | DLT_SCCP = 0x8e constant DLT_SITA (line 276) | DLT_SITA = 0xc4 constant DLT_SLIP (line 277) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 278) | DLT_SLIP_BSDOS = 0xf constant DLT_SUNATM (line 279) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 280) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 281) | DLT_TZSP = 0x80 constant DLT_USB (line 282) | DLT_USB = 0xba constant DLT_USB_LINUX (line 283) | DLT_USB_LINUX = 0xbd constant DLT_X2E_SERIAL (line 284) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 285) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 286) | DT_BLK = 0x6 constant DT_CHR (line 287) | DT_CHR = 0x2 constant DT_DBF (line 288) | DT_DBF = 0xf constant DT_DIR (line 289) | DT_DIR = 0x4 constant DT_FIFO (line 290) | DT_FIFO = 0x1 constant DT_LNK (line 291) | DT_LNK = 0xa constant DT_REG (line 292) | DT_REG = 0x8 constant DT_SOCK (line 293) | DT_SOCK = 0xc constant DT_UNKNOWN (line 294) | DT_UNKNOWN = 0x0 constant DT_WHT (line 295) | DT_WHT = 0xe constant ECHO (line 296) | ECHO = 0x8 constant ECHOCTL (line 297) | ECHOCTL = 0x40 constant ECHOE (line 298) | ECHOE = 0x2 constant ECHOK (line 299) | ECHOK = 0x4 constant ECHOKE (line 300) | ECHOKE = 0x1 constant ECHONL (line 301) | ECHONL = 0x10 constant ECHOPRT (line 302) | ECHOPRT = 0x20 constant EVFILT_AIO (line 303) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 304) | EVFILT_EXCEPT = -0x8 constant EVFILT_FS (line 305) | EVFILT_FS = -0xa constant EVFILT_MARKER (line 306) | EVFILT_MARKER = 0xf constant EVFILT_PROC (line 307) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 308) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 309) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 310) | EVFILT_SYSCOUNT = 0xa constant EVFILT_TIMER (line 311) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 312) | EVFILT_USER = -0x9 constant EVFILT_VNODE (line 313) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 314) | EVFILT_WRITE = -0x2 constant EV_ADD (line 315) | EV_ADD = 0x1 constant EV_CLEAR (line 316) | EV_CLEAR = 0x20 constant EV_DELETE (line 317) | EV_DELETE = 0x2 constant EV_DISABLE (line 318) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 319) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 320) | EV_ENABLE = 0x4 constant EV_EOF (line 321) | EV_EOF = 0x8000 constant EV_ERROR (line 322) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 323) | EV_FLAG1 = 0x2000 constant EV_NODATA (line 324) | EV_NODATA = 0x1000 constant EV_ONESHOT (line 325) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 326) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 327) | EV_SYSFLAGS = 0xf000 constant EXTA (line 328) | EXTA = 0x4b00 constant EXTB (line 329) | EXTB = 0x9600 constant EXTEXIT_LWP (line 330) | EXTEXIT_LWP = 0x10000 constant EXTEXIT_PROC (line 331) | EXTEXIT_PROC = 0x0 constant EXTEXIT_SETINT (line 332) | EXTEXIT_SETINT = 0x1 constant EXTEXIT_SIMPLE (line 333) | EXTEXIT_SIMPLE = 0x0 constant EXTPROC (line 334) | EXTPROC = 0x800 constant FD_CLOEXEC (line 335) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 336) | FD_SETSIZE = 0x400 constant FLUSHO (line 337) | FLUSHO = 0x800000 constant F_DUP2FD (line 338) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 339) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 340) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 341) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 342) | F_GETFD = 0x1 constant F_GETFL (line 343) | F_GETFL = 0x3 constant F_GETLK (line 344) | F_GETLK = 0x7 constant F_GETOWN (line 345) | F_GETOWN = 0x5 constant F_OK (line 346) | F_OK = 0x0 constant F_RDLCK (line 347) | F_RDLCK = 0x1 constant F_SETFD (line 348) | F_SETFD = 0x2 constant F_SETFL (line 349) | F_SETFL = 0x4 constant F_SETLK (line 350) | F_SETLK = 0x8 constant F_SETLKW (line 351) | F_SETLKW = 0x9 constant F_SETOWN (line 352) | F_SETOWN = 0x6 constant F_UNLCK (line 353) | F_UNLCK = 0x2 constant F_WRLCK (line 354) | F_WRLCK = 0x3 constant HUPCL (line 355) | HUPCL = 0x4000 constant ICANON (line 356) | ICANON = 0x100 constant ICMP6_FILTER (line 357) | ICMP6_FILTER = 0x12 constant ICRNL (line 358) | ICRNL = 0x100 constant IEXTEN (line 359) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 360) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 361) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 362) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 363) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 364) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 365) | IFF_CANTCHANGE = 0x118e72 constant IFF_DEBUG (line 366) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 367) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 368) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 369) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 370) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 371) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 372) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 373) | IFF_NOARP = 0x80 constant IFF_NPOLLING (line 374) | IFF_NPOLLING = 0x100000 constant IFF_OACTIVE (line 375) | IFF_OACTIVE = 0x400 constant IFF_OACTIVE_COMPAT (line 376) | IFF_OACTIVE_COMPAT = 0x400 constant IFF_POINTOPOINT (line 377) | IFF_POINTOPOINT = 0x10 constant IFF_POLLING (line 378) | IFF_POLLING = 0x10000 constant IFF_POLLING_COMPAT (line 379) | IFF_POLLING_COMPAT = 0x10000 constant IFF_PPROMISC (line 380) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 381) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 382) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 383) | IFF_SIMPLEX = 0x800 constant IFF_SMART (line 384) | IFF_SMART = 0x20 constant IFF_STATICARP (line 385) | IFF_STATICARP = 0x80000 constant IFF_UP (line 386) | IFF_UP = 0x1 constant IFNAMSIZ (line 387) | IFNAMSIZ = 0x10 constant IFT_1822 (line 388) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 389) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 390) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 391) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 392) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 393) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 394) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 395) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 396) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 397) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 398) | IFT_ASYNC = 0x54 constant IFT_ATM (line 399) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 400) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 401) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 402) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 403) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 404) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 405) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 406) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 407) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 408) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 409) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 410) | IFT_BSC = 0x53 constant IFT_CARP (line 411) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 412) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 413) | IFT_CEPT = 0x13 constant IFT_CES (line 414) | IFT_CES = 0x85 constant IFT_CHANNEL (line 415) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 416) | IFT_CNR = 0x55 constant IFT_COFFEE (line 417) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 418) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 419) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 420) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 421) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 422) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 423) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 424) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 425) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 426) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 427) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 428) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 429) | IFT_DS3 = 0x1e constant IFT_DTM (line 430) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 431) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 432) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 433) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 434) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 435) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 436) | IFT_ENC = 0xf4 constant IFT_EON (line 437) | IFT_EON = 0x19 constant IFT_EPLRS (line 438) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 439) | IFT_ESCON = 0x49 constant IFT_ETHER (line 440) | IFT_ETHER = 0x6 constant IFT_FAITH (line 441) | IFT_FAITH = 0xf2 constant IFT_FAST (line 442) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 443) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 444) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 445) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 446) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 447) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 448) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 449) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 450) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 451) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 452) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 453) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 454) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 455) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 456) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 457) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 458) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 459) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 460) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 461) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 462) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 463) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 464) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 465) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 466) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 467) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 468) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 469) | IFT_HSSI = 0x2e constant IFT_HY (line 470) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 471) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 472) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 473) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 474) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 475) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 476) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 477) | IFT_IFGSN = 0x91 constant IFT_IMT (line 478) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 479) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 480) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 481) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 482) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 483) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 484) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 485) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 486) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 487) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 488) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 489) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 490) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 491) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 492) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 493) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 494) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 495) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 496) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 497) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 498) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 499) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 500) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 501) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 502) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 503) | IFT_LAPB = 0x10 constant IFT_LAPD (line 504) | IFT_LAPD = 0x4d constant IFT_LAPF (line 505) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 506) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 507) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 508) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 509) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 510) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 511) | IFT_MODEM = 0x30 constant IFT_MPC (line 512) | IFT_MPC = 0x71 constant IFT_MPLS (line 513) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 514) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 515) | IFT_MSDSL = 0x8f constant IFT_MVL (line 516) | IFT_MVL = 0xbf constant IFT_MYRINET (line 517) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 518) | IFT_NFAS = 0xaf constant IFT_NSIP (line 519) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 520) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 521) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 522) | IFT_OTHER = 0x1 constant IFT_P10 (line 523) | IFT_P10 = 0xc constant IFT_P80 (line 524) | IFT_P80 = 0xd constant IFT_PARA (line 525) | IFT_PARA = 0x22 constant IFT_PFLOG (line 526) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 527) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 528) | IFT_PLC = 0xae constant IFT_POS (line 529) | IFT_POS = 0xab constant IFT_PPP (line 530) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 531) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 532) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 533) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 534) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 535) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 536) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 537) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 538) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 539) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 540) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 541) | IFT_PVC = 0xf1 constant IFT_QLLC (line 542) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 543) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 544) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 545) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 546) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 547) | IFT_RS232 = 0x21 constant IFT_RSRB (line 548) | IFT_RSRB = 0x4f constant IFT_SDLC (line 549) | IFT_SDLC = 0x11 constant IFT_SDSL (line 550) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 551) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 552) | IFT_SIP = 0x1f constant IFT_SLIP (line 553) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 554) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 555) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 556) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 557) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 558) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 559) | IFT_SONETVT = 0x33 constant IFT_SRP (line 560) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 561) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 562) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 563) | IFT_STARLAN = 0xb constant IFT_STF (line 564) | IFT_STF = 0xf3 constant IFT_T1 (line 565) | IFT_T1 = 0x12 constant IFT_TDLC (line 566) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 567) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 568) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 569) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 570) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 571) | IFT_ULTRA = 0x1d constant IFT_USB (line 572) | IFT_USB = 0xa0 constant IFT_V11 (line 573) | IFT_V11 = 0x40 constant IFT_V35 (line 574) | IFT_V35 = 0x2d constant IFT_V36 (line 575) | IFT_V36 = 0x41 constant IFT_V37 (line 576) | IFT_V37 = 0x78 constant IFT_VDSL (line 577) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 578) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 579) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 580) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 581) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 582) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 583) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 584) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 585) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 586) | IFT_X213 = 0x5d constant IFT_X25 (line 587) | IFT_X25 = 0x5 constant IFT_X25DDN (line 588) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 589) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 590) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 591) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 592) | IFT_XETHER = 0x1a constant IGNBRK (line 593) | IGNBRK = 0x1 constant IGNCR (line 594) | IGNCR = 0x80 constant IGNPAR (line 595) | IGNPAR = 0x4 constant IMAXBEL (line 596) | IMAXBEL = 0x2000 constant INLCR (line 597) | INLCR = 0x40 constant INPCK (line 598) | INPCK = 0x10 constant IN_CLASSA_HOST (line 599) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 600) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 601) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 602) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 603) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 604) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 605) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 606) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 607) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 608) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 609) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 610) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 611) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 612) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 613) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 614) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 615) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 616) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 617) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 618) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 619) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 620) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 621) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 622) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 623) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 624) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 625) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 626) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 627) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 628) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 629) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 630) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 631) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 632) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 633) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 634) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 635) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 636) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 637) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 638) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 639) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 640) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 641) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 642) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 643) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 644) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 645) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 646) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 647) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 648) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 649) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 650) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 651) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 652) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 653) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 654) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 655) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 656) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 657) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 658) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 659) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 660) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 661) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 662) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 663) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 664) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 665) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 666) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 667) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 668) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 669) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 670) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 671) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 672) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 673) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 674) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 675) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 676) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 677) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MTP (line 678) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 679) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 680) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 681) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 682) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 683) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 684) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 685) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 686) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 687) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 688) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 689) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 690) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 691) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 692) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 693) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 694) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 695) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 696) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 697) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 698) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 699) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 700) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 701) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SDRP (line 702) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 703) | IPPROTO_SEP = 0x21 constant IPPROTO_SKIP (line 704) | IPPROTO_SKIP = 0x39 constant IPPROTO_SRPC (line 705) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 706) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 707) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 708) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 709) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 710) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 711) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 712) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 713) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 714) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 715) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 716) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 717) | IPPROTO_UDP = 0x11 constant IPPROTO_UNKNOWN (line 718) | IPPROTO_UNKNOWN = 0x102 constant IPPROTO_VINES (line 719) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 720) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 721) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 722) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 723) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 724) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 725) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 726) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 727) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDV6ONLY (line 728) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 729) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 730) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 731) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 732) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 733) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 734) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 735) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 736) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 737) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 738) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 739) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 740) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 741) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 742) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 743) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 744) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 745) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 746) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 747) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 748) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 749) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 750) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 751) | IPV6_MAXPACKET = 0xffff constant IPV6_MINHLIM (line 752) | IPV6_MINHLIM = 0x28 constant IPV6_MMTU (line 753) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 754) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 755) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 756) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 757) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 758) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 759) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 760) | IPV6_PKTINFO = 0x2e constant IPV6_PKTOPTIONS (line 761) | IPV6_PKTOPTIONS = 0x34 constant IPV6_PORTRANGE (line 762) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 763) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 764) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 765) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 766) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 767) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 768) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 769) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 770) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 771) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 772) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 773) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 774) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 775) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 776) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 777) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 778) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 779) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 780) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 781) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 782) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 783) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 784) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 785) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 786) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 787) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 788) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 789) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 790) | IP_DROP_MEMBERSHIP = 0xd constant IP_DUMMYNET_CONFIGURE (line 791) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 792) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 793) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 794) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 795) | IP_FAITH = 0x16 constant IP_FW_ADD (line 796) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 797) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 798) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 799) | IP_FW_GET = 0x36 constant IP_FW_RESETLOG (line 800) | IP_FW_RESETLOG = 0x37 constant IP_FW_X (line 801) | IP_FW_X = 0x31 constant IP_FW_ZERO (line 802) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 803) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 804) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 805) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 806) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 807) | IP_MF = 0x2000 constant IP_MINTTL (line 808) | IP_MINTTL = 0x42 constant IP_MSS (line 809) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 810) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 811) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 812) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 813) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 814) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 815) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 816) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 817) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 818) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 819) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 820) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 821) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 822) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 823) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 824) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 825) | IP_RETOPTS = 0x8 constant IP_RF (line 826) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 827) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 828) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 829) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 830) | IP_RSVP_VIF_ON = 0x11 constant IP_TOS (line 831) | IP_TOS = 0x3 constant IP_TTL (line 832) | IP_TTL = 0x4 constant ISIG (line 833) | ISIG = 0x80 constant ISTRIP (line 834) | ISTRIP = 0x20 constant IXANY (line 835) | IXANY = 0x800 constant IXOFF (line 836) | IXOFF = 0x400 constant IXON (line 837) | IXON = 0x200 constant LOCK_EX (line 838) | LOCK_EX = 0x2 constant LOCK_NB (line 839) | LOCK_NB = 0x4 constant LOCK_SH (line 840) | LOCK_SH = 0x1 constant LOCK_UN (line 841) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 842) | MADV_AUTOSYNC = 0x7 constant MADV_CONTROL_END (line 843) | MADV_CONTROL_END = 0xb constant MADV_CONTROL_START (line 844) | MADV_CONTROL_START = 0xa constant MADV_CORE (line 845) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 846) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 847) | MADV_FREE = 0x5 constant MADV_INVAL (line 848) | MADV_INVAL = 0xa constant MADV_NOCORE (line 849) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 850) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 851) | MADV_NOSYNC = 0x6 constant MADV_RANDOM (line 852) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 853) | MADV_SEQUENTIAL = 0x2 constant MADV_SETMAP (line 854) | MADV_SETMAP = 0xb constant MADV_WILLNEED (line 855) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 856) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 857) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 858) | MAP_COPY = 0x2 constant MAP_FILE (line 859) | MAP_FILE = 0x0 constant MAP_FIXED (line 860) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 861) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 862) | MAP_INHERIT = 0x80 constant MAP_NOCORE (line 863) | MAP_NOCORE = 0x20000 constant MAP_NOEXTEND (line 864) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 865) | MAP_NORESERVE = 0x40 constant MAP_NOSYNC (line 866) | MAP_NOSYNC = 0x800 constant MAP_PRIVATE (line 867) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 868) | MAP_RENAME = 0x20 constant MAP_SHARED (line 869) | MAP_SHARED = 0x1 constant MAP_SIZEALIGN (line 870) | MAP_SIZEALIGN = 0x40000 constant MAP_STACK (line 871) | MAP_STACK = 0x400 constant MAP_TRYFIXED (line 872) | MAP_TRYFIXED = 0x10000 constant MAP_VPAGETABLE (line 873) | MAP_VPAGETABLE = 0x2000 constant MCL_CURRENT (line 874) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 875) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 876) | MSG_CMSG_CLOEXEC = 0x1000 constant MSG_CTRUNC (line 877) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 878) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 879) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 880) | MSG_EOF = 0x100 constant MSG_EOR (line 881) | MSG_EOR = 0x8 constant MSG_FBLOCKING (line 882) | MSG_FBLOCKING = 0x10000 constant MSG_FMASK (line 883) | MSG_FMASK = 0xffff0000 constant MSG_FNONBLOCKING (line 884) | MSG_FNONBLOCKING = 0x20000 constant MSG_NOSIGNAL (line 885) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 886) | MSG_OOB = 0x1 constant MSG_PEEK (line 887) | MSG_PEEK = 0x2 constant MSG_SYNC (line 888) | MSG_SYNC = 0x800 constant MSG_TRUNC (line 889) | MSG_TRUNC = 0x10 constant MSG_UNUSED09 (line 890) | MSG_UNUSED09 = 0x200 constant MSG_WAITALL (line 891) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 892) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 893) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 894) | MS_SYNC = 0x0 constant NAME_MAX (line 895) | NAME_MAX = 0xff constant NET_RT_DUMP (line 896) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 897) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 898) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 899) | NET_RT_MAXID = 0x4 constant NOFLSH (line 900) | NOFLSH = 0x80000000 constant NOKERNINFO (line 901) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 902) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 903) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 904) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 905) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 906) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 907) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 908) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 909) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 910) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 911) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 912) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 913) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 914) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 915) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 916) | NOTE_LOWAT = 0x1 constant NOTE_OOB (line 917) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 918) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 919) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 920) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 921) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 922) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 923) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 924) | NOTE_TRIGGER = 0x1000000 constant NOTE_WRITE (line 925) | NOTE_WRITE = 0x2 constant OCRNL (line 926) | OCRNL = 0x10 constant ONLCR (line 927) | ONLCR = 0x2 constant ONLRET (line 928) | ONLRET = 0x40 constant ONOCR (line 929) | ONOCR = 0x20 constant ONOEOT (line 930) | ONOEOT = 0x8 constant OPOST (line 931) | OPOST = 0x1 constant OXTABS (line 932) | OXTABS = 0x4 constant O_ACCMODE (line 933) | O_ACCMODE = 0x3 constant O_APPEND (line 934) | O_APPEND = 0x8 constant O_ASYNC (line 935) | O_ASYNC = 0x40 constant O_CLOEXEC (line 936) | O_CLOEXEC = 0x20000 constant O_CREAT (line 937) | O_CREAT = 0x200 constant O_DIRECT (line 938) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 939) | O_DIRECTORY = 0x8000000 constant O_EXCL (line 940) | O_EXCL = 0x800 constant O_EXLOCK (line 941) | O_EXLOCK = 0x20 constant O_FAPPEND (line 942) | O_FAPPEND = 0x100000 constant O_FASYNCWRITE (line 943) | O_FASYNCWRITE = 0x800000 constant O_FBLOCKING (line 944) | O_FBLOCKING = 0x40000 constant O_FMASK (line 945) | O_FMASK = 0xfc0000 constant O_FNONBLOCKING (line 946) | O_FNONBLOCKING = 0x80000 constant O_FOFFSET (line 947) | O_FOFFSET = 0x200000 constant O_FSYNC (line 948) | O_FSYNC = 0x80 constant O_FSYNCWRITE (line 949) | O_FSYNCWRITE = 0x400000 constant O_NDELAY (line 950) | O_NDELAY = 0x4 constant O_NOCTTY (line 951) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 952) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 953) | O_NONBLOCK = 0x4 constant O_RDONLY (line 954) | O_RDONLY = 0x0 constant O_RDWR (line 955) | O_RDWR = 0x2 constant O_SHLOCK (line 956) | O_SHLOCK = 0x10 constant O_SYNC (line 957) | O_SYNC = 0x80 constant O_TRUNC (line 958) | O_TRUNC = 0x400 constant O_WRONLY (line 959) | O_WRONLY = 0x1 constant PARENB (line 960) | PARENB = 0x1000 constant PARMRK (line 961) | PARMRK = 0x8 constant PARODD (line 962) | PARODD = 0x2000 constant PENDIN (line 963) | PENDIN = 0x20000000 constant PRIO_PGRP (line 964) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 965) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 966) | PRIO_USER = 0x2 constant PROT_EXEC (line 967) | PROT_EXEC = 0x4 constant PROT_NONE (line 968) | PROT_NONE = 0x0 constant PROT_READ (line 969) | PROT_READ = 0x1 constant PROT_WRITE (line 970) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 971) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 972) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 973) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 974) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 975) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 976) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 977) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 978) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 979) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 980) | RTAX_BRD = 0x7 constant RTAX_DST (line 981) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 982) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 983) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 984) | RTAX_IFA = 0x5 constant RTAX_IFP (line 985) | RTAX_IFP = 0x4 constant RTAX_MAX (line 986) | RTAX_MAX = 0xb constant RTAX_MPLS1 (line 987) | RTAX_MPLS1 = 0x8 constant RTAX_MPLS2 (line 988) | RTAX_MPLS2 = 0x9 constant RTAX_MPLS3 (line 989) | RTAX_MPLS3 = 0xa constant RTAX_NETMASK (line 990) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 991) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 992) | RTA_BRD = 0x80 constant RTA_DST (line 993) | RTA_DST = 0x1 constant RTA_GATEWAY (line 994) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 995) | RTA_GENMASK = 0x8 constant RTA_IFA (line 996) | RTA_IFA = 0x20 constant RTA_IFP (line 997) | RTA_IFP = 0x10 constant RTA_MPLS1 (line 998) | RTA_MPLS1 = 0x100 constant RTA_MPLS2 (line 999) | RTA_MPLS2 = 0x200 constant RTA_MPLS3 (line 1000) | RTA_MPLS3 = 0x400 constant RTA_NETMASK (line 1001) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1002) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1003) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1004) | RTF_CLONING = 0x100 constant RTF_DONE (line 1005) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1006) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1007) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1008) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1009) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1010) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1011) | RTF_MODIFIED = 0x20 constant RTF_MPLSOPS (line 1012) | RTF_MPLSOPS = 0x1000000 constant RTF_MULTICAST (line 1013) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1014) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1015) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1016) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1017) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1018) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1019) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1020) | RTF_STATIC = 0x800 constant RTF_UP (line 1021) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1022) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1023) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1024) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1025) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1026) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1027) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1028) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1029) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1030) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1031) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1032) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1033) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1034) | RTM_LOSING = 0x5 constant RTM_MISS (line 1035) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1036) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1037) | RTM_NEWMADDR = 0xf constant RTM_OLDADD (line 1038) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1039) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1040) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1041) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1042) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1043) | RTM_VERSION = 0x6 constant RTV_EXPIRE (line 1044) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1045) | RTV_HOPCOUNT = 0x2 constant RTV_IWCAPSEGS (line 1046) | RTV_IWCAPSEGS = 0x400 constant RTV_IWMAXSEGS (line 1047) | RTV_IWMAXSEGS = 0x200 constant RTV_MSL (line 1048) | RTV_MSL = 0x100 constant RTV_MTU (line 1049) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1050) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1051) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1052) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1053) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1054) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1055) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1056) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1057) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1058) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1059) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1060) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1061) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1062) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1063) | SIOCADDMULTI = 0x80206931 constant SIOCADDRT (line 1064) | SIOCADDRT = 0x8040720a constant SIOCAIFADDR (line 1065) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1066) | SIOCALIFADDR = 0x8118691b constant SIOCATMARK (line 1067) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1068) | SIOCDELMULTI = 0x80206932 constant SIOCDELRT (line 1069) | SIOCDELRT = 0x8040720b constant SIOCDIFADDR (line 1070) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1071) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1072) | SIOCDLIFADDR = 0x8118691d constant SIOCGDRVSPEC (line 1073) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1074) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1075) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1076) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1077) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1078) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1079) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1080) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1081) | SIOCGIFDATA = 0xc0206926 constant SIOCGIFDSTADDR (line 1082) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1083) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1084) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1085) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFINDEX (line 1086) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMEDIA (line 1087) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1088) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1089) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1090) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1091) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1092) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPOLLCPU (line 1093) | SIOCGIFPOLLCPU = 0xc020697e constant SIOCGIFPSRCADDR (line 1094) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1095) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFTSOLEN (line 1096) | SIOCGIFTSOLEN = 0xc0206980 constant SIOCGLIFADDR (line 1097) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 1098) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLOWAT (line 1099) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1100) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1101) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1102) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCIFCREATE (line 1103) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1104) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1105) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1106) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1107) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1108) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1109) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1110) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1111) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDSTADDR (line 1112) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1113) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1114) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1115) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMEDIA (line 1116) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1117) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1118) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1119) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1120) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1121) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1122) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFPOLLCPU (line 1123) | SIOCSIFPOLLCPU = 0x8020697d constant SIOCSIFTSOLEN (line 1124) | SIOCSIFTSOLEN = 0x8020697f constant SIOCSLIFPHYADDR (line 1125) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLOWAT (line 1126) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1127) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 1128) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1129) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1130) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1131) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1132) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1133) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1134) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1135) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1136) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1137) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1138) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1139) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1140) | SO_BROADCAST = 0x20 constant SO_CPUHINT (line 1141) | SO_CPUHINT = 0x1030 constant SO_DEBUG (line 1142) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1143) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1144) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1145) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1146) | SO_LINGER = 0x80 constant SO_NOSIGPIPE (line 1147) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1148) | SO_OOBINLINE = 0x100 constant SO_RCVBUF (line 1149) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1150) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1151) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1152) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1153) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1154) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1155) | SO_SNDLOWAT = 0x1003 constant SO_SNDSPACE (line 1156) | SO_SNDSPACE = 0x100a constant SO_SNDTIMEO (line 1157) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1158) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1159) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1160) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1161) | TCIFLUSH = 0x1 constant TCIOFF (line 1162) | TCIOFF = 0x3 constant TCIOFLUSH (line 1163) | TCIOFLUSH = 0x3 constant TCION (line 1164) | TCION = 0x4 constant TCOFLUSH (line 1165) | TCOFLUSH = 0x2 constant TCOOFF (line 1166) | TCOOFF = 0x1 constant TCOON (line 1167) | TCOON = 0x2 constant TCP_FASTKEEP (line 1168) | TCP_FASTKEEP = 0x80 constant TCP_KEEPCNT (line 1169) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1170) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1171) | TCP_KEEPINIT = 0x20 constant TCP_KEEPINTVL (line 1172) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1173) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1174) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1175) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1176) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1177) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1178) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1179) | TCP_MINMSS = 0x100 constant TCP_MIN_WINSHIFT (line 1180) | TCP_MIN_WINSHIFT = 0x5 constant TCP_MSS (line 1181) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1182) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1183) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1184) | TCP_NOPUSH = 0x4 constant TCP_SIGNATURE_ENABLE (line 1185) | TCP_SIGNATURE_ENABLE = 0x10 constant TCSAFLUSH (line 1186) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1187) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1188) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1189) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1190) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1191) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1192) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1193) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1194) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1195) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1196) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1197) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1198) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1199) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1200) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1201) | TIOCGWINSZ = 0x40087468 constant TIOCISPTMASTER (line 1202) | TIOCISPTMASTER = 0x20007455 constant TIOCMBIC (line 1203) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1204) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1205) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1206) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1207) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1208) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1209) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1210) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1211) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1212) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1213) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1214) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1215) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1216) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1217) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1218) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1219) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1220) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1221) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1222) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1223) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1224) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1225) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1226) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1227) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1228) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1229) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1230) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1231) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1232) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1233) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1234) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1235) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1236) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1237) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1238) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1239) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1240) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1241) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1242) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1243) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1244) | TIOCSPGRP = 0x80047476 constant TIOCSSIZE (line 1245) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1246) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1247) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1248) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1249) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1250) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1251) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1252) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1253) | TOSTOP = 0x400000 constant VCHECKPT (line 1254) | VCHECKPT = 0x13 constant VDISCARD (line 1255) | VDISCARD = 0xf constant VDSUSP (line 1256) | VDSUSP = 0xb constant VEOF (line 1257) | VEOF = 0x0 constant VEOL (line 1258) | VEOL = 0x1 constant VEOL2 (line 1259) | VEOL2 = 0x2 constant VERASE (line 1260) | VERASE = 0x3 constant VERASE2 (line 1261) | VERASE2 = 0x7 constant VINTR (line 1262) | VINTR = 0x8 constant VKILL (line 1263) | VKILL = 0x5 constant VLNEXT (line 1264) | VLNEXT = 0xe constant VMIN (line 1265) | VMIN = 0x10 constant VM_BCACHE_SIZE_MAX (line 1266) | VM_BCACHE_SIZE_MAX = 0x0 constant VM_SWZONE_SIZE_MAX (line 1267) | VM_SWZONE_SIZE_MAX = 0x4000000000 constant VQUIT (line 1268) | VQUIT = 0x9 constant VREPRINT (line 1269) | VREPRINT = 0x6 constant VSTART (line 1270) | VSTART = 0xc constant VSTATUS (line 1271) | VSTATUS = 0x12 constant VSTOP (line 1272) | VSTOP = 0xd constant VSUSP (line 1273) | VSUSP = 0xa constant VTIME (line 1274) | VTIME = 0x11 constant VWERASE (line 1275) | VWERASE = 0x4 constant WCONTINUED (line 1276) | WCONTINUED = 0x4 constant WCOREFLAG (line 1277) | WCOREFLAG = 0x80 constant WLINUXCLONE (line 1278) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1279) | WNOHANG = 0x1 constant WSTOPPED (line 1280) | WSTOPPED = 0x7f constant WUNTRACED (line 1281) | WUNTRACED = 0x2 constant E2BIG (line 1286) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1287) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1288) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1289) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1290) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1291) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1292) | EALREADY = syscall.Errno(0x25) constant EASYNC (line 1293) | EASYNC = syscall.Errno(0x63) constant EAUTH (line 1294) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1295) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1296) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1297) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1298) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1299) | ECANCELED = syscall.Errno(0x55) constant ECHILD (line 1300) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1301) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1302) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1303) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1304) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1305) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1306) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1307) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1308) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1309) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1310) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1311) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1312) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1313) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1314) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1315) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1316) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1317) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1318) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1319) | EINVAL = syscall.Errno(0x16) constant EIO (line 1320) | EIO = syscall.Errno(0x5) constant EISCONN (line 1321) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1322) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1323) | ELAST = syscall.Errno(0x63) constant ELOOP (line 1324) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1325) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1326) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1327) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1328) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1329) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1330) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1331) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1332) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1333) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1334) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1335) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1336) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1337) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1338) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1339) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1340) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1341) | ENOLINK = syscall.Errno(0x5b) constant ENOMEDIUM (line 1342) | ENOMEDIUM = syscall.Errno(0x5d) constant ENOMEM (line 1343) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1344) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1345) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1346) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1347) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1348) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1349) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1350) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1351) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1352) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1353) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1354) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1355) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1356) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1357) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1358) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1359) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1360) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1361) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1362) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1363) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1364) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1365) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1366) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1367) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1368) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1369) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1370) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1371) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1372) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1373) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1374) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1375) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1376) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1377) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1378) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1379) | ETXTBSY = syscall.Errno(0x1a) constant EUNUSED94 (line 1380) | EUNUSED94 = syscall.Errno(0x5e) constant EUNUSED95 (line 1381) | EUNUSED95 = syscall.Errno(0x5f) constant EUNUSED96 (line 1382) | EUNUSED96 = syscall.Errno(0x60) constant EUNUSED97 (line 1383) | EUNUSED97 = syscall.Errno(0x61) constant EUNUSED98 (line 1384) | EUNUSED98 = syscall.Errno(0x62) constant EUSERS (line 1385) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1386) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1387) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1392) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1393) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1394) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1395) | SIGCHLD = syscall.Signal(0x14) constant SIGCKPT (line 1396) | SIGCKPT = syscall.Signal(0x21) constant SIGCKPTEXIT (line 1397) | SIGCKPTEXIT = syscall.Signal(0x22) constant SIGCONT (line 1398) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1399) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1400) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1401) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1402) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1403) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1404) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1405) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1406) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1407) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1408) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1409) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1410) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1411) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1412) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1413) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1414) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1415) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1416) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1417) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1418) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1419) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1420) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1421) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1422) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1423) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1424) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1425) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1426) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x23 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 18) | AF_CCITT = 0xa constant AF_CHAOS (line 19) | AF_CHAOS = 0x5 constant AF_CNT (line 20) | AF_CNT = 0x15 constant AF_COIP (line 21) | AF_COIP = 0x14 constant AF_DATAKIT (line 22) | AF_DATAKIT = 0x9 constant AF_DECnet (line 23) | AF_DECnet = 0xc constant AF_DLI (line 24) | AF_DLI = 0xd constant AF_E164 (line 25) | AF_E164 = 0x1a constant AF_ECMA (line 26) | AF_ECMA = 0x8 constant AF_HYLINK (line 27) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 28) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 32) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 33) | AF_INET_SDP = 0x28 constant AF_IPX (line 34) | AF_IPX = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x1a constant AF_ISO (line 36) | AF_ISO = 0x7 constant AF_LAT (line 37) | AF_LAT = 0xe constant AF_LINK (line 38) | AF_LINK = 0x12 constant AF_LOCAL (line 39) | AF_LOCAL = 0x1 constant AF_MAX (line 40) | AF_MAX = 0x2a constant AF_NATM (line 41) | AF_NATM = 0x1d constant AF_NETBIOS (line 42) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 43) | AF_NETGRAPH = 0x20 constant AF_OSI (line 44) | AF_OSI = 0x7 constant AF_PUP (line 45) | AF_PUP = 0x4 constant AF_ROUTE (line 46) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 47) | AF_SCLUSTER = 0x22 constant AF_SIP (line 48) | AF_SIP = 0x18 constant AF_SLOW (line 49) | AF_SLOW = 0x21 constant AF_SNA (line 50) | AF_SNA = 0xb constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 53) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 54) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 55) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 56) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 57) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 58) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 59) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 60) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 61) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 62) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 63) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 64) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 65) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 66) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 67) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 68) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 69) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 70) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 71) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 72) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 73) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 74) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 75) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 76) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 77) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 78) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 79) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 80) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 81) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 82) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 83) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 84) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 85) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 86) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 87) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 88) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 89) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 90) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 91) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 92) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 93) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 94) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 95) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 96) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 97) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 98) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 99) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 100) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 101) | ALTWERASE = 0x200 constant B0 (line 102) | B0 = 0x0 constant B110 (line 103) | B110 = 0x6e constant B115200 (line 104) | B115200 = 0x1c200 constant B1200 (line 105) | B1200 = 0x4b0 constant B134 (line 106) | B134 = 0x86 constant B14400 (line 107) | B14400 = 0x3840 constant B150 (line 108) | B150 = 0x96 constant B1800 (line 109) | B1800 = 0x708 constant B19200 (line 110) | B19200 = 0x4b00 constant B200 (line 111) | B200 = 0xc8 constant B230400 (line 112) | B230400 = 0x38400 constant B2400 (line 113) | B2400 = 0x960 constant B28800 (line 114) | B28800 = 0x7080 constant B300 (line 115) | B300 = 0x12c constant B38400 (line 116) | B38400 = 0x9600 constant B460800 (line 117) | B460800 = 0x70800 constant B4800 (line 118) | B4800 = 0x12c0 constant B50 (line 119) | B50 = 0x32 constant B57600 (line 120) | B57600 = 0xe100 constant B600 (line 121) | B600 = 0x258 constant B7200 (line 122) | B7200 = 0x1c20 constant B75 (line 123) | B75 = 0x4b constant B76800 (line 124) | B76800 = 0x12c00 constant B921600 (line 125) | B921600 = 0xe1000 constant B9600 (line 126) | B9600 = 0x2580 constant BIOCFEEDBACK (line 127) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 128) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 129) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 130) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 131) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 132) | BIOCGDLTLIST = 0xc0084279 constant BIOCGETBUFMODE (line 133) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 134) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 135) | BIOCGETZMAX = 0x4004427f constant BIOCGHDRCMPLT (line 136) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 137) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 138) | BIOCGRTIMEOUT = 0x4008426e constant BIOCGSEESENT (line 139) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 140) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 141) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 142) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 143) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 144) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 145) | BIOCROTZBUF = 0x400c4280 constant BIOCSBLEN (line 146) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 147) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 148) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 149) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 150) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 151) | BIOCSETFNR = 0x80084282 constant BIOCSETIF (line 152) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 153) | BIOCSETWF = 0x8008427b constant BIOCSETZBUF (line 154) | BIOCSETZBUF = 0x800c4281 constant BIOCSHDRCMPLT (line 155) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 156) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 157) | BIOCSRTIMEOUT = 0x8008426d constant BIOCSSEESENT (line 158) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 159) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 160) | BIOCVERSION = 0x40044271 constant BPF_A (line 161) | BPF_A = 0x10 constant BPF_ABS (line 162) | BPF_ABS = 0x20 constant BPF_ADD (line 163) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 164) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 165) | BPF_ALU = 0x4 constant BPF_AND (line 166) | BPF_AND = 0x50 constant BPF_B (line 167) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 168) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 169) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 170) | BPF_DIV = 0x30 constant BPF_H (line 171) | BPF_H = 0x8 constant BPF_IMM (line 172) | BPF_IMM = 0x0 constant BPF_IND (line 173) | BPF_IND = 0x40 constant BPF_JA (line 174) | BPF_JA = 0x0 constant BPF_JEQ (line 175) | BPF_JEQ = 0x10 constant BPF_JGE (line 176) | BPF_JGE = 0x30 constant BPF_JGT (line 177) | BPF_JGT = 0x20 constant BPF_JMP (line 178) | BPF_JMP = 0x5 constant BPF_JSET (line 179) | BPF_JSET = 0x40 constant BPF_K (line 180) | BPF_K = 0x0 constant BPF_LD (line 181) | BPF_LD = 0x0 constant BPF_LDX (line 182) | BPF_LDX = 0x1 constant BPF_LEN (line 183) | BPF_LEN = 0x80 constant BPF_LSH (line 184) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 185) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 186) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 187) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 188) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 189) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 190) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 191) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 192) | BPF_MISC = 0x7 constant BPF_MOD (line 193) | BPF_MOD = 0x90 constant BPF_MSH (line 194) | BPF_MSH = 0xa0 constant BPF_MUL (line 195) | BPF_MUL = 0x20 constant BPF_NEG (line 196) | BPF_NEG = 0x80 constant BPF_OR (line 197) | BPF_OR = 0x40 constant BPF_RELEASE (line 198) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 199) | BPF_RET = 0x6 constant BPF_RSH (line 200) | BPF_RSH = 0x70 constant BPF_ST (line 201) | BPF_ST = 0x2 constant BPF_STX (line 202) | BPF_STX = 0x3 constant BPF_SUB (line 203) | BPF_SUB = 0x10 constant BPF_TAX (line 204) | BPF_TAX = 0x0 constant BPF_TXA (line 205) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 206) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 207) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 208) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 209) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 210) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 211) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 212) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 213) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 214) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 215) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 216) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 217) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 218) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 219) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 220) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 221) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 222) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 223) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 224) | BPF_T_NORMAL = 0x0 constant BPF_W (line 225) | BPF_W = 0x0 constant BPF_X (line 226) | BPF_X = 0x8 constant BPF_XOR (line 227) | BPF_XOR = 0xa0 constant BRKINT (line 228) | BRKINT = 0x2 constant CAP_ACCEPT (line 229) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 230) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 231) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 232) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 233) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 234) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 235) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 236) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 237) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 238) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 239) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 240) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 241) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 242) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 243) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 244) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 245) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 246) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 247) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 248) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 249) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 250) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 251) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 252) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 253) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 254) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 255) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 256) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 257) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 258) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 259) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 260) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 261) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 262) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 263) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 264) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 265) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 266) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 267) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 268) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 269) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 270) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 271) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 272) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 273) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 274) | CAP_IOCTLS_ALL = 0x7fffffff constant CAP_KQUEUE (line 275) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 276) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 277) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 278) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 279) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 280) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 281) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 282) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 283) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 284) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 285) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 286) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 287) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 288) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 289) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 290) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 291) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 292) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 293) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 294) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 295) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 296) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 297) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 298) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 299) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 300) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 301) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 302) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 303) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 304) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 305) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 306) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 307) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 308) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 309) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 310) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 311) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 312) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 313) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 314) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 315) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 316) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 317) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 318) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 319) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 320) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 321) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 322) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 323) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 324) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 325) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 326) | CFLUSH = 0xf constant CLOCAL (line 327) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 328) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 329) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 330) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 331) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 332) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 333) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 334) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 335) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 336) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 337) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 338) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 339) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 340) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 341) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 342) | CREAD = 0x800 constant CRTSCTS (line 343) | CRTSCTS = 0x30000 constant CS5 (line 344) | CS5 = 0x0 constant CS6 (line 345) | CS6 = 0x100 constant CS7 (line 346) | CS7 = 0x200 constant CS8 (line 347) | CS8 = 0x300 constant CSIZE (line 348) | CSIZE = 0x300 constant CSTART (line 349) | CSTART = 0x11 constant CSTATUS (line 350) | CSTATUS = 0x14 constant CSTOP (line 351) | CSTOP = 0x13 constant CSTOPB (line 352) | CSTOPB = 0x400 constant CSUSP (line 353) | CSUSP = 0x1a constant CTL_MAXNAME (line 354) | CTL_MAXNAME = 0x18 constant CTL_NET (line 355) | CTL_NET = 0x4 constant DLT_A429 (line 356) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 357) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 358) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 359) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 360) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 361) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 362) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 363) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 364) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 365) | DLT_AURORA = 0x7e constant DLT_AX25 (line 366) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 367) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 368) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 369) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 370) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 371) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 372) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 373) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 374) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 375) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 376) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 377) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 378) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 379) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 380) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 381) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 382) | DLT_DBUS = 0xe7 constant DLT_DECT (line 383) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 384) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 385) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 386) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 387) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 388) | DLT_EN3MB = 0x2 constant DLT_ENC (line 389) | DLT_ENC = 0x6d constant DLT_EPON (line 390) | DLT_EPON = 0x103 constant DLT_ERF (line 391) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 392) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 393) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 394) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 395) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 396) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 397) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 398) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 399) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 400) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 401) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 402) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 403) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 404) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 405) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 406) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 407) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 408) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 409) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 410) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 411) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 412) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 413) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 414) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 415) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 416) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 417) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 418) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 419) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 420) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 421) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 422) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 423) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 424) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 425) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 426) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 427) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 428) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 429) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 430) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 431) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 432) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 433) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 434) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 435) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 436) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 437) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 438) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 439) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 440) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 441) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 442) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 443) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 444) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 445) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 446) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 447) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 448) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 449) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 450) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 451) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 452) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 453) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 454) | DLT_LAPD = 0xcb constant DLT_LIN (line 455) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 456) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 457) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 458) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 459) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 460) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 461) | DLT_LOOP = 0x6c constant DLT_LTALK (line 462) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 463) | DLT_MATCHING_MAX = 0x104 constant DLT_MATCHING_MIN (line 464) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 465) | DLT_MFR = 0xb6 constant DLT_MOST (line 466) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 467) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 468) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 469) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 470) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 471) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 472) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 473) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 474) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 475) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 476) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 477) | DLT_NFLOG = 0xef constant DLT_NG40 (line 478) | DLT_NG40 = 0xf4 constant DLT_NULL (line 479) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 480) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 481) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 482) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 483) | DLT_PKTAP = 0x102 constant DLT_PPI (line 484) | DLT_PPI = 0xc0 constant DLT_PPP (line 485) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 486) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 487) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 488) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 489) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 490) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 491) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 492) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 493) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 494) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 495) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 496) | DLT_RAW = 0xc constant DLT_RIO (line 497) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 498) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 499) | DLT_SCCP = 0x8e constant DLT_SCTP (line 500) | DLT_SCTP = 0xf8 constant DLT_SITA (line 501) | DLT_SITA = 0xc4 constant DLT_SLIP (line 502) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 503) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 504) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 505) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 506) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 507) | DLT_TZSP = 0x80 constant DLT_USB (line 508) | DLT_USB = 0xba constant DLT_USBPCAP (line 509) | DLT_USBPCAP = 0xf9 constant DLT_USB_LINUX (line 510) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 511) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 512) | DLT_USER0 = 0x93 constant DLT_USER1 (line 513) | DLT_USER1 = 0x94 constant DLT_USER10 (line 514) | DLT_USER10 = 0x9d constant DLT_USER11 (line 515) | DLT_USER11 = 0x9e constant DLT_USER12 (line 516) | DLT_USER12 = 0x9f constant DLT_USER13 (line 517) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 518) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 519) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 520) | DLT_USER2 = 0x95 constant DLT_USER3 (line 521) | DLT_USER3 = 0x96 constant DLT_USER4 (line 522) | DLT_USER4 = 0x97 constant DLT_USER5 (line 523) | DLT_USER5 = 0x98 constant DLT_USER6 (line 524) | DLT_USER6 = 0x99 constant DLT_USER7 (line 525) | DLT_USER7 = 0x9a constant DLT_USER8 (line 526) | DLT_USER8 = 0x9b constant DLT_USER9 (line 527) | DLT_USER9 = 0x9c constant DLT_WIHART (line 528) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 529) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 530) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 531) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 532) | DT_BLK = 0x6 constant DT_CHR (line 533) | DT_CHR = 0x2 constant DT_DIR (line 534) | DT_DIR = 0x4 constant DT_FIFO (line 535) | DT_FIFO = 0x1 constant DT_LNK (line 536) | DT_LNK = 0xa constant DT_REG (line 537) | DT_REG = 0x8 constant DT_SOCK (line 538) | DT_SOCK = 0xc constant DT_UNKNOWN (line 539) | DT_UNKNOWN = 0x0 constant DT_WHT (line 540) | DT_WHT = 0xe constant ECHO (line 541) | ECHO = 0x8 constant ECHOCTL (line 542) | ECHOCTL = 0x40 constant ECHOE (line 543) | ECHOE = 0x2 constant ECHOK (line 544) | ECHOK = 0x4 constant ECHOKE (line 545) | ECHOKE = 0x1 constant ECHONL (line 546) | ECHONL = 0x10 constant ECHOPRT (line 547) | ECHOPRT = 0x20 constant EVFILT_AIO (line 548) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 549) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 550) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 551) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 552) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 553) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 554) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 555) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 556) | EVFILT_SYSCOUNT = 0xc constant EVFILT_TIMER (line 557) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 558) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 559) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 560) | EVFILT_WRITE = -0x2 constant EV_ADD (line 561) | EV_ADD = 0x1 constant EV_CLEAR (line 562) | EV_CLEAR = 0x20 constant EV_DELETE (line 563) | EV_DELETE = 0x2 constant EV_DISABLE (line 564) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 565) | EV_DISPATCH = 0x80 constant EV_DROP (line 566) | EV_DROP = 0x1000 constant EV_ENABLE (line 567) | EV_ENABLE = 0x4 constant EV_EOF (line 568) | EV_EOF = 0x8000 constant EV_ERROR (line 569) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 570) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 571) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 572) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 573) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 574) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 575) | EV_SYSFLAGS = 0xf000 constant EXTA (line 576) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 577) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 578) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 579) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 580) | EXTB = 0x9600 constant EXTPROC (line 581) | EXTPROC = 0x800 constant FD_CLOEXEC (line 582) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 583) | FD_SETSIZE = 0x400 constant FLUSHO (line 584) | FLUSHO = 0x800000 constant F_CANCEL (line 585) | F_CANCEL = 0x5 constant F_DUP2FD (line 586) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 587) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 588) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 589) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 590) | F_GETFD = 0x1 constant F_GETFL (line 591) | F_GETFL = 0x3 constant F_GETLK (line 592) | F_GETLK = 0xb constant F_GETOWN (line 593) | F_GETOWN = 0x5 constant F_OGETLK (line 594) | F_OGETLK = 0x7 constant F_OK (line 595) | F_OK = 0x0 constant F_OSETLK (line 596) | F_OSETLK = 0x8 constant F_OSETLKW (line 597) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 598) | F_RDAHEAD = 0x10 constant F_RDLCK (line 599) | F_RDLCK = 0x1 constant F_READAHEAD (line 600) | F_READAHEAD = 0xf constant F_SETFD (line 601) | F_SETFD = 0x2 constant F_SETFL (line 602) | F_SETFL = 0x4 constant F_SETLK (line 603) | F_SETLK = 0xc constant F_SETLKW (line 604) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 605) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 606) | F_SETOWN = 0x6 constant F_UNLCK (line 607) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 608) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 609) | F_WRLCK = 0x3 constant HUPCL (line 610) | HUPCL = 0x4000 constant ICANON (line 611) | ICANON = 0x100 constant ICMP6_FILTER (line 612) | ICMP6_FILTER = 0x12 constant ICRNL (line 613) | ICRNL = 0x100 constant IEXTEN (line 614) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 615) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 616) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 617) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 618) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 619) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 620) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 621) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 622) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 623) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 624) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 625) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 626) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 627) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 628) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 629) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 630) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 631) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 632) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 633) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 634) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 635) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 636) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 637) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 638) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 639) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 640) | IFF_STATICARP = 0x80000 constant IFF_UP (line 641) | IFF_UP = 0x1 constant IFNAMSIZ (line 642) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 643) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 644) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 645) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 646) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 647) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 648) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 649) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 650) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 651) | IGNBRK = 0x1 constant IGNCR (line 652) | IGNCR = 0x80 constant IGNPAR (line 653) | IGNPAR = 0x4 constant IMAXBEL (line 654) | IMAXBEL = 0x2000 constant INLCR (line 655) | INLCR = 0x40 constant INPCK (line 656) | INPCK = 0x10 constant IN_CLASSA_HOST (line 657) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 658) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 659) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 660) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 661) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 662) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 663) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 664) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 665) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 666) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 667) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 668) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 669) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 670) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 671) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 672) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 673) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 674) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 675) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 676) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 677) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 678) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 679) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 680) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 681) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 682) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 683) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 684) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 685) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 686) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 687) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 688) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 689) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 690) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 691) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 692) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 693) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 694) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 695) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 696) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 697) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 698) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 699) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 700) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 701) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 702) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 703) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 704) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 705) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 706) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 707) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 708) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 709) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 710) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 711) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 712) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 713) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 714) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 715) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 716) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 717) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 718) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 719) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 720) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 721) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 722) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 723) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 724) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 725) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 726) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 727) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 728) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 729) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 730) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 731) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 732) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 733) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 734) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 735) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 736) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 737) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 738) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 739) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 740) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 741) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 742) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 743) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 744) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 745) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 746) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 747) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 748) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 749) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 750) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 751) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 752) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 753) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 754) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 755) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 756) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 757) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 758) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 759) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 760) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 761) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 762) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 763) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 764) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 765) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 766) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 767) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 768) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 769) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 770) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 771) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 772) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 773) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 774) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 775) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 776) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 777) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 778) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 779) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 780) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 781) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 782) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 783) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 784) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 785) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 786) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 787) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 788) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 789) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 790) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 791) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 792) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 793) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 794) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 795) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 796) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 797) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 798) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 799) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 800) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 801) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 802) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 803) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 804) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 805) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 806) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 807) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 808) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 809) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 810) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 811) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 812) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 813) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 814) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 815) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 816) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 817) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 818) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 819) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 820) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 821) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 822) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 823) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 824) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 825) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 826) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 827) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 828) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 829) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 830) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 831) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 832) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 833) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 834) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 835) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 836) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 837) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 838) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 839) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 840) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 841) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 842) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 843) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 844) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 845) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 846) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 847) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 848) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 849) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 850) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 851) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 852) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 853) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 854) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 855) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 856) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 857) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 858) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 859) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 860) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 861) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 862) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 863) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 864) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 865) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 866) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 867) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 868) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 869) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 870) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 871) | IP_DF = 0x4000 constant IP_DONTFRAG (line 872) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 873) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 874) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 875) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 876) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 877) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 878) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 879) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 880) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 881) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 882) | IP_FW3 = 0x30 constant IP_FW_ADD (line 883) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 884) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 885) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 886) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 887) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 888) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 889) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 890) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 891) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 892) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 893) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 894) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 895) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 896) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 897) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 898) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 899) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 900) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 901) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 902) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 903) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 904) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 905) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 906) | IP_MF = 0x2000 constant IP_MINTTL (line 907) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 908) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 909) | IP_MSFILTER = 0x4a constant IP_MSS (line 910) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 911) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 912) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 913) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 914) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 915) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 916) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 917) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 918) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 919) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 920) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 921) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 922) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 923) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 924) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 925) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 926) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 927) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 928) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 929) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 930) | IP_RETOPTS = 0x8 constant IP_RF (line 931) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 932) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 933) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 934) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 935) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 936) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 937) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 938) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 939) | IP_TOS = 0x3 constant IP_TTL (line 940) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 941) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 942) | ISIG = 0x80 constant ISTRIP (line 943) | ISTRIP = 0x20 constant IXANY (line 944) | IXANY = 0x800 constant IXOFF (line 945) | IXOFF = 0x400 constant IXON (line 946) | IXON = 0x200 constant LOCK_EX (line 947) | LOCK_EX = 0x2 constant LOCK_NB (line 948) | LOCK_NB = 0x4 constant LOCK_SH (line 949) | LOCK_SH = 0x1 constant LOCK_UN (line 950) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 951) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 952) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 953) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 954) | MADV_FREE = 0x5 constant MADV_NOCORE (line 955) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 956) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 957) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 958) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 959) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 960) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 961) | MADV_WILLNEED = 0x3 constant MAP_ALIGNED_SUPER (line 962) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 963) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 964) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 965) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 966) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 967) | MAP_COPY = 0x2 constant MAP_EXCL (line 968) | MAP_EXCL = 0x4000 constant MAP_FILE (line 969) | MAP_FILE = 0x0 constant MAP_FIXED (line 970) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 971) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 972) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 973) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 974) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 975) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 976) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 977) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 978) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 979) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 980) | MAP_SHARED = 0x1 constant MAP_STACK (line 981) | MAP_STACK = 0x400 constant MCL_CURRENT (line 982) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 983) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 984) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 985) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 986) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 987) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 988) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 989) | MSG_EOF = 0x100 constant MSG_EOR (line 990) | MSG_EOR = 0x8 constant MSG_NBIO (line 991) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 992) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 993) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 994) | MSG_OOB = 0x1 constant MSG_PEEK (line 995) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 996) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 997) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 998) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 999) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1000) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1001) | MS_SYNC = 0x0 constant NAME_MAX (line 1002) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1003) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1004) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1005) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1006) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1007) | NET_RT_IFMALIST = 0x4 constant NOFLSH (line 1008) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1009) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1010) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1011) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1012) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1013) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1014) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1015) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1016) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1017) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1018) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1019) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1020) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1021) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1022) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1023) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1024) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1025) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1026) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1027) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1028) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1029) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1030) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1031) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1032) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1033) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1034) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1035) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1036) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1037) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1038) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1039) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1040) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1041) | NOTE_WRITE = 0x2 constant OCRNL (line 1042) | OCRNL = 0x10 constant ONLCR (line 1043) | ONLCR = 0x2 constant ONLRET (line 1044) | ONLRET = 0x40 constant ONOCR (line 1045) | ONOCR = 0x20 constant ONOEOT (line 1046) | ONOEOT = 0x8 constant OPOST (line 1047) | OPOST = 0x1 constant OXTABS (line 1048) | OXTABS = 0x4 constant O_ACCMODE (line 1049) | O_ACCMODE = 0x3 constant O_APPEND (line 1050) | O_APPEND = 0x8 constant O_ASYNC (line 1051) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1052) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1053) | O_CREAT = 0x200 constant O_DIRECT (line 1054) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1055) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1056) | O_EXCL = 0x800 constant O_EXEC (line 1057) | O_EXEC = 0x40000 constant O_EXLOCK (line 1058) | O_EXLOCK = 0x20 constant O_FSYNC (line 1059) | O_FSYNC = 0x80 constant O_NDELAY (line 1060) | O_NDELAY = 0x4 constant O_NOCTTY (line 1061) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1062) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1063) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1064) | O_RDONLY = 0x0 constant O_RDWR (line 1065) | O_RDWR = 0x2 constant O_SHLOCK (line 1066) | O_SHLOCK = 0x10 constant O_SYNC (line 1067) | O_SYNC = 0x80 constant O_TRUNC (line 1068) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1069) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1070) | O_VERIFY = 0x200000 constant O_WRONLY (line 1071) | O_WRONLY = 0x1 constant PARENB (line 1072) | PARENB = 0x1000 constant PARMRK (line 1073) | PARMRK = 0x8 constant PARODD (line 1074) | PARODD = 0x2000 constant PENDIN (line 1075) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1076) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1077) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1078) | PRIO_USER = 0x2 constant PROT_EXEC (line 1079) | PROT_EXEC = 0x4 constant PROT_NONE (line 1080) | PROT_NONE = 0x0 constant PROT_READ (line 1081) | PROT_READ = 0x1 constant PROT_WRITE (line 1082) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1083) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1084) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1085) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1086) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1087) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1088) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1089) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1090) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1091) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1092) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1093) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1094) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1095) | RTAX_BRD = 0x7 constant RTAX_DST (line 1096) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1097) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1098) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1099) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1100) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1101) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1102) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1103) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1104) | RTA_BRD = 0x80 constant RTA_DST (line 1105) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1106) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1107) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1108) | RTA_IFA = 0x20 constant RTA_IFP (line 1109) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1110) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1111) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1112) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1113) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1114) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1115) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1116) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1117) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1118) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1119) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1120) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1121) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1122) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1123) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1124) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1125) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1126) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1127) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1128) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1129) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1130) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1131) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1132) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1133) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1134) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1135) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1136) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1137) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1138) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1139) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1140) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1141) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1142) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1143) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1144) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1145) | RTM_LOSING = 0x5 constant RTM_MISS (line 1146) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1147) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1148) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1149) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1150) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1151) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1152) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1153) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1154) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1155) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1156) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1157) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1158) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1159) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1160) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1161) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1162) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1163) | RT_BLACKHOLE = 0x40 constant RT_CACHING_CONTEXT (line 1164) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1165) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1166) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1167) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1168) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1169) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1170) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1171) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1172) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1173) | RT_MAY_LOOP_BIT = 0x3 constant RT_NORTREF (line 1174) | RT_NORTREF = 0x2 constant RT_REJECT (line 1175) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1176) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1177) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1178) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1179) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1180) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1181) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1182) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1183) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1184) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1185) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1186) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1187) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1188) | SIOCAIFGROUP = 0x80246987 constant SIOCATMARK (line 1189) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1190) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1191) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1192) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1193) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1194) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETSGCNT (line 1195) | SIOCGETSGCNT = 0xc0147210 constant SIOCGETVIFCNT (line 1196) | SIOCGETVIFCNT = 0xc014720f constant SIOCGHIWAT (line 1197) | SIOCGHIWAT = 0x40047301 constant SIOCGI2C (line 1198) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1199) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1200) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1201) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1202) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDESCR (line 1203) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1204) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1205) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1206) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1207) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1208) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1209) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFINDEX (line 1210) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1211) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1212) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1213) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1214) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1215) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1216) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1217) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1218) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1219) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1220) | SIOCGIFXMEDIA = 0xc028698b constant SIOCGLOWAT (line 1221) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1222) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1223) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1224) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1225) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1226) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1227) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1228) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1229) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSDRVSPEC (line 1230) | SIOCSDRVSPEC = 0x801c697b constant SIOCSHIWAT (line 1231) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1232) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1233) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1234) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1235) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1236) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1237) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1238) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1239) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1240) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1241) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1242) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1243) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1244) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1245) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1246) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1247) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1248) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1249) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1250) | SIOCSIFVNET = 0xc020695a constant SIOCSLOWAT (line 1251) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1252) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1253) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1254) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1255) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1256) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1257) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1258) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1259) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1260) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1261) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1262) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1263) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1264) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1265) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1266) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1267) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1268) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1269) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1270) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1271) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1272) | SO_LABEL = 0x1009 constant SO_LINGER (line 1273) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1274) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1275) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1276) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1277) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1278) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1279) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1280) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1281) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1282) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1283) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1284) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1285) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1286) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1287) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1288) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1289) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1290) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1291) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1292) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1293) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1294) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1295) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1296) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1297) | SO_VENDOR = 0x80000000 constant TAB0 (line 1298) | TAB0 = 0x0 constant TAB3 (line 1299) | TAB3 = 0x4 constant TABDLY (line 1300) | TABDLY = 0x4 constant TCIFLUSH (line 1301) | TCIFLUSH = 0x1 constant TCIOFF (line 1302) | TCIOFF = 0x3 constant TCIOFLUSH (line 1303) | TCIOFLUSH = 0x3 constant TCION (line 1304) | TCION = 0x4 constant TCOFLUSH (line 1305) | TCOFLUSH = 0x2 constant TCOOFF (line 1306) | TCOOFF = 0x1 constant TCOON (line 1307) | TCOON = 0x2 constant TCP_CA_NAME_MAX (line 1308) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1309) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1310) | TCP_CONGESTION = 0x40 constant TCP_FASTOPEN (line 1311) | TCP_FASTOPEN = 0x401 constant TCP_FUNCTION_BLK (line 1312) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1313) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1314) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1315) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1316) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1317) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1318) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1319) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1320) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1321) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1322) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1323) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1324) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1325) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1326) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1327) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1328) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1329) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1330) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1331) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1332) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1333) | TCP_PCAP_OUT = 0x800 constant TCP_VENDOR (line 1334) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1335) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1336) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1337) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1338) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1339) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1340) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1341) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1342) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1343) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1344) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1345) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1346) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1347) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1348) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1349) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1350) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1351) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1352) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1353) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1354) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1355) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1356) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1357) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1358) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1359) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1360) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1361) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1362) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1363) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1364) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1365) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1366) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1367) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1368) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1369) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1370) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1371) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1372) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1373) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1374) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1375) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1376) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1377) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1378) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1379) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1380) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1381) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1382) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1383) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1384) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1385) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1386) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1387) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1388) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1389) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1390) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1391) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1392) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1393) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1394) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1395) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1396) | TIOCTIMESTAMP = 0x40087459 constant TIOCUCNTL (line 1397) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1398) | TOSTOP = 0x400000 constant VDISCARD (line 1399) | VDISCARD = 0xf constant VDSUSP (line 1400) | VDSUSP = 0xb constant VEOF (line 1401) | VEOF = 0x0 constant VEOL (line 1402) | VEOL = 0x1 constant VEOL2 (line 1403) | VEOL2 = 0x2 constant VERASE (line 1404) | VERASE = 0x3 constant VERASE2 (line 1405) | VERASE2 = 0x7 constant VINTR (line 1406) | VINTR = 0x8 constant VKILL (line 1407) | VKILL = 0x5 constant VLNEXT (line 1408) | VLNEXT = 0xe constant VMIN (line 1409) | VMIN = 0x10 constant VQUIT (line 1410) | VQUIT = 0x9 constant VREPRINT (line 1411) | VREPRINT = 0x6 constant VSTART (line 1412) | VSTART = 0xc constant VSTATUS (line 1413) | VSTATUS = 0x12 constant VSTOP (line 1414) | VSTOP = 0xd constant VSUSP (line 1415) | VSUSP = 0xa constant VTIME (line 1416) | VTIME = 0x11 constant VWERASE (line 1417) | VWERASE = 0x4 constant WCONTINUED (line 1418) | WCONTINUED = 0x4 constant WCOREFLAG (line 1419) | WCOREFLAG = 0x80 constant WEXITED (line 1420) | WEXITED = 0x10 constant WLINUXCLONE (line 1421) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1422) | WNOHANG = 0x1 constant WNOWAIT (line 1423) | WNOWAIT = 0x8 constant WSTOPPED (line 1424) | WSTOPPED = 0x2 constant WTRAPPED (line 1425) | WTRAPPED = 0x20 constant WUNTRACED (line 1426) | WUNTRACED = 0x2 constant E2BIG (line 1431) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1432) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1433) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1434) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1435) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1436) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1437) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1438) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1439) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1440) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1441) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1442) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1443) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1444) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1445) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1446) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1447) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1448) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1449) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1450) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1451) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1452) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1453) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1454) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1455) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1456) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1457) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1458) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1459) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1460) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1461) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1462) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1463) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1464) | EINVAL = syscall.Errno(0x16) constant EIO (line 1465) | EIO = syscall.Errno(0x5) constant EISCONN (line 1466) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1467) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1468) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1469) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1470) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1471) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1472) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1473) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1474) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1475) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1476) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1477) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1478) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1479) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1480) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1481) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1482) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1483) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1484) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1485) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1486) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1487) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1488) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1489) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1490) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1491) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1492) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1493) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1494) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1495) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1496) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1497) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1498) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1499) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1500) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1501) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1502) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1503) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1504) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1505) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1506) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1507) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1508) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1509) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1510) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1511) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1512) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1513) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1514) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1515) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1516) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1517) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1518) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1519) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1520) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1521) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1522) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1523) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1524) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1525) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1526) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1527) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1528) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1529) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1534) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1535) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1536) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1537) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1538) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1539) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1540) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1541) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1542) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1543) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1544) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1545) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1546) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1547) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1548) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1549) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1550) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1551) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1552) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1553) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1554) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1555) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1556) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1557) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1558) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1559) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1560) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1561) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1562) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1563) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1564) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1565) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1566) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1567) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1568) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x23 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 18) | AF_CCITT = 0xa constant AF_CHAOS (line 19) | AF_CHAOS = 0x5 constant AF_CNT (line 20) | AF_CNT = 0x15 constant AF_COIP (line 21) | AF_COIP = 0x14 constant AF_DATAKIT (line 22) | AF_DATAKIT = 0x9 constant AF_DECnet (line 23) | AF_DECnet = 0xc constant AF_DLI (line 24) | AF_DLI = 0xd constant AF_E164 (line 25) | AF_E164 = 0x1a constant AF_ECMA (line 26) | AF_ECMA = 0x8 constant AF_HYLINK (line 27) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 28) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 32) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 33) | AF_INET_SDP = 0x28 constant AF_IPX (line 34) | AF_IPX = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x1a constant AF_ISO (line 36) | AF_ISO = 0x7 constant AF_LAT (line 37) | AF_LAT = 0xe constant AF_LINK (line 38) | AF_LINK = 0x12 constant AF_LOCAL (line 39) | AF_LOCAL = 0x1 constant AF_MAX (line 40) | AF_MAX = 0x2a constant AF_NATM (line 41) | AF_NATM = 0x1d constant AF_NETBIOS (line 42) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 43) | AF_NETGRAPH = 0x20 constant AF_OSI (line 44) | AF_OSI = 0x7 constant AF_PUP (line 45) | AF_PUP = 0x4 constant AF_ROUTE (line 46) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 47) | AF_SCLUSTER = 0x22 constant AF_SIP (line 48) | AF_SIP = 0x18 constant AF_SLOW (line 49) | AF_SLOW = 0x21 constant AF_SNA (line 50) | AF_SNA = 0xb constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 53) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 54) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 55) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 56) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 57) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 58) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 59) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 60) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 61) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 62) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 63) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 64) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 65) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 66) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 67) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 68) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 69) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 70) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 71) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 72) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 73) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 74) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 75) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 76) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 77) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 78) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 79) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 80) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 81) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 82) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 83) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 84) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 85) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 86) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 87) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 88) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 89) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 90) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 91) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 92) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 93) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 94) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 95) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 96) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 97) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 98) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 99) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 100) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 101) | ALTWERASE = 0x200 constant B0 (line 102) | B0 = 0x0 constant B110 (line 103) | B110 = 0x6e constant B115200 (line 104) | B115200 = 0x1c200 constant B1200 (line 105) | B1200 = 0x4b0 constant B134 (line 106) | B134 = 0x86 constant B14400 (line 107) | B14400 = 0x3840 constant B150 (line 108) | B150 = 0x96 constant B1800 (line 109) | B1800 = 0x708 constant B19200 (line 110) | B19200 = 0x4b00 constant B200 (line 111) | B200 = 0xc8 constant B230400 (line 112) | B230400 = 0x38400 constant B2400 (line 113) | B2400 = 0x960 constant B28800 (line 114) | B28800 = 0x7080 constant B300 (line 115) | B300 = 0x12c constant B38400 (line 116) | B38400 = 0x9600 constant B460800 (line 117) | B460800 = 0x70800 constant B4800 (line 118) | B4800 = 0x12c0 constant B50 (line 119) | B50 = 0x32 constant B57600 (line 120) | B57600 = 0xe100 constant B600 (line 121) | B600 = 0x258 constant B7200 (line 122) | B7200 = 0x1c20 constant B75 (line 123) | B75 = 0x4b constant B76800 (line 124) | B76800 = 0x12c00 constant B921600 (line 125) | B921600 = 0xe1000 constant B9600 (line 126) | B9600 = 0x2580 constant BIOCFEEDBACK (line 127) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 128) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 129) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 130) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 131) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 132) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETBUFMODE (line 133) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 134) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 135) | BIOCGETZMAX = 0x4008427f constant BIOCGHDRCMPLT (line 136) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 137) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 138) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 139) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 140) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 141) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 142) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 143) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 144) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 145) | BIOCROTZBUF = 0x40184280 constant BIOCSBLEN (line 146) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 147) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 148) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 149) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 150) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 151) | BIOCSETFNR = 0x80104282 constant BIOCSETIF (line 152) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 153) | BIOCSETWF = 0x8010427b constant BIOCSETZBUF (line 154) | BIOCSETZBUF = 0x80184281 constant BIOCSHDRCMPLT (line 155) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 156) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 157) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 158) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 159) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 160) | BIOCVERSION = 0x40044271 constant BPF_A (line 161) | BPF_A = 0x10 constant BPF_ABS (line 162) | BPF_ABS = 0x20 constant BPF_ADD (line 163) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 164) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 165) | BPF_ALU = 0x4 constant BPF_AND (line 166) | BPF_AND = 0x50 constant BPF_B (line 167) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 168) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 169) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 170) | BPF_DIV = 0x30 constant BPF_H (line 171) | BPF_H = 0x8 constant BPF_IMM (line 172) | BPF_IMM = 0x0 constant BPF_IND (line 173) | BPF_IND = 0x40 constant BPF_JA (line 174) | BPF_JA = 0x0 constant BPF_JEQ (line 175) | BPF_JEQ = 0x10 constant BPF_JGE (line 176) | BPF_JGE = 0x30 constant BPF_JGT (line 177) | BPF_JGT = 0x20 constant BPF_JMP (line 178) | BPF_JMP = 0x5 constant BPF_JSET (line 179) | BPF_JSET = 0x40 constant BPF_K (line 180) | BPF_K = 0x0 constant BPF_LD (line 181) | BPF_LD = 0x0 constant BPF_LDX (line 182) | BPF_LDX = 0x1 constant BPF_LEN (line 183) | BPF_LEN = 0x80 constant BPF_LSH (line 184) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 185) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 186) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 187) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 188) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 189) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 190) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 191) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 192) | BPF_MISC = 0x7 constant BPF_MOD (line 193) | BPF_MOD = 0x90 constant BPF_MSH (line 194) | BPF_MSH = 0xa0 constant BPF_MUL (line 195) | BPF_MUL = 0x20 constant BPF_NEG (line 196) | BPF_NEG = 0x80 constant BPF_OR (line 197) | BPF_OR = 0x40 constant BPF_RELEASE (line 198) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 199) | BPF_RET = 0x6 constant BPF_RSH (line 200) | BPF_RSH = 0x70 constant BPF_ST (line 201) | BPF_ST = 0x2 constant BPF_STX (line 202) | BPF_STX = 0x3 constant BPF_SUB (line 203) | BPF_SUB = 0x10 constant BPF_TAX (line 204) | BPF_TAX = 0x0 constant BPF_TXA (line 205) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 206) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 207) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 208) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 209) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 210) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 211) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 212) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 213) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 214) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 215) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 216) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 217) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 218) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 219) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 220) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 221) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 222) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 223) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 224) | BPF_T_NORMAL = 0x0 constant BPF_W (line 225) | BPF_W = 0x0 constant BPF_X (line 226) | BPF_X = 0x8 constant BPF_XOR (line 227) | BPF_XOR = 0xa0 constant BRKINT (line 228) | BRKINT = 0x2 constant CAP_ACCEPT (line 229) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 230) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 231) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 232) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 233) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 234) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 235) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 236) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 237) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 238) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 239) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 240) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 241) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 242) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 243) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 244) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 245) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 246) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 247) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 248) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 249) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 250) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 251) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 252) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 253) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 254) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 255) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 256) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 257) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 258) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 259) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 260) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 261) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 262) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 263) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 264) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 265) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 266) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 267) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 268) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 269) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 270) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 271) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 272) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 273) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 274) | CAP_IOCTLS_ALL = 0x7fffffffffffffff constant CAP_KQUEUE (line 275) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 276) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 277) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 278) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 279) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 280) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 281) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 282) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 283) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 284) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 285) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 286) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 287) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 288) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 289) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 290) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 291) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 292) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 293) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 294) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 295) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 296) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 297) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 298) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 299) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 300) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 301) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 302) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 303) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 304) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 305) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 306) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 307) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 308) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 309) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 310) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 311) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 312) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 313) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 314) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 315) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 316) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 317) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 318) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 319) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 320) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 321) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 322) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 323) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 324) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 325) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 326) | CFLUSH = 0xf constant CLOCAL (line 327) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 328) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 329) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 330) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 331) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 332) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 333) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 334) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 335) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 336) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 337) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 338) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 339) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 340) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 341) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 342) | CREAD = 0x800 constant CRTSCTS (line 343) | CRTSCTS = 0x30000 constant CS5 (line 344) | CS5 = 0x0 constant CS6 (line 345) | CS6 = 0x100 constant CS7 (line 346) | CS7 = 0x200 constant CS8 (line 347) | CS8 = 0x300 constant CSIZE (line 348) | CSIZE = 0x300 constant CSTART (line 349) | CSTART = 0x11 constant CSTATUS (line 350) | CSTATUS = 0x14 constant CSTOP (line 351) | CSTOP = 0x13 constant CSTOPB (line 352) | CSTOPB = 0x400 constant CSUSP (line 353) | CSUSP = 0x1a constant CTL_MAXNAME (line 354) | CTL_MAXNAME = 0x18 constant CTL_NET (line 355) | CTL_NET = 0x4 constant DLT_A429 (line 356) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 357) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 358) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 359) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 360) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 361) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 362) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 363) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 364) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 365) | DLT_AURORA = 0x7e constant DLT_AX25 (line 366) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 367) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 368) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 369) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 370) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 371) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 372) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 373) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 374) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 375) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 376) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 377) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 378) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 379) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 380) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 381) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 382) | DLT_DBUS = 0xe7 constant DLT_DECT (line 383) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 384) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 385) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 386) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 387) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 388) | DLT_EN3MB = 0x2 constant DLT_ENC (line 389) | DLT_ENC = 0x6d constant DLT_EPON (line 390) | DLT_EPON = 0x103 constant DLT_ERF (line 391) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 392) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 393) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 394) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 395) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 396) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 397) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 398) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 399) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 400) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 401) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 402) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 403) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 404) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 405) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 406) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 407) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 408) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 409) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 410) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 411) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 412) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 413) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 414) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 415) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 416) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 417) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 418) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 419) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 420) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 421) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 422) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 423) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 424) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 425) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 426) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 427) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 428) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 429) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 430) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 431) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 432) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 433) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 434) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 435) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 436) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 437) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 438) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 439) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 440) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 441) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 442) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 443) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 444) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 445) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 446) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 447) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 448) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 449) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 450) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 451) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 452) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 453) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 454) | DLT_LAPD = 0xcb constant DLT_LIN (line 455) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 456) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 457) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 458) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 459) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 460) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 461) | DLT_LOOP = 0x6c constant DLT_LTALK (line 462) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 463) | DLT_MATCHING_MAX = 0x104 constant DLT_MATCHING_MIN (line 464) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 465) | DLT_MFR = 0xb6 constant DLT_MOST (line 466) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 467) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 468) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 469) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 470) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 471) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 472) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 473) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 474) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 475) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 476) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 477) | DLT_NFLOG = 0xef constant DLT_NG40 (line 478) | DLT_NG40 = 0xf4 constant DLT_NULL (line 479) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 480) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 481) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 482) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 483) | DLT_PKTAP = 0x102 constant DLT_PPI (line 484) | DLT_PPI = 0xc0 constant DLT_PPP (line 485) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 486) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 487) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 488) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 489) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 490) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 491) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 492) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 493) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 494) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 495) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 496) | DLT_RAW = 0xc constant DLT_RIO (line 497) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 498) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 499) | DLT_SCCP = 0x8e constant DLT_SCTP (line 500) | DLT_SCTP = 0xf8 constant DLT_SITA (line 501) | DLT_SITA = 0xc4 constant DLT_SLIP (line 502) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 503) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 504) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 505) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 506) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 507) | DLT_TZSP = 0x80 constant DLT_USB (line 508) | DLT_USB = 0xba constant DLT_USBPCAP (line 509) | DLT_USBPCAP = 0xf9 constant DLT_USB_LINUX (line 510) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 511) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 512) | DLT_USER0 = 0x93 constant DLT_USER1 (line 513) | DLT_USER1 = 0x94 constant DLT_USER10 (line 514) | DLT_USER10 = 0x9d constant DLT_USER11 (line 515) | DLT_USER11 = 0x9e constant DLT_USER12 (line 516) | DLT_USER12 = 0x9f constant DLT_USER13 (line 517) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 518) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 519) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 520) | DLT_USER2 = 0x95 constant DLT_USER3 (line 521) | DLT_USER3 = 0x96 constant DLT_USER4 (line 522) | DLT_USER4 = 0x97 constant DLT_USER5 (line 523) | DLT_USER5 = 0x98 constant DLT_USER6 (line 524) | DLT_USER6 = 0x99 constant DLT_USER7 (line 525) | DLT_USER7 = 0x9a constant DLT_USER8 (line 526) | DLT_USER8 = 0x9b constant DLT_USER9 (line 527) | DLT_USER9 = 0x9c constant DLT_WIHART (line 528) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 529) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 530) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 531) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 532) | DT_BLK = 0x6 constant DT_CHR (line 533) | DT_CHR = 0x2 constant DT_DIR (line 534) | DT_DIR = 0x4 constant DT_FIFO (line 535) | DT_FIFO = 0x1 constant DT_LNK (line 536) | DT_LNK = 0xa constant DT_REG (line 537) | DT_REG = 0x8 constant DT_SOCK (line 538) | DT_SOCK = 0xc constant DT_UNKNOWN (line 539) | DT_UNKNOWN = 0x0 constant DT_WHT (line 540) | DT_WHT = 0xe constant ECHO (line 541) | ECHO = 0x8 constant ECHOCTL (line 542) | ECHOCTL = 0x40 constant ECHOE (line 543) | ECHOE = 0x2 constant ECHOK (line 544) | ECHOK = 0x4 constant ECHOKE (line 545) | ECHOKE = 0x1 constant ECHONL (line 546) | ECHONL = 0x10 constant ECHOPRT (line 547) | ECHOPRT = 0x20 constant EVFILT_AIO (line 548) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 549) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 550) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 551) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 552) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 553) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 554) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 555) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 556) | EVFILT_SYSCOUNT = 0xc constant EVFILT_TIMER (line 557) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 558) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 559) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 560) | EVFILT_WRITE = -0x2 constant EV_ADD (line 561) | EV_ADD = 0x1 constant EV_CLEAR (line 562) | EV_CLEAR = 0x20 constant EV_DELETE (line 563) | EV_DELETE = 0x2 constant EV_DISABLE (line 564) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 565) | EV_DISPATCH = 0x80 constant EV_DROP (line 566) | EV_DROP = 0x1000 constant EV_ENABLE (line 567) | EV_ENABLE = 0x4 constant EV_EOF (line 568) | EV_EOF = 0x8000 constant EV_ERROR (line 569) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 570) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 571) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 572) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 573) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 574) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 575) | EV_SYSFLAGS = 0xf000 constant EXTA (line 576) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 577) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 578) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 579) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 580) | EXTB = 0x9600 constant EXTPROC (line 581) | EXTPROC = 0x800 constant FD_CLOEXEC (line 582) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 583) | FD_SETSIZE = 0x400 constant FLUSHO (line 584) | FLUSHO = 0x800000 constant F_CANCEL (line 585) | F_CANCEL = 0x5 constant F_DUP2FD (line 586) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 587) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 588) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 589) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 590) | F_GETFD = 0x1 constant F_GETFL (line 591) | F_GETFL = 0x3 constant F_GETLK (line 592) | F_GETLK = 0xb constant F_GETOWN (line 593) | F_GETOWN = 0x5 constant F_OGETLK (line 594) | F_OGETLK = 0x7 constant F_OK (line 595) | F_OK = 0x0 constant F_OSETLK (line 596) | F_OSETLK = 0x8 constant F_OSETLKW (line 597) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 598) | F_RDAHEAD = 0x10 constant F_RDLCK (line 599) | F_RDLCK = 0x1 constant F_READAHEAD (line 600) | F_READAHEAD = 0xf constant F_SETFD (line 601) | F_SETFD = 0x2 constant F_SETFL (line 602) | F_SETFL = 0x4 constant F_SETLK (line 603) | F_SETLK = 0xc constant F_SETLKW (line 604) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 605) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 606) | F_SETOWN = 0x6 constant F_UNLCK (line 607) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 608) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 609) | F_WRLCK = 0x3 constant HUPCL (line 610) | HUPCL = 0x4000 constant ICANON (line 611) | ICANON = 0x100 constant ICMP6_FILTER (line 612) | ICMP6_FILTER = 0x12 constant ICRNL (line 613) | ICRNL = 0x100 constant IEXTEN (line 614) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 615) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 616) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 617) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 618) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 619) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 620) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 621) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 622) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 623) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 624) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 625) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 626) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 627) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 628) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 629) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 630) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 631) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 632) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 633) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 634) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 635) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 636) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 637) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 638) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 639) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 640) | IFF_STATICARP = 0x80000 constant IFF_UP (line 641) | IFF_UP = 0x1 constant IFNAMSIZ (line 642) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 643) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 644) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 645) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 646) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 647) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 648) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 649) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 650) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 651) | IGNBRK = 0x1 constant IGNCR (line 652) | IGNCR = 0x80 constant IGNPAR (line 653) | IGNPAR = 0x4 constant IMAXBEL (line 654) | IMAXBEL = 0x2000 constant INLCR (line 655) | INLCR = 0x40 constant INPCK (line 656) | INPCK = 0x10 constant IN_CLASSA_HOST (line 657) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 658) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 659) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 660) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 661) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 662) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 663) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 664) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 665) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 666) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 667) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 668) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 669) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 670) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 671) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 672) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 673) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 674) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 675) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 676) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 677) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 678) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 679) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 680) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 681) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 682) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 683) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 684) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 685) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 686) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 687) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 688) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 689) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 690) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 691) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 692) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 693) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 694) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 695) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 696) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 697) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 698) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 699) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 700) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 701) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 702) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 703) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 704) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 705) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 706) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 707) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 708) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 709) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 710) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 711) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 712) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 713) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 714) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 715) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 716) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 717) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 718) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 719) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 720) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 721) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 722) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 723) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 724) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 725) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 726) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 727) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 728) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 729) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 730) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 731) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 732) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 733) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 734) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 735) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 736) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 737) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 738) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 739) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 740) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 741) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 742) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 743) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 744) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 745) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 746) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 747) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 748) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 749) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 750) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 751) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 752) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 753) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 754) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 755) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 756) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 757) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 758) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 759) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 760) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 761) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 762) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 763) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 764) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 765) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 766) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 767) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 768) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 769) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 770) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 771) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 772) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 773) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 774) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 775) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 776) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 777) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 778) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 779) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 780) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 781) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 782) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 783) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 784) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 785) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 786) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 787) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 788) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 789) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 790) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 791) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 792) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 793) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 794) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 795) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 796) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 797) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 798) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 799) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 800) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 801) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 802) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 803) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 804) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 805) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 806) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 807) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 808) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 809) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 810) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 811) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 812) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 813) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 814) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 815) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 816) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 817) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 818) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 819) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 820) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 821) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 822) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 823) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 824) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 825) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 826) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 827) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 828) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 829) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 830) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 831) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 832) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 833) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 834) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 835) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 836) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 837) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 838) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 839) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 840) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 841) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 842) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 843) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 844) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 845) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 846) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 847) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 848) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 849) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 850) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 851) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 852) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 853) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 854) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 855) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 856) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 857) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 858) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 859) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 860) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 861) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 862) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 863) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 864) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 865) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 866) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 867) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 868) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 869) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 870) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 871) | IP_DF = 0x4000 constant IP_DONTFRAG (line 872) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 873) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 874) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 875) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 876) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 877) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 878) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 879) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 880) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 881) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 882) | IP_FW3 = 0x30 constant IP_FW_ADD (line 883) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 884) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 885) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 886) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 887) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 888) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 889) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 890) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 891) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 892) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 893) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 894) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 895) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 896) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 897) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 898) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 899) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 900) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 901) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 902) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 903) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 904) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 905) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 906) | IP_MF = 0x2000 constant IP_MINTTL (line 907) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 908) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 909) | IP_MSFILTER = 0x4a constant IP_MSS (line 910) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 911) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 912) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 913) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 914) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 915) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 916) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 917) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 918) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 919) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 920) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 921) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 922) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 923) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 924) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 925) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 926) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 927) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 928) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 929) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 930) | IP_RETOPTS = 0x8 constant IP_RF (line 931) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 932) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 933) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 934) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 935) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 936) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 937) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 938) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 939) | IP_TOS = 0x3 constant IP_TTL (line 940) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 941) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 942) | ISIG = 0x80 constant ISTRIP (line 943) | ISTRIP = 0x20 constant IXANY (line 944) | IXANY = 0x800 constant IXOFF (line 945) | IXOFF = 0x400 constant IXON (line 946) | IXON = 0x200 constant LOCK_EX (line 947) | LOCK_EX = 0x2 constant LOCK_NB (line 948) | LOCK_NB = 0x4 constant LOCK_SH (line 949) | LOCK_SH = 0x1 constant LOCK_UN (line 950) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 951) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 952) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 953) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 954) | MADV_FREE = 0x5 constant MADV_NOCORE (line 955) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 956) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 957) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 958) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 959) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 960) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 961) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 962) | MAP_32BIT = 0x80000 constant MAP_ALIGNED_SUPER (line 963) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 964) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 965) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 966) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 967) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 968) | MAP_COPY = 0x2 constant MAP_EXCL (line 969) | MAP_EXCL = 0x4000 constant MAP_FILE (line 970) | MAP_FILE = 0x0 constant MAP_FIXED (line 971) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 972) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 973) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 974) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 975) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 976) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 977) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 978) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 979) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 980) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 981) | MAP_SHARED = 0x1 constant MAP_STACK (line 982) | MAP_STACK = 0x400 constant MCL_CURRENT (line 983) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 984) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 985) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 986) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 987) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 988) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 989) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 990) | MSG_EOF = 0x100 constant MSG_EOR (line 991) | MSG_EOR = 0x8 constant MSG_NBIO (line 992) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 993) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 994) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 995) | MSG_OOB = 0x1 constant MSG_PEEK (line 996) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 997) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 998) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 999) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 1000) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1001) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1002) | MS_SYNC = 0x0 constant NAME_MAX (line 1003) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1004) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1005) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1006) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1007) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1008) | NET_RT_IFMALIST = 0x4 constant NOFLSH (line 1009) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1010) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1011) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1012) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1013) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1014) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1015) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1016) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1017) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1018) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1019) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1020) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1021) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1022) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1023) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1024) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1025) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1026) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1027) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1028) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1029) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1030) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1031) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1032) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1033) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1034) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1035) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1036) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1037) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1038) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1039) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1040) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1041) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1042) | NOTE_WRITE = 0x2 constant OCRNL (line 1043) | OCRNL = 0x10 constant ONLCR (line 1044) | ONLCR = 0x2 constant ONLRET (line 1045) | ONLRET = 0x40 constant ONOCR (line 1046) | ONOCR = 0x20 constant ONOEOT (line 1047) | ONOEOT = 0x8 constant OPOST (line 1048) | OPOST = 0x1 constant OXTABS (line 1049) | OXTABS = 0x4 constant O_ACCMODE (line 1050) | O_ACCMODE = 0x3 constant O_APPEND (line 1051) | O_APPEND = 0x8 constant O_ASYNC (line 1052) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1053) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1054) | O_CREAT = 0x200 constant O_DIRECT (line 1055) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1056) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1057) | O_EXCL = 0x800 constant O_EXEC (line 1058) | O_EXEC = 0x40000 constant O_EXLOCK (line 1059) | O_EXLOCK = 0x20 constant O_FSYNC (line 1060) | O_FSYNC = 0x80 constant O_NDELAY (line 1061) | O_NDELAY = 0x4 constant O_NOCTTY (line 1062) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1063) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1064) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1065) | O_RDONLY = 0x0 constant O_RDWR (line 1066) | O_RDWR = 0x2 constant O_SHLOCK (line 1067) | O_SHLOCK = 0x10 constant O_SYNC (line 1068) | O_SYNC = 0x80 constant O_TRUNC (line 1069) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1070) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1071) | O_VERIFY = 0x200000 constant O_WRONLY (line 1072) | O_WRONLY = 0x1 constant PARENB (line 1073) | PARENB = 0x1000 constant PARMRK (line 1074) | PARMRK = 0x8 constant PARODD (line 1075) | PARODD = 0x2000 constant PENDIN (line 1076) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1077) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1078) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1079) | PRIO_USER = 0x2 constant PROT_EXEC (line 1080) | PROT_EXEC = 0x4 constant PROT_NONE (line 1081) | PROT_NONE = 0x0 constant PROT_READ (line 1082) | PROT_READ = 0x1 constant PROT_WRITE (line 1083) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1084) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1085) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1086) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1087) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1088) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1089) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1090) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1091) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1092) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1093) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1094) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1095) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1096) | RTAX_BRD = 0x7 constant RTAX_DST (line 1097) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1098) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1099) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1100) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1101) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1102) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1103) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1104) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1105) | RTA_BRD = 0x80 constant RTA_DST (line 1106) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1107) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1108) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1109) | RTA_IFA = 0x20 constant RTA_IFP (line 1110) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1111) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1112) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1113) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1114) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1115) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1116) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1117) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1118) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1119) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1120) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1121) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1122) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1123) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1124) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1125) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1126) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1127) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1128) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1129) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1130) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1131) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1132) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1133) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1134) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1135) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1136) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1137) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1138) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1139) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1140) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1141) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1142) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1143) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1144) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1145) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1146) | RTM_LOSING = 0x5 constant RTM_MISS (line 1147) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1148) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1149) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1150) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1151) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1152) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1153) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1154) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1155) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1156) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1157) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1158) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1159) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1160) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1161) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1162) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1163) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1164) | RT_BLACKHOLE = 0x40 constant RT_CACHING_CONTEXT (line 1165) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1166) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1167) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1168) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1169) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1170) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1171) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1172) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1173) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1174) | RT_MAY_LOOP_BIT = 0x3 constant RT_NORTREF (line 1175) | RT_NORTREF = 0x2 constant RT_REJECT (line 1176) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1177) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1178) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1179) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1180) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1181) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1182) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1183) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1184) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1185) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1186) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1187) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1188) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1189) | SIOCAIFGROUP = 0x80286987 constant SIOCATMARK (line 1190) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1191) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1192) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1193) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1194) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1195) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1196) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1197) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1198) | SIOCGHIWAT = 0x40047301 constant SIOCGI2C (line 1199) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1200) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1201) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1202) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1203) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDESCR (line 1204) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1205) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1206) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1207) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1208) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1209) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1210) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFINDEX (line 1211) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1212) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1213) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1214) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1215) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1216) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1217) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1218) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1219) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1220) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1221) | SIOCGIFXMEDIA = 0xc030698b constant SIOCGLOWAT (line 1222) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1223) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1224) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1225) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1226) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1227) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1228) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1229) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1230) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1231) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1232) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1233) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1234) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1235) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1236) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1237) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1238) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1239) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1240) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1241) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1242) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1243) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1244) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1245) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1246) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1247) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1248) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1249) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1250) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1251) | SIOCSIFVNET = 0xc020695a constant SIOCSLOWAT (line 1252) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1253) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1254) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1255) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1256) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1257) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1258) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1259) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1260) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1261) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1262) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1263) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1264) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1265) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1266) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1267) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1268) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1269) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1270) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1271) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1272) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1273) | SO_LABEL = 0x1009 constant SO_LINGER (line 1274) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1275) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1276) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1277) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1278) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1279) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1280) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1281) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1282) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1283) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1284) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1285) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1286) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1287) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1288) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1289) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1290) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1291) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1292) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1293) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1294) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1295) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1296) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1297) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1298) | SO_VENDOR = 0x80000000 constant TAB0 (line 1299) | TAB0 = 0x0 constant TAB3 (line 1300) | TAB3 = 0x4 constant TABDLY (line 1301) | TABDLY = 0x4 constant TCIFLUSH (line 1302) | TCIFLUSH = 0x1 constant TCIOFF (line 1303) | TCIOFF = 0x3 constant TCIOFLUSH (line 1304) | TCIOFLUSH = 0x3 constant TCION (line 1305) | TCION = 0x4 constant TCOFLUSH (line 1306) | TCOFLUSH = 0x2 constant TCOOFF (line 1307) | TCOOFF = 0x1 constant TCOON (line 1308) | TCOON = 0x2 constant TCP_CA_NAME_MAX (line 1309) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1310) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1311) | TCP_CONGESTION = 0x40 constant TCP_FASTOPEN (line 1312) | TCP_FASTOPEN = 0x401 constant TCP_FUNCTION_BLK (line 1313) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1314) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1315) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1316) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1317) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1318) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1319) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1320) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1321) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1322) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1323) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1324) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1325) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1326) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1327) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1328) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1329) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1330) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1331) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1332) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1333) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1334) | TCP_PCAP_OUT = 0x800 constant TCP_VENDOR (line 1335) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1336) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1337) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1338) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1339) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1340) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1341) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1342) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1343) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1344) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1345) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1346) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1347) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1348) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1349) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1350) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1351) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1352) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1353) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1354) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1355) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1356) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1357) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1358) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1359) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1360) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1361) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1362) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1363) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1364) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1365) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1366) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1367) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1368) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1369) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1370) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1371) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1372) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1373) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1374) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1375) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1376) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1377) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1378) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1379) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1380) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1381) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1382) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1383) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1384) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1385) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1386) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1387) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1388) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1389) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1390) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1391) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1392) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1393) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1394) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1395) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1396) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1397) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1398) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1399) | TOSTOP = 0x400000 constant VDISCARD (line 1400) | VDISCARD = 0xf constant VDSUSP (line 1401) | VDSUSP = 0xb constant VEOF (line 1402) | VEOF = 0x0 constant VEOL (line 1403) | VEOL = 0x1 constant VEOL2 (line 1404) | VEOL2 = 0x2 constant VERASE (line 1405) | VERASE = 0x3 constant VERASE2 (line 1406) | VERASE2 = 0x7 constant VINTR (line 1407) | VINTR = 0x8 constant VKILL (line 1408) | VKILL = 0x5 constant VLNEXT (line 1409) | VLNEXT = 0xe constant VMIN (line 1410) | VMIN = 0x10 constant VQUIT (line 1411) | VQUIT = 0x9 constant VREPRINT (line 1412) | VREPRINT = 0x6 constant VSTART (line 1413) | VSTART = 0xc constant VSTATUS (line 1414) | VSTATUS = 0x12 constant VSTOP (line 1415) | VSTOP = 0xd constant VSUSP (line 1416) | VSUSP = 0xa constant VTIME (line 1417) | VTIME = 0x11 constant VWERASE (line 1418) | VWERASE = 0x4 constant WCONTINUED (line 1419) | WCONTINUED = 0x4 constant WCOREFLAG (line 1420) | WCOREFLAG = 0x80 constant WEXITED (line 1421) | WEXITED = 0x10 constant WLINUXCLONE (line 1422) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1423) | WNOHANG = 0x1 constant WNOWAIT (line 1424) | WNOWAIT = 0x8 constant WSTOPPED (line 1425) | WSTOPPED = 0x2 constant WTRAPPED (line 1426) | WTRAPPED = 0x20 constant WUNTRACED (line 1427) | WUNTRACED = 0x2 constant E2BIG (line 1432) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1433) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1434) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1435) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1436) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1437) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1438) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1439) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1440) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1441) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1442) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1443) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1444) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1445) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1446) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1447) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1448) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1449) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1450) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1451) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1452) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1453) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1454) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1455) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1456) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1457) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1458) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1459) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1460) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1461) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1462) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1463) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1464) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1465) | EINVAL = syscall.Errno(0x16) constant EIO (line 1466) | EIO = syscall.Errno(0x5) constant EISCONN (line 1467) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1468) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1469) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1470) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1471) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1472) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1473) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1474) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1475) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1476) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1477) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1478) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1479) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1480) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1481) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1482) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1483) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1484) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1485) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1486) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1487) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1488) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1489) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1490) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1491) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1492) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1493) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1494) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1495) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1496) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1497) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1498) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1499) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1500) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1501) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1502) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1503) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1504) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1505) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1506) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1507) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1508) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1509) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1510) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1511) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1512) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1513) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1514) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1515) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1516) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1517) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1518) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1519) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1520) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1521) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1522) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1523) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1524) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1525) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1526) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1527) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1528) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1529) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1530) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1535) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1536) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1537) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1538) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1539) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1540) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1541) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1542) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1543) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1544) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1545) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1546) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1547) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1548) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1549) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1550) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1551) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1552) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1553) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1554) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1555) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1556) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1557) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1558) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1559) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1560) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1561) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1562) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1563) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1564) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1565) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1566) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1567) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1568) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1569) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x23 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 18) | AF_CCITT = 0xa constant AF_CHAOS (line 19) | AF_CHAOS = 0x5 constant AF_CNT (line 20) | AF_CNT = 0x15 constant AF_COIP (line 21) | AF_COIP = 0x14 constant AF_DATAKIT (line 22) | AF_DATAKIT = 0x9 constant AF_DECnet (line 23) | AF_DECnet = 0xc constant AF_DLI (line 24) | AF_DLI = 0xd constant AF_E164 (line 25) | AF_E164 = 0x1a constant AF_ECMA (line 26) | AF_ECMA = 0x8 constant AF_HYLINK (line 27) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 28) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 32) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 33) | AF_INET_SDP = 0x28 constant AF_IPX (line 34) | AF_IPX = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x1a constant AF_ISO (line 36) | AF_ISO = 0x7 constant AF_LAT (line 37) | AF_LAT = 0xe constant AF_LINK (line 38) | AF_LINK = 0x12 constant AF_LOCAL (line 39) | AF_LOCAL = 0x1 constant AF_MAX (line 40) | AF_MAX = 0x2a constant AF_NATM (line 41) | AF_NATM = 0x1d constant AF_NETBIOS (line 42) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 43) | AF_NETGRAPH = 0x20 constant AF_OSI (line 44) | AF_OSI = 0x7 constant AF_PUP (line 45) | AF_PUP = 0x4 constant AF_ROUTE (line 46) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 47) | AF_SCLUSTER = 0x22 constant AF_SIP (line 48) | AF_SIP = 0x18 constant AF_SLOW (line 49) | AF_SLOW = 0x21 constant AF_SNA (line 50) | AF_SNA = 0xb constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 53) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 54) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 55) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 56) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 57) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 58) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 59) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 60) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 61) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 62) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 63) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 64) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 65) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 66) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 67) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 68) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 69) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 70) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 71) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 72) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 73) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 74) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 75) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 76) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 77) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 78) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 79) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 80) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 81) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 82) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 83) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 84) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 85) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 86) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 87) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 88) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 89) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 90) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 91) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 92) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 93) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 94) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 95) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 96) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 97) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 98) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 99) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 100) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 101) | ALTWERASE = 0x200 constant B0 (line 102) | B0 = 0x0 constant B110 (line 103) | B110 = 0x6e constant B115200 (line 104) | B115200 = 0x1c200 constant B1200 (line 105) | B1200 = 0x4b0 constant B134 (line 106) | B134 = 0x86 constant B14400 (line 107) | B14400 = 0x3840 constant B150 (line 108) | B150 = 0x96 constant B1800 (line 109) | B1800 = 0x708 constant B19200 (line 110) | B19200 = 0x4b00 constant B200 (line 111) | B200 = 0xc8 constant B230400 (line 112) | B230400 = 0x38400 constant B2400 (line 113) | B2400 = 0x960 constant B28800 (line 114) | B28800 = 0x7080 constant B300 (line 115) | B300 = 0x12c constant B38400 (line 116) | B38400 = 0x9600 constant B460800 (line 117) | B460800 = 0x70800 constant B4800 (line 118) | B4800 = 0x12c0 constant B50 (line 119) | B50 = 0x32 constant B57600 (line 120) | B57600 = 0xe100 constant B600 (line 121) | B600 = 0x258 constant B7200 (line 122) | B7200 = 0x1c20 constant B75 (line 123) | B75 = 0x4b constant B76800 (line 124) | B76800 = 0x12c00 constant B921600 (line 125) | B921600 = 0xe1000 constant B9600 (line 126) | B9600 = 0x2580 constant BIOCFEEDBACK (line 127) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 128) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 129) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 130) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 131) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 132) | BIOCGDLTLIST = 0xc0084279 constant BIOCGETBUFMODE (line 133) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 134) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 135) | BIOCGETZMAX = 0x4004427f constant BIOCGHDRCMPLT (line 136) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 137) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 138) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 139) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 140) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 141) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 142) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 143) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 144) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 145) | BIOCROTZBUF = 0x400c4280 constant BIOCSBLEN (line 146) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 147) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 148) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 149) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 150) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 151) | BIOCSETFNR = 0x80084282 constant BIOCSETIF (line 152) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 153) | BIOCSETWF = 0x8008427b constant BIOCSETZBUF (line 154) | BIOCSETZBUF = 0x800c4281 constant BIOCSHDRCMPLT (line 155) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 156) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 157) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 158) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 159) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 160) | BIOCVERSION = 0x40044271 constant BPF_A (line 161) | BPF_A = 0x10 constant BPF_ABS (line 162) | BPF_ABS = 0x20 constant BPF_ADD (line 163) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 164) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 165) | BPF_ALU = 0x4 constant BPF_AND (line 166) | BPF_AND = 0x50 constant BPF_B (line 167) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 168) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 169) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 170) | BPF_DIV = 0x30 constant BPF_H (line 171) | BPF_H = 0x8 constant BPF_IMM (line 172) | BPF_IMM = 0x0 constant BPF_IND (line 173) | BPF_IND = 0x40 constant BPF_JA (line 174) | BPF_JA = 0x0 constant BPF_JEQ (line 175) | BPF_JEQ = 0x10 constant BPF_JGE (line 176) | BPF_JGE = 0x30 constant BPF_JGT (line 177) | BPF_JGT = 0x20 constant BPF_JMP (line 178) | BPF_JMP = 0x5 constant BPF_JSET (line 179) | BPF_JSET = 0x40 constant BPF_K (line 180) | BPF_K = 0x0 constant BPF_LD (line 181) | BPF_LD = 0x0 constant BPF_LDX (line 182) | BPF_LDX = 0x1 constant BPF_LEN (line 183) | BPF_LEN = 0x80 constant BPF_LSH (line 184) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 185) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 186) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 187) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 188) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 189) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 190) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 191) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 192) | BPF_MISC = 0x7 constant BPF_MOD (line 193) | BPF_MOD = 0x90 constant BPF_MSH (line 194) | BPF_MSH = 0xa0 constant BPF_MUL (line 195) | BPF_MUL = 0x20 constant BPF_NEG (line 196) | BPF_NEG = 0x80 constant BPF_OR (line 197) | BPF_OR = 0x40 constant BPF_RELEASE (line 198) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 199) | BPF_RET = 0x6 constant BPF_RSH (line 200) | BPF_RSH = 0x70 constant BPF_ST (line 201) | BPF_ST = 0x2 constant BPF_STX (line 202) | BPF_STX = 0x3 constant BPF_SUB (line 203) | BPF_SUB = 0x10 constant BPF_TAX (line 204) | BPF_TAX = 0x0 constant BPF_TXA (line 205) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 206) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 207) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 208) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 209) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 210) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 211) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 212) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 213) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 214) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 215) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 216) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 217) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 218) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 219) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 220) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 221) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 222) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 223) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 224) | BPF_T_NORMAL = 0x0 constant BPF_W (line 225) | BPF_W = 0x0 constant BPF_X (line 226) | BPF_X = 0x8 constant BPF_XOR (line 227) | BPF_XOR = 0xa0 constant BRKINT (line 228) | BRKINT = 0x2 constant CAP_ACCEPT (line 229) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 230) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 231) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 232) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 233) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 234) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 235) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 236) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 237) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 238) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 239) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 240) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 241) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 242) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 243) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 244) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 245) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 246) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 247) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 248) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 249) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 250) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 251) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 252) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 253) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 254) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 255) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 256) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 257) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 258) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 259) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 260) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 261) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 262) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 263) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 264) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 265) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 266) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 267) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 268) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 269) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 270) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 271) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 272) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 273) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 274) | CAP_IOCTLS_ALL = 0x7fffffff constant CAP_KQUEUE (line 275) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 276) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 277) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 278) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 279) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 280) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 281) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 282) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 283) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 284) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 285) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 286) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 287) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 288) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 289) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 290) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 291) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 292) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 293) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 294) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 295) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 296) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 297) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 298) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 299) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 300) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 301) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 302) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 303) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 304) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 305) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 306) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 307) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 308) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 309) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 310) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 311) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 312) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 313) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 314) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 315) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 316) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 317) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 318) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 319) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 320) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 321) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 322) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 323) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 324) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 325) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 326) | CFLUSH = 0xf constant CLOCAL (line 327) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 328) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 329) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 330) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 331) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 332) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 333) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 334) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 335) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 336) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 337) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 338) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 339) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 340) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 341) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 342) | CREAD = 0x800 constant CRTSCTS (line 343) | CRTSCTS = 0x30000 constant CS5 (line 344) | CS5 = 0x0 constant CS6 (line 345) | CS6 = 0x100 constant CS7 (line 346) | CS7 = 0x200 constant CS8 (line 347) | CS8 = 0x300 constant CSIZE (line 348) | CSIZE = 0x300 constant CSTART (line 349) | CSTART = 0x11 constant CSTATUS (line 350) | CSTATUS = 0x14 constant CSTOP (line 351) | CSTOP = 0x13 constant CSTOPB (line 352) | CSTOPB = 0x400 constant CSUSP (line 353) | CSUSP = 0x1a constant CTL_MAXNAME (line 354) | CTL_MAXNAME = 0x18 constant CTL_NET (line 355) | CTL_NET = 0x4 constant DLT_A429 (line 356) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 357) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 358) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 359) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 360) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 361) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 362) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 363) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 364) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 365) | DLT_AURORA = 0x7e constant DLT_AX25 (line 366) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 367) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 368) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 369) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 370) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 371) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 372) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 373) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 374) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 375) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 376) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 377) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 378) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 379) | DLT_CISCO_IOS = 0x76 constant DLT_CLASS_NETBSD_RAWAF (line 380) | DLT_CLASS_NETBSD_RAWAF = 0x2240000 constant DLT_C_HDLC (line 381) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 382) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 383) | DLT_DBUS = 0xe7 constant DLT_DECT (line 384) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 385) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 386) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 387) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 388) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 389) | DLT_EN3MB = 0x2 constant DLT_ENC (line 390) | DLT_ENC = 0x6d constant DLT_EPON (line 391) | DLT_EPON = 0x103 constant DLT_ERF (line 392) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 393) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 394) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 395) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 396) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 397) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 398) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 399) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 400) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 401) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 402) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 403) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 404) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 405) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 406) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 407) | DLT_GSMTAP_UM = 0xd9 constant DLT_IBM_SN (line 408) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 409) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 410) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 411) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 412) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 413) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 414) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 415) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 416) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 417) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 418) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 419) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 420) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 421) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 422) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 423) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 424) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 425) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 426) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 427) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 428) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 429) | DLT_IP_OVER_FC = 0x7a constant DLT_ISO_14443 (line 430) | DLT_ISO_14443 = 0x108 constant DLT_JUNIPER_ATM1 (line 431) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 432) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 433) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 434) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 435) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 436) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 437) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 438) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 439) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 440) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 441) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 442) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 443) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 444) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 445) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 446) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 447) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 448) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 449) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 450) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 451) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 452) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 453) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 454) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 455) | DLT_LAPD = 0xcb constant DLT_LIN (line 456) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 457) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 458) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 459) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 460) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 461) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 462) | DLT_LOOP = 0x6c constant DLT_LTALK (line 463) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 464) | DLT_MATCHING_MAX = 0x109 constant DLT_MATCHING_MIN (line 465) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 466) | DLT_MFR = 0xb6 constant DLT_MOST (line 467) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 468) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 469) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 470) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 471) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 472) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 473) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 474) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 475) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 476) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 477) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 478) | DLT_NFLOG = 0xef constant DLT_NG40 (line 479) | DLT_NG40 = 0xf4 constant DLT_NULL (line 480) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 481) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 482) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 483) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 484) | DLT_PKTAP = 0x102 constant DLT_PPI (line 485) | DLT_PPI = 0xc0 constant DLT_PPP (line 486) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 487) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 488) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 489) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 490) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 491) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 492) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 493) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 494) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 495) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 496) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 497) | DLT_RAW = 0xc constant DLT_RDS (line 498) | DLT_RDS = 0x109 constant DLT_REDBACK_SMARTEDGE (line 499) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 500) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 501) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 502) | DLT_SCCP = 0x8e constant DLT_SCTP (line 503) | DLT_SCTP = 0xf8 constant DLT_SITA (line 504) | DLT_SITA = 0xc4 constant DLT_SLIP (line 505) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 506) | DLT_SLIP_BSDOS = 0xd constant DLT_STANAG_5066_D_PDU (line 507) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 508) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 509) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 510) | DLT_TZSP = 0x80 constant DLT_USB (line 511) | DLT_USB = 0xba constant DLT_USBPCAP (line 512) | DLT_USBPCAP = 0xf9 constant DLT_USB_FREEBSD (line 513) | DLT_USB_FREEBSD = 0xba constant DLT_USB_LINUX (line 514) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 515) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 516) | DLT_USER0 = 0x93 constant DLT_USER1 (line 517) | DLT_USER1 = 0x94 constant DLT_USER10 (line 518) | DLT_USER10 = 0x9d constant DLT_USER11 (line 519) | DLT_USER11 = 0x9e constant DLT_USER12 (line 520) | DLT_USER12 = 0x9f constant DLT_USER13 (line 521) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 522) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 523) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 524) | DLT_USER2 = 0x95 constant DLT_USER3 (line 525) | DLT_USER3 = 0x96 constant DLT_USER4 (line 526) | DLT_USER4 = 0x97 constant DLT_USER5 (line 527) | DLT_USER5 = 0x98 constant DLT_USER6 (line 528) | DLT_USER6 = 0x99 constant DLT_USER7 (line 529) | DLT_USER7 = 0x9a constant DLT_USER8 (line 530) | DLT_USER8 = 0x9b constant DLT_USER9 (line 531) | DLT_USER9 = 0x9c constant DLT_WATTSTOPPER_DLM (line 532) | DLT_WATTSTOPPER_DLM = 0x107 constant DLT_WIHART (line 533) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 534) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 535) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 536) | DLT_X2E_XORAYA = 0xd6 constant DLT_ZWAVE_R1_R2 (line 537) | DLT_ZWAVE_R1_R2 = 0x105 constant DLT_ZWAVE_R3 (line 538) | DLT_ZWAVE_R3 = 0x106 constant DT_BLK (line 539) | DT_BLK = 0x6 constant DT_CHR (line 540) | DT_CHR = 0x2 constant DT_DIR (line 541) | DT_DIR = 0x4 constant DT_FIFO (line 542) | DT_FIFO = 0x1 constant DT_LNK (line 543) | DT_LNK = 0xa constant DT_REG (line 544) | DT_REG = 0x8 constant DT_SOCK (line 545) | DT_SOCK = 0xc constant DT_UNKNOWN (line 546) | DT_UNKNOWN = 0x0 constant DT_WHT (line 547) | DT_WHT = 0xe constant ECHO (line 548) | ECHO = 0x8 constant ECHOCTL (line 549) | ECHOCTL = 0x40 constant ECHOE (line 550) | ECHOE = 0x2 constant ECHOK (line 551) | ECHOK = 0x4 constant ECHOKE (line 552) | ECHOKE = 0x1 constant ECHONL (line 553) | ECHONL = 0x10 constant ECHOPRT (line 554) | ECHOPRT = 0x20 constant EVFILT_AIO (line 555) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 556) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 557) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 558) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 559) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 560) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 561) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 562) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 563) | EVFILT_SYSCOUNT = 0xc constant EVFILT_TIMER (line 564) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 565) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 566) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 567) | EVFILT_WRITE = -0x2 constant EV_ADD (line 568) | EV_ADD = 0x1 constant EV_CLEAR (line 569) | EV_CLEAR = 0x20 constant EV_DELETE (line 570) | EV_DELETE = 0x2 constant EV_DISABLE (line 571) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 572) | EV_DISPATCH = 0x80 constant EV_DROP (line 573) | EV_DROP = 0x1000 constant EV_ENABLE (line 574) | EV_ENABLE = 0x4 constant EV_EOF (line 575) | EV_EOF = 0x8000 constant EV_ERROR (line 576) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 577) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 578) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 579) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 580) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 581) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 582) | EV_SYSFLAGS = 0xf000 constant EXTA (line 583) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 584) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 585) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 586) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 587) | EXTB = 0x9600 constant EXTPROC (line 588) | EXTPROC = 0x800 constant FD_CLOEXEC (line 589) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 590) | FD_SETSIZE = 0x400 constant FLUSHO (line 591) | FLUSHO = 0x800000 constant F_CANCEL (line 592) | F_CANCEL = 0x5 constant F_DUP2FD (line 593) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 594) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 595) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 596) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 597) | F_GETFD = 0x1 constant F_GETFL (line 598) | F_GETFL = 0x3 constant F_GETLK (line 599) | F_GETLK = 0xb constant F_GETOWN (line 600) | F_GETOWN = 0x5 constant F_OGETLK (line 601) | F_OGETLK = 0x7 constant F_OK (line 602) | F_OK = 0x0 constant F_OSETLK (line 603) | F_OSETLK = 0x8 constant F_OSETLKW (line 604) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 605) | F_RDAHEAD = 0x10 constant F_RDLCK (line 606) | F_RDLCK = 0x1 constant F_READAHEAD (line 607) | F_READAHEAD = 0xf constant F_SETFD (line 608) | F_SETFD = 0x2 constant F_SETFL (line 609) | F_SETFL = 0x4 constant F_SETLK (line 610) | F_SETLK = 0xc constant F_SETLKW (line 611) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 612) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 613) | F_SETOWN = 0x6 constant F_UNLCK (line 614) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 615) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 616) | F_WRLCK = 0x3 constant HUPCL (line 617) | HUPCL = 0x4000 constant ICANON (line 618) | ICANON = 0x100 constant ICMP6_FILTER (line 619) | ICMP6_FILTER = 0x12 constant ICRNL (line 620) | ICRNL = 0x100 constant IEXTEN (line 621) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 622) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 623) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 624) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 625) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 626) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 627) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 628) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 629) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 630) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 631) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 632) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 633) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 634) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 635) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 636) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 637) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 638) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 639) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 640) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 641) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 642) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 643) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 644) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 645) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 646) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 647) | IFF_STATICARP = 0x80000 constant IFF_UP (line 648) | IFF_UP = 0x1 constant IFNAMSIZ (line 649) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 650) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 651) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 652) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 653) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 654) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 655) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 656) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 657) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 658) | IGNBRK = 0x1 constant IGNCR (line 659) | IGNCR = 0x80 constant IGNPAR (line 660) | IGNPAR = 0x4 constant IMAXBEL (line 661) | IMAXBEL = 0x2000 constant INLCR (line 662) | INLCR = 0x40 constant INPCK (line 663) | INPCK = 0x10 constant IN_CLASSA_HOST (line 664) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 665) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 666) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 667) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 668) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 669) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 670) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 671) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 672) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 673) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 674) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 675) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 676) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 677) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 678) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 679) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 680) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 681) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 682) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 683) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 684) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 685) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 686) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 687) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 688) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 689) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 690) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 691) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 692) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 693) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 694) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 695) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 696) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 697) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 698) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 699) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 700) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 701) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 702) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 703) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 704) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 705) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 706) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 707) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 708) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 709) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 710) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 711) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 712) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 713) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 714) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 715) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 716) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 717) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 718) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 719) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 720) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 721) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 722) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 723) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 724) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 725) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 726) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 727) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 728) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 729) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 730) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 731) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 732) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 733) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 734) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 735) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 736) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 737) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 738) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 739) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 740) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 741) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 742) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 743) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 744) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 745) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 746) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 747) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 748) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 749) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 750) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 751) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 752) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 753) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 754) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 755) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 756) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 757) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 758) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 759) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 760) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 761) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 762) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 763) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 764) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 765) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 766) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 767) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 768) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 769) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 770) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 771) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 772) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 773) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 774) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 775) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 776) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 777) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 778) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 779) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 780) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 781) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 782) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 783) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 784) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 785) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 786) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 787) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 788) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 789) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 790) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 791) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 792) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 793) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 794) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 795) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 796) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 797) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 798) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 799) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 800) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 801) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 802) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 803) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 804) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 805) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 806) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 807) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 808) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 809) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 810) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 811) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 812) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 813) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 814) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 815) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 816) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 817) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 818) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 819) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 820) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 821) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 822) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 823) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 824) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 825) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 826) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 827) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 828) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 829) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 830) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 831) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 832) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 833) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 834) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 835) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 836) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 837) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 838) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 839) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 840) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 841) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 842) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 843) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 844) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 845) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 846) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 847) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 848) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 849) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 850) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 851) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 852) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 853) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 854) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 855) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 856) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 857) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 858) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 859) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 860) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 861) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 862) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 863) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 864) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 865) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 866) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 867) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 868) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 869) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 870) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 871) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 872) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 873) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 874) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 875) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 876) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 877) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 878) | IP_DF = 0x4000 constant IP_DONTFRAG (line 879) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 880) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 881) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 882) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 883) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 884) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 885) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 886) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 887) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 888) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 889) | IP_FW3 = 0x30 constant IP_FW_ADD (line 890) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 891) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 892) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 893) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 894) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 895) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 896) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 897) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 898) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 899) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 900) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 901) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 902) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 903) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 904) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 905) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 906) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 907) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 908) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 909) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 910) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 911) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 912) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 913) | IP_MF = 0x2000 constant IP_MINTTL (line 914) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 915) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 916) | IP_MSFILTER = 0x4a constant IP_MSS (line 917) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 918) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 919) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 920) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 921) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 922) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 923) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 924) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 925) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 926) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 927) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 928) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 929) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 930) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 931) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 932) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 933) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 934) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 935) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 936) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 937) | IP_RETOPTS = 0x8 constant IP_RF (line 938) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 939) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 940) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 941) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 942) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 943) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 944) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 945) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 946) | IP_TOS = 0x3 constant IP_TTL (line 947) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 948) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 949) | ISIG = 0x80 constant ISTRIP (line 950) | ISTRIP = 0x20 constant IXANY (line 951) | IXANY = 0x800 constant IXOFF (line 952) | IXOFF = 0x400 constant IXON (line 953) | IXON = 0x200 constant LOCK_EX (line 954) | LOCK_EX = 0x2 constant LOCK_NB (line 955) | LOCK_NB = 0x4 constant LOCK_SH (line 956) | LOCK_SH = 0x1 constant LOCK_UN (line 957) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 958) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 959) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 960) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 961) | MADV_FREE = 0x5 constant MADV_NOCORE (line 962) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 963) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 964) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 965) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 966) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 967) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 968) | MADV_WILLNEED = 0x3 constant MAP_ALIGNED_SUPER (line 969) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 970) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 971) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 972) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 973) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 974) | MAP_COPY = 0x2 constant MAP_EXCL (line 975) | MAP_EXCL = 0x4000 constant MAP_FILE (line 976) | MAP_FILE = 0x0 constant MAP_FIXED (line 977) | MAP_FIXED = 0x10 constant MAP_GUARD (line 978) | MAP_GUARD = 0x2000 constant MAP_HASSEMAPHORE (line 979) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 980) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 981) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 982) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 983) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 984) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 985) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 986) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 987) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 988) | MAP_SHARED = 0x1 constant MAP_STACK (line 989) | MAP_STACK = 0x400 constant MCL_CURRENT (line 990) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 991) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 992) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 993) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 994) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 995) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 996) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 997) | MSG_EOF = 0x100 constant MSG_EOR (line 998) | MSG_EOR = 0x8 constant MSG_NBIO (line 999) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1000) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1001) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1002) | MSG_OOB = 0x1 constant MSG_PEEK (line 1003) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1004) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1005) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 1006) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 1007) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1008) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1009) | MS_SYNC = 0x0 constant NAME_MAX (line 1010) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1011) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1012) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1013) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1014) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1015) | NET_RT_IFMALIST = 0x4 constant NOFLSH (line 1016) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1017) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1018) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1019) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1020) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1021) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1022) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1023) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1024) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1025) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1026) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1027) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1028) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1029) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1030) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1031) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1032) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1033) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1034) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1035) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1036) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1037) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1038) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1039) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1040) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1041) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1042) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1043) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1044) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1045) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1046) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1047) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1048) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1049) | NOTE_WRITE = 0x2 constant OCRNL (line 1050) | OCRNL = 0x10 constant ONLCR (line 1051) | ONLCR = 0x2 constant ONLRET (line 1052) | ONLRET = 0x40 constant ONOCR (line 1053) | ONOCR = 0x20 constant ONOEOT (line 1054) | ONOEOT = 0x8 constant OPOST (line 1055) | OPOST = 0x1 constant OXTABS (line 1056) | OXTABS = 0x4 constant O_ACCMODE (line 1057) | O_ACCMODE = 0x3 constant O_APPEND (line 1058) | O_APPEND = 0x8 constant O_ASYNC (line 1059) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1060) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1061) | O_CREAT = 0x200 constant O_DIRECT (line 1062) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1063) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1064) | O_EXCL = 0x800 constant O_EXEC (line 1065) | O_EXEC = 0x40000 constant O_EXLOCK (line 1066) | O_EXLOCK = 0x20 constant O_FSYNC (line 1067) | O_FSYNC = 0x80 constant O_NDELAY (line 1068) | O_NDELAY = 0x4 constant O_NOCTTY (line 1069) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1070) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1071) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1072) | O_RDONLY = 0x0 constant O_RDWR (line 1073) | O_RDWR = 0x2 constant O_SHLOCK (line 1074) | O_SHLOCK = 0x10 constant O_SYNC (line 1075) | O_SYNC = 0x80 constant O_TRUNC (line 1076) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1077) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1078) | O_VERIFY = 0x200000 constant O_WRONLY (line 1079) | O_WRONLY = 0x1 constant PARENB (line 1080) | PARENB = 0x1000 constant PARMRK (line 1081) | PARMRK = 0x8 constant PARODD (line 1082) | PARODD = 0x2000 constant PENDIN (line 1083) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1084) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1085) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1086) | PRIO_USER = 0x2 constant PROT_EXEC (line 1087) | PROT_EXEC = 0x4 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1091) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1092) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1093) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1094) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1095) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1096) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1097) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1098) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1099) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1100) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1101) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1102) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1103) | RTAX_BRD = 0x7 constant RTAX_DST (line 1104) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1105) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1106) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1107) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1108) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1109) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1110) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1111) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1112) | RTA_BRD = 0x80 constant RTA_DST (line 1113) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1114) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1115) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1116) | RTA_IFA = 0x20 constant RTA_IFP (line 1117) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1118) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1119) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1120) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1121) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1122) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1123) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1124) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1125) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1126) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1127) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1128) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1129) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1130) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1131) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1132) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1133) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1134) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1135) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1136) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1137) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1138) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1139) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1140) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1141) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1142) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1143) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1144) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1145) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1146) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1147) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1148) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1149) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1150) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1151) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1152) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1153) | RTM_LOSING = 0x5 constant RTM_MISS (line 1154) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1155) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1156) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1157) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1158) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1159) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1160) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1161) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1162) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1163) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1164) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1165) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1166) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1167) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1168) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1169) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1170) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1171) | RT_BLACKHOLE = 0x40 constant RT_CACHING_CONTEXT (line 1172) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1173) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1174) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1175) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1176) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1177) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1178) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1179) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1180) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1181) | RT_MAY_LOOP_BIT = 0x3 constant RT_NORTREF (line 1182) | RT_NORTREF = 0x2 constant RT_REJECT (line 1183) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1184) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1185) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1186) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1187) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1188) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1189) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1190) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1191) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1192) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1193) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1194) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1195) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1196) | SIOCAIFGROUP = 0x80246987 constant SIOCATMARK (line 1197) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1198) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1199) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1200) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1201) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1202) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETSGCNT (line 1203) | SIOCGETSGCNT = 0xc0147210 constant SIOCGETVIFCNT (line 1204) | SIOCGETVIFCNT = 0xc014720f constant SIOCGHIWAT (line 1205) | SIOCGHIWAT = 0x40047301 constant SIOCGHWADDR (line 1206) | SIOCGHWADDR = 0xc020693e constant SIOCGI2C (line 1207) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1208) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1209) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1210) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1211) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDESCR (line 1212) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1213) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1214) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1215) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1216) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1217) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1218) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFINDEX (line 1219) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1220) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1221) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1222) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1223) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1224) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1225) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1226) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1227) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1228) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1229) | SIOCGIFXMEDIA = 0xc028698b constant SIOCGLOWAT (line 1230) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1231) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1232) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1233) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1234) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1235) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1236) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1237) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1238) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSDRVSPEC (line 1239) | SIOCSDRVSPEC = 0x801c697b constant SIOCSHIWAT (line 1240) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1241) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1242) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1243) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1244) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1245) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1246) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1247) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1248) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1249) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1250) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1251) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1252) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1253) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1254) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1255) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1256) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1257) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1258) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1259) | SIOCSIFVNET = 0xc020695a constant SIOCSLOWAT (line 1260) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1261) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1262) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1263) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1264) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1265) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1266) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1267) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1268) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1269) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1270) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1271) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1272) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1273) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1274) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1275) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1276) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1277) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1278) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1279) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1280) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1281) | SO_LABEL = 0x1009 constant SO_LINGER (line 1282) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1283) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1284) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1285) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1286) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1287) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1288) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1289) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1290) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1291) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1292) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1293) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1294) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1295) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1296) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1297) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1298) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1299) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1300) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1301) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1302) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1303) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1304) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1305) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1306) | SO_VENDOR = 0x80000000 constant TAB0 (line 1307) | TAB0 = 0x0 constant TAB3 (line 1308) | TAB3 = 0x4 constant TABDLY (line 1309) | TABDLY = 0x4 constant TCIFLUSH (line 1310) | TCIFLUSH = 0x1 constant TCIOFF (line 1311) | TCIOFF = 0x3 constant TCIOFLUSH (line 1312) | TCIOFLUSH = 0x3 constant TCION (line 1313) | TCION = 0x4 constant TCOFLUSH (line 1314) | TCOFLUSH = 0x2 constant TCOOFF (line 1315) | TCOOFF = 0x1 constant TCOON (line 1316) | TCOON = 0x2 constant TCP_CA_NAME_MAX (line 1317) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1318) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1319) | TCP_CONGESTION = 0x40 constant TCP_FASTOPEN (line 1320) | TCP_FASTOPEN = 0x401 constant TCP_FUNCTION_BLK (line 1321) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1322) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1323) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1324) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1325) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1326) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1327) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1328) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1329) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1330) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1331) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1332) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1333) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1334) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1335) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1336) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1337) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1338) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1339) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1340) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1341) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1342) | TCP_PCAP_OUT = 0x800 constant TCP_VENDOR (line 1343) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1344) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1345) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1346) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1347) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1348) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1349) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1350) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1351) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1352) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1353) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1354) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1355) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1356) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1357) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1358) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1359) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1360) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1361) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1362) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1363) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1364) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1365) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1366) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1367) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1368) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1369) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1370) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1371) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1372) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1373) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1374) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1375) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1376) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1377) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1378) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1379) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1380) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1381) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1382) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1383) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1384) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1385) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1386) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1387) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1388) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1389) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1390) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1391) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1392) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1393) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1394) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1395) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1396) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1397) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1398) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1399) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1400) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1401) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1402) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1403) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1404) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1405) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1406) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1407) | TOSTOP = 0x400000 constant VDISCARD (line 1408) | VDISCARD = 0xf constant VDSUSP (line 1409) | VDSUSP = 0xb constant VEOF (line 1410) | VEOF = 0x0 constant VEOL (line 1411) | VEOL = 0x1 constant VEOL2 (line 1412) | VEOL2 = 0x2 constant VERASE (line 1413) | VERASE = 0x3 constant VERASE2 (line 1414) | VERASE2 = 0x7 constant VINTR (line 1415) | VINTR = 0x8 constant VKILL (line 1416) | VKILL = 0x5 constant VLNEXT (line 1417) | VLNEXT = 0xe constant VMIN (line 1418) | VMIN = 0x10 constant VQUIT (line 1419) | VQUIT = 0x9 constant VREPRINT (line 1420) | VREPRINT = 0x6 constant VSTART (line 1421) | VSTART = 0xc constant VSTATUS (line 1422) | VSTATUS = 0x12 constant VSTOP (line 1423) | VSTOP = 0xd constant VSUSP (line 1424) | VSUSP = 0xa constant VTIME (line 1425) | VTIME = 0x11 constant VWERASE (line 1426) | VWERASE = 0x4 constant WCONTINUED (line 1427) | WCONTINUED = 0x4 constant WCOREFLAG (line 1428) | WCOREFLAG = 0x80 constant WEXITED (line 1429) | WEXITED = 0x10 constant WLINUXCLONE (line 1430) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1431) | WNOHANG = 0x1 constant WNOWAIT (line 1432) | WNOWAIT = 0x8 constant WSTOPPED (line 1433) | WSTOPPED = 0x2 constant WTRAPPED (line 1434) | WTRAPPED = 0x20 constant WUNTRACED (line 1435) | WUNTRACED = 0x2 constant E2BIG (line 1440) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1441) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1442) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1443) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1444) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1445) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1446) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1447) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1448) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1449) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1450) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1451) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1452) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1453) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1454) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1455) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1456) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1457) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1458) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1459) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1460) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1461) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1462) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1463) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1464) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1465) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1466) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1467) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1468) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1469) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1470) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1471) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1472) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1473) | EINVAL = syscall.Errno(0x16) constant EIO (line 1474) | EIO = syscall.Errno(0x5) constant EISCONN (line 1475) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1476) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1477) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1478) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1479) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1480) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1481) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1482) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1483) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1484) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1485) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1486) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1487) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1488) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1489) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1490) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1491) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1492) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1493) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1494) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1495) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1496) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1497) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1498) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1499) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1500) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1501) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1502) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1503) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1504) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1505) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1506) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1507) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1508) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1509) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1510) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1511) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1512) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1513) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1514) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1515) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1516) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1517) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1518) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1519) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1520) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1521) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1522) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1523) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1524) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1525) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1526) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1527) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1528) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1529) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1530) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1531) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1532) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1533) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1534) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1535) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1536) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1537) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1538) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1543) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1544) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1545) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1546) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1547) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1548) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1549) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1550) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1551) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1552) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1553) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1554) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1555) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1556) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1557) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1558) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1559) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1560) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1561) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1562) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1563) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1564) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1565) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1566) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1567) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1568) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1569) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1570) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1571) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1572) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1573) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1574) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1575) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1576) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1577) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_386.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x80041270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x40041271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x1265 constant BLKFRASET (line 168) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x80041272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x127b constant BLKRAGET (line 172) | BLKRAGET = 0x1263 constant BLKRASET (line 173) | BLKRASET = 0x1262 constant BLKROGET (line 174) | BLKROGET = 0x125e constant BLKROSET (line 175) | BLKROSET = 0x125d constant BLKRRPART (line 176) | BLKRRPART = 0x125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x1268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x1000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0xc constant F_GETLK64 (line 481) | F_GETLK64 = 0xc constant F_GETOWN (line 482) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0xd constant F_SETLK64 (line 497) | F_SETLK64 = 0xd constant F_SETLKW (line 498) | F_SETLKW = 0xe constant F_SETLKW64 (line 499) | F_SETLKW64 = 0xe constant F_SETOWN (line 500) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 840) | MAP_32BIT = 0x40 constant MAP_ANON (line 841) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 842) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 843) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 844) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 845) | MAP_FILE = 0x0 constant MAP_FIXED (line 846) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 847) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 848) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 849) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 850) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 851) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 852) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 853) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 854) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 855) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x20000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x400 constant O_ASYNC (line 994) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x40 constant O_DIRECT (line 997) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 999) | O_DSYNC = 0x1000 constant O_EXCL (line 1000) | O_EXCL = 0x80 constant O_FSYNC (line 1001) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x8000 constant O_NDELAY (line 1003) | O_NDELAY = 0x800 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x800 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x101000 constant O_SYNC (line 1012) | O_SYNC = 0x101000 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x80042407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x40042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = 0xffffffff constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1185) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1186) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1187) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1188) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1189) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1190) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1191) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1192) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1193) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1194) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1195) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1197) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPXREGS (line 1198) | PTRACE_GETFPXREGS = 0x12 constant PTRACE_GETREGS (line 1199) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1200) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1201) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1202) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1203) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_INTERRUPT (line 1204) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1205) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1206) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1207) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1208) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1209) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1210) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1211) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1212) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1213) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1214) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1215) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1216) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1217) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1218) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1219) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1220) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1221) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1222) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1223) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1224) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1225) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1226) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1227) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1228) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1229) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPXREGS (line 1230) | PTRACE_SETFPXREGS = 0x13 constant PTRACE_SETOPTIONS (line 1231) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1232) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1233) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1234) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1235) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1236) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SINGLEBLOCK (line 1237) | PTRACE_SINGLEBLOCK = 0x21 constant PTRACE_SINGLESTEP (line 1238) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1239) | PTRACE_SYSCALL = 0x18 constant PTRACE_SYSEMU (line 1240) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 1241) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant PTRACE_TRACEME (line 1242) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1243) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1244) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1245) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1246) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1247) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1248) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1249) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1250) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1251) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1252) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1253) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1254) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1255) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1256) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1257) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1258) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1259) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1260) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1261) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1262) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1263) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1264) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1265) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1266) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1267) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1268) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1269) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1270) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1271) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1272) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1273) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1274) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1275) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1276) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1277) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1278) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1279) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1280) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1281) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1282) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1283) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1284) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1285) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1286) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1287) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1288) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1289) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1290) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1291) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1292) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1293) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1294) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1295) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1296) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1297) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1298) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1299) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1300) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1301) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1302) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1303) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1304) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1305) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1306) | RTF_MSS = 0x40 constant RTF_MTU (line 1307) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1308) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1309) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1310) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1311) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1312) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1313) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1314) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1315) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1316) | RTF_STATIC = 0x400 constant RTF_THROW (line 1317) | RTF_THROW = 0x2000 constant RTF_UP (line 1318) | RTF_UP = 0x1 constant RTF_WINDOW (line 1319) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1320) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1321) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1322) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1323) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1324) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1325) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1326) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1327) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1328) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1329) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1330) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1331) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1332) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1333) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1334) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1335) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1336) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1337) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1338) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1339) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1340) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1341) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1342) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1343) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1344) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1345) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1346) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1347) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1348) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1349) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1350) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1351) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1352) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1353) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1354) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1355) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1356) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1357) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1358) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1359) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1360) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1361) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1362) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1363) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1364) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1365) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1366) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1367) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1368) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1369) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1370) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1371) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1372) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1373) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1374) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1375) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1376) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1377) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1378) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1379) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1380) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1381) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1382) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1383) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1384) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1385) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1386) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1387) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1388) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1389) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1390) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1391) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1392) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1393) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1394) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1395) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1396) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1397) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1398) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1399) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1400) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1401) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1402) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1403) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1404) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1405) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1406) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1407) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1408) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1409) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1410) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1411) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1412) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1413) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1414) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1415) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1416) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1417) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1418) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1419) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1420) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1421) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1422) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1423) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1424) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1425) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1426) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1427) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1428) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1429) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1430) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1431) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1432) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1433) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1434) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1435) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1436) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1437) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1438) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1439) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1440) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1441) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1442) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1443) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1444) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1445) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1446) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1447) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1448) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1449) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1450) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1451) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1452) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1453) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1454) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1455) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1456) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1457) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1458) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1459) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1460) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1461) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1462) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1463) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1464) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1465) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1466) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1467) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1468) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1469) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1470) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1471) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1472) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1473) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1474) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1475) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1476) | SIOCINQ = 0x541b constant SIOCOUTQ (line 1477) | SIOCOUTQ = 0x5411 constant SIOCOUTQNSD (line 1478) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1479) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1480) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1481) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1482) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1483) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1484) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1485) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1486) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1487) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1488) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1489) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1490) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1491) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1492) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1493) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1494) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1495) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1496) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1497) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1498) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1499) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1500) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1501) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1502) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1503) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1504) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1505) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1506) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1507) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1508) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1509) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1510) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1511) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1512) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1513) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1514) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1515) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1516) | SOL_AAL = 0x109 constant SOL_ALG (line 1517) | SOL_ALG = 0x117 constant SOL_ATM (line 1518) | SOL_ATM = 0x108 constant SOL_CAIF (line 1519) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1520) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1521) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1522) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1523) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1524) | SOL_IP = 0x0 constant SOL_IPV6 (line 1525) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1526) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1527) | SOL_IUCV = 0x115 constant SOL_KCM (line 1528) | SOL_KCM = 0x119 constant SOL_LLC (line 1529) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1530) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1531) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1532) | SOL_NFC = 0x118 constant SOL_PACKET (line 1533) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1534) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1535) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1536) | SOL_RAW = 0xff constant SOL_RDS (line 1537) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1538) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1539) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1540) | SOL_TCP = 0x6 constant SOL_TIPC (line 1541) | SOL_TIPC = 0x10f constant SOL_X25 (line 1542) | SOL_X25 = 0x106 constant SOMAXCONN (line 1543) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1544) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1545) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1546) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1547) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1548) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1549) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1550) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1551) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1552) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1553) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1554) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1555) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1556) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1557) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1558) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1559) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1560) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1561) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1562) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1563) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1564) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1565) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1566) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1567) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1568) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1569) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1570) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1571) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1572) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1573) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1574) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1575) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1576) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1577) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1578) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1579) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1580) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1581) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1582) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1583) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1584) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1585) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1586) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1587) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1588) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1589) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1590) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1591) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1592) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1593) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1594) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1595) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1596) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1597) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1598) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1599) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1600) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1601) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1602) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1603) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1604) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1605) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1606) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1607) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1608) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1609) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1610) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1611) | S_IEXEC = 0x40 constant S_IFBLK (line 1612) | S_IFBLK = 0x6000 constant S_IFCHR (line 1613) | S_IFCHR = 0x2000 constant S_IFDIR (line 1614) | S_IFDIR = 0x4000 constant S_IFIFO (line 1615) | S_IFIFO = 0x1000 constant S_IFLNK (line 1616) | S_IFLNK = 0xa000 constant S_IFMT (line 1617) | S_IFMT = 0xf000 constant S_IFREG (line 1618) | S_IFREG = 0x8000 constant S_IFSOCK (line 1619) | S_IFSOCK = 0xc000 constant S_IREAD (line 1620) | S_IREAD = 0x100 constant S_IRGRP (line 1621) | S_IRGRP = 0x20 constant S_IROTH (line 1622) | S_IROTH = 0x4 constant S_IRUSR (line 1623) | S_IRUSR = 0x100 constant S_IRWXG (line 1624) | S_IRWXG = 0x38 constant S_IRWXO (line 1625) | S_IRWXO = 0x7 constant S_IRWXU (line 1626) | S_IRWXU = 0x1c0 constant S_ISGID (line 1627) | S_ISGID = 0x400 constant S_ISUID (line 1628) | S_ISUID = 0x800 constant S_ISVTX (line 1629) | S_ISVTX = 0x200 constant S_IWGRP (line 1630) | S_IWGRP = 0x10 constant S_IWOTH (line 1631) | S_IWOTH = 0x2 constant S_IWRITE (line 1632) | S_IWRITE = 0x80 constant S_IWUSR (line 1633) | S_IWUSR = 0x80 constant S_IXGRP (line 1634) | S_IXGRP = 0x8 constant S_IXOTH (line 1635) | S_IXOTH = 0x1 constant S_IXUSR (line 1636) | S_IXUSR = 0x40 constant TAB0 (line 1637) | TAB0 = 0x0 constant TAB1 (line 1638) | TAB1 = 0x800 constant TAB2 (line 1639) | TAB2 = 0x1000 constant TAB3 (line 1640) | TAB3 = 0x1800 constant TABDLY (line 1641) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1642) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1643) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1644) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1645) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1646) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1647) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1648) | TCFLSH = 0x540b constant TCGETA (line 1649) | TCGETA = 0x5405 constant TCGETS (line 1650) | TCGETS = 0x5401 constant TCGETS2 (line 1651) | TCGETS2 = 0x802c542a constant TCGETX (line 1652) | TCGETX = 0x5432 constant TCIFLUSH (line 1653) | TCIFLUSH = 0x0 constant TCIOFF (line 1654) | TCIOFF = 0x2 constant TCIOFLUSH (line 1655) | TCIOFLUSH = 0x2 constant TCION (line 1656) | TCION = 0x3 constant TCOFLUSH (line 1657) | TCOFLUSH = 0x1 constant TCOOFF (line 1658) | TCOOFF = 0x0 constant TCOON (line 1659) | TCOON = 0x1 constant TCP_CC_INFO (line 1660) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1661) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1662) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1663) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1664) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1665) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1666) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1667) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1668) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1669) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1670) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1671) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1672) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1673) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1674) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1675) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1676) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1677) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1678) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1679) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1680) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1681) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1682) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1683) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1684) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1685) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1686) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1687) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1688) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1689) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1690) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1691) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1692) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1693) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1694) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1695) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1696) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1697) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1698) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1699) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1700) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1701) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1702) | TCSAFLUSH = 0x2 constant TCSBRK (line 1703) | TCSBRK = 0x5409 constant TCSBRKP (line 1704) | TCSBRKP = 0x5425 constant TCSETA (line 1705) | TCSETA = 0x5406 constant TCSETAF (line 1706) | TCSETAF = 0x5408 constant TCSETAW (line 1707) | TCSETAW = 0x5407 constant TCSETS (line 1708) | TCSETS = 0x5402 constant TCSETS2 (line 1709) | TCSETS2 = 0x402c542b constant TCSETSF (line 1710) | TCSETSF = 0x5404 constant TCSETSF2 (line 1711) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1712) | TCSETSW = 0x5403 constant TCSETSW2 (line 1713) | TCSETSW2 = 0x402c542c constant TCSETX (line 1714) | TCSETX = 0x5433 constant TCSETXF (line 1715) | TCSETXF = 0x5434 constant TCSETXW (line 1716) | TCSETXW = 0x5435 constant TCXONC (line 1717) | TCXONC = 0x540a constant TIOCCBRK (line 1718) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1719) | TIOCCONS = 0x541d constant TIOCEXCL (line 1720) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1721) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1722) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1723) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1724) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1725) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1726) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1727) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1728) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1729) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1730) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1731) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1732) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1733) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1734) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1735) | TIOCINQ = 0x541b constant TIOCLINUX (line 1736) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1737) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1738) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1739) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1740) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1741) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1742) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1743) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1744) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1745) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1746) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1747) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1748) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1749) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1750) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1751) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1752) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1753) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1754) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1755) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1756) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1757) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1758) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1759) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1760) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1761) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1762) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1763) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1764) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1765) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1766) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1767) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1768) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1769) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1770) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1771) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1772) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1773) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1774) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1775) | TIOCSETD = 0x5423 constant TIOCSIG (line 1776) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1777) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1778) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1779) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1780) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1781) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1782) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1783) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1784) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1785) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1786) | TOSTOP = 0x100 constant TS_COMM_LEN (line 1787) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1788) | TUNATTACHFILTER = 0x400854d5 constant TUNDETACHFILTER (line 1789) | TUNDETACHFILTER = 0x400854d6 constant TUNGETFEATURES (line 1790) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1791) | TUNGETFILTER = 0x800854db constant TUNGETIFF (line 1792) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1793) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 1794) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 1795) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 1796) | TUNGETVNETLE = 0x800454dd constant TUNSETDEBUG (line 1797) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1798) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1799) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1800) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1801) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1802) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1803) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1804) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1805) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1806) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1807) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1808) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 1809) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 1810) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 1811) | TUNSETVNETLE = 0x400454dc constant UMOUNT_NOFOLLOW (line 1812) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1813) | VDISCARD = 0xd constant VEOF (line 1814) | VEOF = 0x4 constant VEOL (line 1815) | VEOL = 0xb constant VEOL2 (line 1816) | VEOL2 = 0x10 constant VERASE (line 1817) | VERASE = 0x2 constant VINTR (line 1818) | VINTR = 0x0 constant VKILL (line 1819) | VKILL = 0x3 constant VLNEXT (line 1820) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1821) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1822) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1823) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1824) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1825) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1826) | VMIN = 0x6 constant VM_SOCKETS_INVALID_VERSION (line 1827) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1828) | VQUIT = 0x1 constant VREPRINT (line 1829) | VREPRINT = 0xc constant VSTART (line 1830) | VSTART = 0x8 constant VSTOP (line 1831) | VSTOP = 0x9 constant VSUSP (line 1832) | VSUSP = 0xa constant VSWTC (line 1833) | VSWTC = 0x7 constant VT0 (line 1834) | VT0 = 0x0 constant VT1 (line 1835) | VT1 = 0x4000 constant VTDLY (line 1836) | VTDLY = 0x4000 constant VTIME (line 1837) | VTIME = 0x5 constant VWERASE (line 1838) | VWERASE = 0xe constant WALL (line 1839) | WALL = 0x40000000 constant WCLONE (line 1840) | WCLONE = 0x80000000 constant WCONTINUED (line 1841) | WCONTINUED = 0x8 constant WEXITED (line 1842) | WEXITED = 0x4 constant WNOHANG (line 1843) | WNOHANG = 0x1 constant WNOTHREAD (line 1844) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1845) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1846) | WORDSIZE = 0x20 constant WSTOPPED (line 1847) | WSTOPPED = 0x2 constant WUNTRACED (line 1848) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1849) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1850) | XATTR_REPLACE = 0x2 constant XCASE (line 1851) | XCASE = 0x4 constant XTABS (line 1852) | XTABS = 0x1800 constant E2BIG (line 1857) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1858) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1859) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1860) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1861) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1862) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1863) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1864) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1865) | EBADE = syscall.Errno(0x34) constant EBADF (line 1866) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1867) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1868) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1869) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1870) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1871) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1872) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1873) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1874) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1875) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1876) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1877) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1878) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1879) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1880) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1881) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1882) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1883) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1884) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1885) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1886) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1887) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1888) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1889) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1890) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1891) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1892) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1893) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1894) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1895) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1896) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1897) | EINVAL = syscall.Errno(0x16) constant EIO (line 1898) | EIO = syscall.Errno(0x5) constant EISCONN (line 1899) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1900) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1901) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1902) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1903) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1904) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1905) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1906) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1907) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1908) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1909) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1910) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1911) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1912) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1913) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1914) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1915) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1916) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1917) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1918) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1919) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1920) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1921) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1922) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1923) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1924) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1925) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1926) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1927) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1928) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1929) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1930) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1931) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1932) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1933) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1934) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1935) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1936) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1937) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1938) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1939) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1940) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1941) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1942) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1943) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1944) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1945) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1946) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1947) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1948) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1949) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1950) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1951) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1952) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1953) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1954) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1955) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1956) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1957) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1958) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1959) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1960) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1961) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1962) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1963) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1964) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1965) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1966) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1967) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1968) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1969) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1970) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1971) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1972) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1973) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1974) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1975) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1976) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1977) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1978) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1979) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1980) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1981) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1982) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1983) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1984) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1985) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1986) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1987) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1988) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1989) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1990) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1995) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1996) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1997) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1998) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1999) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 2000) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 2001) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2002) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2003) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2004) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2005) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 2006) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2007) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2008) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2009) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2010) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2011) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2012) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2013) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2014) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2015) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2016) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2017) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2018) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2019) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2020) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2021) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2022) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2023) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2024) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2025) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2026) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2027) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2028) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2029) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x1265 constant BLKFRASET (line 168) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x127b constant BLKRAGET (line 172) | BLKRAGET = 0x1263 constant BLKRASET (line 173) | BLKRASET = 0x1262 constant BLKROGET (line 174) | BLKROGET = 0x125e constant BLKROSET (line 175) | BLKROSET = 0x125d constant BLKRRPART (line 176) | BLKRRPART = 0x125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x1268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x1000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0x5 constant F_GETLK64 (line 481) | F_GETLK64 = 0x5 constant F_GETOWN (line 482) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x6 constant F_SETLK64 (line 497) | F_SETLK64 = 0x6 constant F_SETLKW (line 498) | F_SETLKW = 0x7 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0x7 constant F_SETOWN (line 500) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 840) | MAP_32BIT = 0x40 constant MAP_ANON (line 841) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 842) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 843) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 844) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 845) | MAP_FILE = 0x0 constant MAP_FIXED (line 846) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 847) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 848) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 849) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 850) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 851) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 852) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 853) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 854) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 855) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x20000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x400 constant O_ASYNC (line 994) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x40 constant O_DIRECT (line 997) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 999) | O_DSYNC = 0x1000 constant O_EXCL (line 1000) | O_EXCL = 0x80 constant O_FSYNC (line 1001) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1003) | O_NDELAY = 0x800 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x800 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x101000 constant O_SYNC (line 1012) | O_SYNC = 0x101000 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ARCH_PRCTL (line 1185) | PTRACE_ARCH_PRCTL = 0x1e constant PTRACE_ATTACH (line 1186) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1187) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1188) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1189) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1190) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1191) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1192) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1193) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1194) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1195) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1196) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1197) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1198) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPXREGS (line 1199) | PTRACE_GETFPXREGS = 0x12 constant PTRACE_GETREGS (line 1200) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1201) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1202) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1203) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1204) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_INTERRUPT (line 1205) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1206) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1207) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1208) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1209) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1210) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1211) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1212) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1213) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1214) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1215) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1216) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1217) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1218) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1219) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1220) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1221) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1222) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1223) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1224) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1225) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1226) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1227) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1228) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1229) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1230) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPXREGS (line 1231) | PTRACE_SETFPXREGS = 0x13 constant PTRACE_SETOPTIONS (line 1232) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1233) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1234) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1235) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1236) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1237) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SINGLEBLOCK (line 1238) | PTRACE_SINGLEBLOCK = 0x21 constant PTRACE_SINGLESTEP (line 1239) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1240) | PTRACE_SYSCALL = 0x18 constant PTRACE_SYSEMU (line 1241) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 1242) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant PTRACE_TRACEME (line 1243) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1244) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1245) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1246) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1247) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1248) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1249) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1250) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1251) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1252) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1253) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1254) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1255) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1256) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1257) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1258) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1259) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1260) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1261) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1262) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1263) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1264) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1265) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1266) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1267) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1268) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1269) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1270) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1271) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1272) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1273) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1274) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1275) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1276) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1277) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1278) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1279) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1280) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1281) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1282) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1283) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1284) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1285) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1286) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1287) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1288) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1289) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1290) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1291) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1292) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1293) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1294) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1295) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1296) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1297) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1298) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1299) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1300) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1301) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1302) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1303) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1304) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1305) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1306) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1307) | RTF_MSS = 0x40 constant RTF_MTU (line 1308) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1309) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1310) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1311) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1312) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1313) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1314) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1315) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1316) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1317) | RTF_STATIC = 0x400 constant RTF_THROW (line 1318) | RTF_THROW = 0x2000 constant RTF_UP (line 1319) | RTF_UP = 0x1 constant RTF_WINDOW (line 1320) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1321) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1322) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1323) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1324) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1325) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1326) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1327) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1328) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1329) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1330) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1331) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1332) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1333) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1334) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1335) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1336) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1337) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1338) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1339) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1340) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1341) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1342) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1343) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1344) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1345) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1346) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1347) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1348) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1349) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1350) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1351) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1352) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1353) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1354) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1355) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1356) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1357) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1358) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1359) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1360) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1361) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1362) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1363) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1364) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1365) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1366) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1367) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1368) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1369) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1370) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1371) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1372) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1373) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1374) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1375) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1376) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1377) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1378) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1379) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1380) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1381) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1382) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1383) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1384) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1385) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1386) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1387) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1388) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1389) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1390) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1391) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1392) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1393) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1394) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1395) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1396) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1397) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1398) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1399) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1400) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1401) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1402) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1403) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1404) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1405) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1406) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1407) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1408) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1409) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1410) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1411) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1412) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1413) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1414) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1415) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1416) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1417) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1418) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1419) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1420) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1421) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1422) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1423) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1424) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1425) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1426) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1427) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1428) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1429) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1430) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1431) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1432) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1433) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1434) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1435) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1436) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1437) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1438) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1439) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1440) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1441) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1442) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1443) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1444) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1445) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1446) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1447) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1448) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1449) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1450) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1451) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1452) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1453) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1454) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1455) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1456) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1457) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1458) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1459) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1460) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1461) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1462) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1463) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1464) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1465) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1466) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1467) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1468) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1469) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1470) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1471) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1472) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1473) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1474) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1475) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1476) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1477) | SIOCINQ = 0x541b constant SIOCOUTQ (line 1478) | SIOCOUTQ = 0x5411 constant SIOCOUTQNSD (line 1479) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1480) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1481) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1482) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1483) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1484) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1485) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1486) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1487) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1488) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1489) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1490) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1491) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1492) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1493) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1494) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1495) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1496) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1497) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1498) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1499) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1500) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1501) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1502) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1503) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1504) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1505) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1506) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1507) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1508) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1509) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1510) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1511) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1512) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1513) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1514) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1515) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1516) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1517) | SOL_AAL = 0x109 constant SOL_ALG (line 1518) | SOL_ALG = 0x117 constant SOL_ATM (line 1519) | SOL_ATM = 0x108 constant SOL_CAIF (line 1520) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1521) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1522) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1523) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1524) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1525) | SOL_IP = 0x0 constant SOL_IPV6 (line 1526) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1527) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1528) | SOL_IUCV = 0x115 constant SOL_KCM (line 1529) | SOL_KCM = 0x119 constant SOL_LLC (line 1530) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1531) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1532) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1533) | SOL_NFC = 0x118 constant SOL_PACKET (line 1534) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1535) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1536) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1537) | SOL_RAW = 0xff constant SOL_RDS (line 1538) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1539) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1540) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1541) | SOL_TCP = 0x6 constant SOL_TIPC (line 1542) | SOL_TIPC = 0x10f constant SOL_X25 (line 1543) | SOL_X25 = 0x106 constant SOMAXCONN (line 1544) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1545) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1546) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1547) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1548) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1549) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1550) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1551) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1552) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1553) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1554) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1555) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1556) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1557) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1558) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1559) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1560) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1561) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1562) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1563) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1564) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1565) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1566) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1567) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1568) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1569) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1570) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1571) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1572) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1573) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1574) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1575) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1576) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1577) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1578) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1579) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1580) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1581) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1582) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1583) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1584) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1585) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1586) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1587) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1588) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1589) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1590) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1591) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1592) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1593) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1594) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1595) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1596) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1597) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1598) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1599) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1600) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1601) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1602) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1603) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1604) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1605) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1606) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1607) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1608) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1609) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1610) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1611) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1612) | S_IEXEC = 0x40 constant S_IFBLK (line 1613) | S_IFBLK = 0x6000 constant S_IFCHR (line 1614) | S_IFCHR = 0x2000 constant S_IFDIR (line 1615) | S_IFDIR = 0x4000 constant S_IFIFO (line 1616) | S_IFIFO = 0x1000 constant S_IFLNK (line 1617) | S_IFLNK = 0xa000 constant S_IFMT (line 1618) | S_IFMT = 0xf000 constant S_IFREG (line 1619) | S_IFREG = 0x8000 constant S_IFSOCK (line 1620) | S_IFSOCK = 0xc000 constant S_IREAD (line 1621) | S_IREAD = 0x100 constant S_IRGRP (line 1622) | S_IRGRP = 0x20 constant S_IROTH (line 1623) | S_IROTH = 0x4 constant S_IRUSR (line 1624) | S_IRUSR = 0x100 constant S_IRWXG (line 1625) | S_IRWXG = 0x38 constant S_IRWXO (line 1626) | S_IRWXO = 0x7 constant S_IRWXU (line 1627) | S_IRWXU = 0x1c0 constant S_ISGID (line 1628) | S_ISGID = 0x400 constant S_ISUID (line 1629) | S_ISUID = 0x800 constant S_ISVTX (line 1630) | S_ISVTX = 0x200 constant S_IWGRP (line 1631) | S_IWGRP = 0x10 constant S_IWOTH (line 1632) | S_IWOTH = 0x2 constant S_IWRITE (line 1633) | S_IWRITE = 0x80 constant S_IWUSR (line 1634) | S_IWUSR = 0x80 constant S_IXGRP (line 1635) | S_IXGRP = 0x8 constant S_IXOTH (line 1636) | S_IXOTH = 0x1 constant S_IXUSR (line 1637) | S_IXUSR = 0x40 constant TAB0 (line 1638) | TAB0 = 0x0 constant TAB1 (line 1639) | TAB1 = 0x800 constant TAB2 (line 1640) | TAB2 = 0x1000 constant TAB3 (line 1641) | TAB3 = 0x1800 constant TABDLY (line 1642) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1643) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1644) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1645) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1646) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1647) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1648) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1649) | TCFLSH = 0x540b constant TCGETA (line 1650) | TCGETA = 0x5405 constant TCGETS (line 1651) | TCGETS = 0x5401 constant TCGETS2 (line 1652) | TCGETS2 = 0x802c542a constant TCGETX (line 1653) | TCGETX = 0x5432 constant TCIFLUSH (line 1654) | TCIFLUSH = 0x0 constant TCIOFF (line 1655) | TCIOFF = 0x2 constant TCIOFLUSH (line 1656) | TCIOFLUSH = 0x2 constant TCION (line 1657) | TCION = 0x3 constant TCOFLUSH (line 1658) | TCOFLUSH = 0x1 constant TCOOFF (line 1659) | TCOOFF = 0x0 constant TCOON (line 1660) | TCOON = 0x1 constant TCP_CC_INFO (line 1661) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1662) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1663) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1664) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1665) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1666) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1667) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1668) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1669) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1670) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1671) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1672) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1673) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1674) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1675) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1676) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1677) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1678) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1679) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1680) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1681) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1682) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1683) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1684) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1685) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1686) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1687) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1688) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1689) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1690) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1691) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1692) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1693) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1694) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1695) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1696) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1697) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1698) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1699) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1700) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1701) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1702) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1703) | TCSAFLUSH = 0x2 constant TCSBRK (line 1704) | TCSBRK = 0x5409 constant TCSBRKP (line 1705) | TCSBRKP = 0x5425 constant TCSETA (line 1706) | TCSETA = 0x5406 constant TCSETAF (line 1707) | TCSETAF = 0x5408 constant TCSETAW (line 1708) | TCSETAW = 0x5407 constant TCSETS (line 1709) | TCSETS = 0x5402 constant TCSETS2 (line 1710) | TCSETS2 = 0x402c542b constant TCSETSF (line 1711) | TCSETSF = 0x5404 constant TCSETSF2 (line 1712) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1713) | TCSETSW = 0x5403 constant TCSETSW2 (line 1714) | TCSETSW2 = 0x402c542c constant TCSETX (line 1715) | TCSETX = 0x5433 constant TCSETXF (line 1716) | TCSETXF = 0x5434 constant TCSETXW (line 1717) | TCSETXW = 0x5435 constant TCXONC (line 1718) | TCXONC = 0x540a constant TIOCCBRK (line 1719) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1720) | TIOCCONS = 0x541d constant TIOCEXCL (line 1721) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1722) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1723) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1724) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1725) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1726) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1727) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1728) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1729) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1730) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1731) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1732) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1733) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1734) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1735) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1736) | TIOCINQ = 0x541b constant TIOCLINUX (line 1737) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1738) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1739) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1740) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1741) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1742) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1743) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1744) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1745) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1746) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1747) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1748) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1749) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1750) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1751) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1752) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1753) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1754) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1755) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1756) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1757) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1758) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1759) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1760) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1761) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1762) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1763) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1764) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1765) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1766) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1767) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1768) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1769) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1770) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1771) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1772) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1773) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1774) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1775) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1776) | TIOCSETD = 0x5423 constant TIOCSIG (line 1777) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1778) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1779) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1780) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1781) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1782) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1783) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1784) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1785) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1786) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1787) | TOSTOP = 0x100 constant TS_COMM_LEN (line 1788) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1789) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 1790) | TUNDETACHFILTER = 0x401054d6 constant TUNGETFEATURES (line 1791) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1792) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 1793) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1794) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 1795) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 1796) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 1797) | TUNGETVNETLE = 0x800454dd constant TUNSETDEBUG (line 1798) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1799) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1800) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1801) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1802) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1803) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1804) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1805) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1806) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1807) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1808) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1809) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 1810) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 1811) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 1812) | TUNSETVNETLE = 0x400454dc constant UMOUNT_NOFOLLOW (line 1813) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1814) | VDISCARD = 0xd constant VEOF (line 1815) | VEOF = 0x4 constant VEOL (line 1816) | VEOL = 0xb constant VEOL2 (line 1817) | VEOL2 = 0x10 constant VERASE (line 1818) | VERASE = 0x2 constant VINTR (line 1819) | VINTR = 0x0 constant VKILL (line 1820) | VKILL = 0x3 constant VLNEXT (line 1821) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1822) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1823) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1824) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1825) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1826) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1827) | VMIN = 0x6 constant VM_SOCKETS_INVALID_VERSION (line 1828) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1829) | VQUIT = 0x1 constant VREPRINT (line 1830) | VREPRINT = 0xc constant VSTART (line 1831) | VSTART = 0x8 constant VSTOP (line 1832) | VSTOP = 0x9 constant VSUSP (line 1833) | VSUSP = 0xa constant VSWTC (line 1834) | VSWTC = 0x7 constant VT0 (line 1835) | VT0 = 0x0 constant VT1 (line 1836) | VT1 = 0x4000 constant VTDLY (line 1837) | VTDLY = 0x4000 constant VTIME (line 1838) | VTIME = 0x5 constant VWERASE (line 1839) | VWERASE = 0xe constant WALL (line 1840) | WALL = 0x40000000 constant WCLONE (line 1841) | WCLONE = 0x80000000 constant WCONTINUED (line 1842) | WCONTINUED = 0x8 constant WEXITED (line 1843) | WEXITED = 0x4 constant WNOHANG (line 1844) | WNOHANG = 0x1 constant WNOTHREAD (line 1845) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1846) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1847) | WORDSIZE = 0x40 constant WSTOPPED (line 1848) | WSTOPPED = 0x2 constant WUNTRACED (line 1849) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1850) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1851) | XATTR_REPLACE = 0x2 constant XCASE (line 1852) | XCASE = 0x4 constant XTABS (line 1853) | XTABS = 0x1800 constant E2BIG (line 1858) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1859) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1860) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1861) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1862) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1863) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1864) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1865) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1866) | EBADE = syscall.Errno(0x34) constant EBADF (line 1867) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1868) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1869) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1870) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1871) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1872) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1873) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1874) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1875) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1876) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1877) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1878) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1879) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1880) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1881) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1882) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1883) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1884) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1885) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1886) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1887) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1888) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1889) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1890) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1891) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1892) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1893) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1894) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1895) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1896) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1897) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1898) | EINVAL = syscall.Errno(0x16) constant EIO (line 1899) | EIO = syscall.Errno(0x5) constant EISCONN (line 1900) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1901) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1902) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1903) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1904) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1905) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1906) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1907) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1908) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1909) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1910) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1911) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1912) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1913) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1914) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1915) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1916) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1917) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1918) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1919) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1920) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1921) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1922) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1923) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1924) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1925) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1926) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1927) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1928) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1929) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1930) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1931) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1932) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1933) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1934) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1935) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1936) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1937) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1938) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1939) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1940) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1941) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1942) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1943) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1944) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1945) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1946) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1947) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1948) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1949) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1950) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1951) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1952) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1953) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1954) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1955) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1956) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1957) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1958) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1959) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1960) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1961) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1962) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1963) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1964) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1965) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1966) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1967) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1968) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1969) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1970) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1971) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1972) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1973) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1974) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1975) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1976) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1977) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1978) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1979) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1980) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1981) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1982) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1983) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1984) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1985) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1986) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1987) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1988) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1989) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1990) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1991) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1996) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1997) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1998) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1999) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 2000) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 2001) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 2002) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2003) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2004) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2005) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2006) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 2007) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2008) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2009) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2010) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2011) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2012) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2013) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2014) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2015) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2016) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2017) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2018) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2019) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2020) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2021) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2022) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2023) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2024) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2025) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2026) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2027) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2028) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2029) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2030) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x80041270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x40041271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x1265 constant BLKFRASET (line 168) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x80041272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x127b constant BLKRAGET (line 172) | BLKRAGET = 0x1263 constant BLKRASET (line 173) | BLKRASET = 0x1262 constant BLKROGET (line 174) | BLKROGET = 0x125e constant BLKROSET (line 175) | BLKROSET = 0x125d constant BLKRRPART (line 176) | BLKRRPART = 0x125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x1268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x1000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0xc constant F_GETLK64 (line 481) | F_GETLK64 = 0xc constant F_GETOWN (line 482) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0xd constant F_SETLK64 (line 497) | F_SETLK64 = 0xd constant F_SETLKW (line 498) | F_SETLKW = 0xe constant F_SETLKW64 (line 499) | F_SETLKW64 = 0xe constant F_SETOWN (line 500) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 855) | MAP_SHARED = 0x1 constant MAP_STACK (line 856) | MAP_STACK = 0x20000 constant MAP_TYPE (line 857) | MAP_TYPE = 0xf constant MCL_CURRENT (line 858) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 859) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 860) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 861) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 862) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 863) | MNT_FORCE = 0x1 constant MSG_BATCH (line 864) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 865) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 866) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 867) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 868) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 869) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 870) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 871) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 872) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 873) | MSG_FIN = 0x200 constant MSG_MORE (line 874) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 875) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 876) | MSG_OOB = 0x1 constant MSG_PEEK (line 877) | MSG_PEEK = 0x2 constant MSG_PROXY (line 878) | MSG_PROXY = 0x10 constant MSG_RST (line 879) | MSG_RST = 0x1000 constant MSG_SYN (line 880) | MSG_SYN = 0x400 constant MSG_TRUNC (line 881) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 882) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 883) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 884) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 885) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 886) | MS_ASYNC = 0x1 constant MS_BIND (line 887) | MS_BIND = 0x1000 constant MS_BORN (line 888) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 889) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 890) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 891) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 892) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 893) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 894) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 895) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 896) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 897) | MS_MOVE = 0x2000 constant MS_NOATIME (line 898) | MS_NOATIME = 0x400 constant MS_NODEV (line 899) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 900) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 901) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 902) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 903) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 904) | MS_NOSUID = 0x2 constant MS_NOUSER (line 905) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 906) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 907) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 908) | MS_RDONLY = 0x1 constant MS_REC (line 909) | MS_REC = 0x4000 constant MS_RELATIME (line 910) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 911) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 912) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 913) | MS_SHARED = 0x100000 constant MS_SILENT (line 914) | MS_SILENT = 0x8000 constant MS_SLAVE (line 915) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 916) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 917) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 918) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 919) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 920) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 921) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 922) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 923) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 924) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 925) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 926) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 927) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 928) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 929) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 930) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 931) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 932) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 933) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 934) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 935) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 936) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 937) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 938) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 939) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 940) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 941) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 942) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 943) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 944) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 945) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 946) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 947) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 948) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 949) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 950) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 951) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 952) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 953) | NETLINK_XFRM = 0x6 constant NL0 (line 954) | NL0 = 0x0 constant NL1 (line 955) | NL1 = 0x100 constant NLA_ALIGNTO (line 956) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 957) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 958) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 959) | NLA_HDRLEN = 0x4 constant NLDLY (line 960) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 961) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 962) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 963) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 964) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 965) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 966) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 967) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 968) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 969) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 970) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 971) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 972) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 973) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 974) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 975) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 976) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 977) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 978) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 979) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 980) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 981) | NLM_F_ROOT = 0x100 constant NOFLSH (line 982) | NOFLSH = 0x80 constant OCRNL (line 983) | OCRNL = 0x8 constant OFDEL (line 984) | OFDEL = 0x80 constant OFILL (line 985) | OFILL = 0x40 constant OLCUC (line 986) | OLCUC = 0x2 constant ONLCR (line 987) | ONLCR = 0x4 constant ONLRET (line 988) | ONLRET = 0x20 constant ONOCR (line 989) | ONOCR = 0x10 constant OPOST (line 990) | OPOST = 0x1 constant O_ACCMODE (line 991) | O_ACCMODE = 0x3 constant O_APPEND (line 992) | O_APPEND = 0x400 constant O_ASYNC (line 993) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 994) | O_CLOEXEC = 0x80000 constant O_CREAT (line 995) | O_CREAT = 0x40 constant O_DIRECT (line 996) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 997) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 998) | O_DSYNC = 0x1000 constant O_EXCL (line 999) | O_EXCL = 0x80 constant O_FSYNC (line 1000) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1001) | O_LARGEFILE = 0x20000 constant O_NDELAY (line 1002) | O_NDELAY = 0x800 constant O_NOATIME (line 1003) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1004) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1005) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 1006) | O_NONBLOCK = 0x800 constant O_PATH (line 1007) | O_PATH = 0x200000 constant O_RDONLY (line 1008) | O_RDONLY = 0x0 constant O_RDWR (line 1009) | O_RDWR = 0x2 constant O_RSYNC (line 1010) | O_RSYNC = 0x101000 constant O_SYNC (line 1011) | O_SYNC = 0x101000 constant O_TMPFILE (line 1012) | O_TMPFILE = 0x404000 constant O_TRUNC (line 1013) | O_TRUNC = 0x200 constant O_WRONLY (line 1014) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1015) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1016) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1017) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1018) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1019) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1020) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1021) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1022) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1023) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1024) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1025) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1026) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1027) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1028) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1029) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1030) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1031) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1032) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1033) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1034) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1035) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1036) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1037) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1038) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1039) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1040) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1041) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1042) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1043) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1044) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1045) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1046) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1047) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1048) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1049) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1050) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1051) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1052) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1053) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1054) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1055) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1056) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1057) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1058) | PACKET_VNET_HDR = 0xf constant PARENB (line 1059) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1060) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1061) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1062) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1063) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1064) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1065) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1066) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1067) | PARITY_NONE = 0x1 constant PARMRK (line 1068) | PARMRK = 0x8 constant PARODD (line 1069) | PARODD = 0x200 constant PENDIN (line 1070) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1071) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 1072) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 1073) | PERF_EVENT_IOC_ID = 0x80042407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1074) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 1075) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_REFRESH (line 1076) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 1077) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 1078) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 1079) | PERF_EVENT_IOC_SET_FILTER = 0x40042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1080) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PRIO_PGRP (line 1081) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1082) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1083) | PRIO_USER = 0x2 constant PROT_EXEC (line 1084) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1085) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1086) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1087) | PROT_NONE = 0x0 constant PROT_READ (line 1088) | PROT_READ = 0x1 constant PROT_WRITE (line 1089) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1090) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1091) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1092) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1093) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1094) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1095) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1096) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1097) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1098) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1099) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1100) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1101) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1102) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1103) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1104) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1105) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1106) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1107) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1108) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1109) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1110) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1111) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1112) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1113) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1114) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1115) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1116) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1117) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1118) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1119) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1120) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1121) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1122) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1123) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1124) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1125) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1126) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1127) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1128) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1129) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1130) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1131) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1132) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1133) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1134) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1135) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1136) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1137) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1138) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1139) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1140) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1141) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1142) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1143) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1144) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1145) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1146) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1147) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1148) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1149) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1150) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1151) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1152) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1153) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1154) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1155) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1156) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1157) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1158) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1159) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1160) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1161) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1162) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1163) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1164) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1165) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1166) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1167) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1168) | PR_SET_PTRACER_ANY = 0xffffffff constant PR_SET_SECCOMP (line 1169) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1170) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1171) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1172) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1173) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1174) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1175) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1176) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1177) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1178) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1179) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1180) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1181) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1182) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1183) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1184) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1185) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1186) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1187) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1188) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1189) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1190) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1191) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1192) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1193) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1194) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETCRUNCHREGS (line 1195) | PTRACE_GETCRUNCHREGS = 0x19 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1197) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETHBPREGS (line 1198) | PTRACE_GETHBPREGS = 0x1d constant PTRACE_GETREGS (line 1199) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1200) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1201) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1202) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GETVFPREGS (line 1203) | PTRACE_GETVFPREGS = 0x1b constant PTRACE_GETWMMXREGS (line 1204) | PTRACE_GETWMMXREGS = 0x12 constant PTRACE_GET_THREAD_AREA (line 1205) | PTRACE_GET_THREAD_AREA = 0x16 constant PTRACE_INTERRUPT (line 1206) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1207) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1208) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1209) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1210) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1211) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1212) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1213) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1214) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1215) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1216) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1217) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1218) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1219) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1220) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1221) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1222) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1223) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1224) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1225) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1226) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1227) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1228) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1229) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1230) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETCRUNCHREGS (line 1231) | PTRACE_SETCRUNCHREGS = 0x1a constant PTRACE_SETFPREGS (line 1232) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETHBPREGS (line 1233) | PTRACE_SETHBPREGS = 0x1e constant PTRACE_SETOPTIONS (line 1234) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1235) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1236) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1237) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1238) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SETVFPREGS (line 1239) | PTRACE_SETVFPREGS = 0x1c constant PTRACE_SETWMMXREGS (line 1240) | PTRACE_SETWMMXREGS = 0x13 constant PTRACE_SET_SYSCALL (line 1241) | PTRACE_SET_SYSCALL = 0x17 constant PTRACE_SINGLESTEP (line 1242) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1243) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1244) | PTRACE_TRACEME = 0x0 constant PT_DATA_ADDR (line 1245) | PT_DATA_ADDR = 0x10004 constant PT_TEXT_ADDR (line 1246) | PT_TEXT_ADDR = 0x10000 constant PT_TEXT_END_ADDR (line 1247) | PT_TEXT_END_ADDR = 0x10008 constant RLIMIT_AS (line 1248) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1249) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1250) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1251) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1252) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1253) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1254) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1255) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1256) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1257) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1258) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1259) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1260) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1261) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1262) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1263) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1264) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1265) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1266) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1267) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1268) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1269) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1270) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1271) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1272) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1273) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1274) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1275) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1276) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1277) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1278) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1279) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1280) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1281) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1282) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1283) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1284) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1285) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1286) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1287) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1288) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1289) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1290) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1291) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1292) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1293) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1294) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1295) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1296) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1297) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1298) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1299) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1300) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1301) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1302) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1303) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1304) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1305) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1306) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1307) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1308) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1309) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1310) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1311) | RTF_MSS = 0x40 constant RTF_MTU (line 1312) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1313) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1314) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1315) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1316) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1317) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1318) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1319) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1320) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1321) | RTF_STATIC = 0x400 constant RTF_THROW (line 1322) | RTF_THROW = 0x2000 constant RTF_UP (line 1323) | RTF_UP = 0x1 constant RTF_WINDOW (line 1324) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1325) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1326) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1327) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1328) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1329) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1330) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1331) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1332) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1333) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1334) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1335) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1336) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1337) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1338) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1339) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1340) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1341) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1342) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1343) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1344) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1345) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1346) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1347) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1348) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1349) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1350) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1351) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1352) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1353) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1354) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1355) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1356) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1357) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1358) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1359) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1360) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1361) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1362) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1363) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1364) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1365) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1366) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1367) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1368) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1369) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1370) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1371) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1372) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1373) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1374) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1375) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1376) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1377) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1378) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1379) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1380) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1381) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1382) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1383) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1384) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1385) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1386) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1387) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1388) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1389) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1390) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1391) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1392) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1393) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1394) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1395) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1396) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1397) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1398) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1399) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1400) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1401) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1402) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1403) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1404) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1405) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1406) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1407) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1408) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1409) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1410) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1411) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1412) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1413) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1414) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1415) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1416) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1417) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1418) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1419) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1420) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1421) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1422) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1423) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1424) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1425) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1426) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1427) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1428) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1429) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1430) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1431) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1432) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1433) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1434) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1435) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1436) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1437) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1438) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1439) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1440) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1441) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1442) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1443) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1444) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1445) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1446) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1447) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1448) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1449) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1450) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1451) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1452) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1453) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1454) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1455) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1456) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1457) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1458) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1459) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1460) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1461) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1462) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1463) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1464) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1465) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1466) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1467) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1468) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1469) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1470) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1471) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1472) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1473) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1474) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1475) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1476) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1477) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1478) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1479) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1480) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1481) | SIOCINQ = 0x541b constant SIOCOUTQ (line 1482) | SIOCOUTQ = 0x5411 constant SIOCOUTQNSD (line 1483) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1484) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1485) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1486) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1487) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1488) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1489) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1490) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1491) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1492) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1493) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1494) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1495) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1496) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1497) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1498) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1499) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1500) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1501) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1502) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1503) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1504) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1505) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1506) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1507) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1508) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1509) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1510) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1511) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1512) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1513) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1514) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1515) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1516) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1517) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1518) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1519) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1520) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1521) | SOL_AAL = 0x109 constant SOL_ALG (line 1522) | SOL_ALG = 0x117 constant SOL_ATM (line 1523) | SOL_ATM = 0x108 constant SOL_CAIF (line 1524) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1525) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1526) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1527) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1528) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1529) | SOL_IP = 0x0 constant SOL_IPV6 (line 1530) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1531) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1532) | SOL_IUCV = 0x115 constant SOL_KCM (line 1533) | SOL_KCM = 0x119 constant SOL_LLC (line 1534) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1535) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1536) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1537) | SOL_NFC = 0x118 constant SOL_PACKET (line 1538) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1539) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1540) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1541) | SOL_RAW = 0xff constant SOL_RDS (line 1542) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1543) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1544) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1545) | SOL_TCP = 0x6 constant SOL_TIPC (line 1546) | SOL_TIPC = 0x10f constant SOL_X25 (line 1547) | SOL_X25 = 0x106 constant SOMAXCONN (line 1548) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1549) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1550) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1551) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1552) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1553) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1554) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1555) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1556) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1557) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1558) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1559) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1560) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1561) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1562) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1563) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1564) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1565) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1566) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1567) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1568) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1569) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1570) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1571) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1572) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1573) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1574) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1575) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1576) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1577) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1578) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1579) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1580) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1581) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1582) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1583) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1584) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1585) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1586) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1587) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1588) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1589) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1590) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1591) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1592) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1593) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1594) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1595) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1596) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1597) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1598) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1599) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1600) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1601) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1602) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1603) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1604) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1605) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1606) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1607) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1608) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1609) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1610) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1611) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1612) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1613) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1614) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1615) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1616) | S_IEXEC = 0x40 constant S_IFBLK (line 1617) | S_IFBLK = 0x6000 constant S_IFCHR (line 1618) | S_IFCHR = 0x2000 constant S_IFDIR (line 1619) | S_IFDIR = 0x4000 constant S_IFIFO (line 1620) | S_IFIFO = 0x1000 constant S_IFLNK (line 1621) | S_IFLNK = 0xa000 constant S_IFMT (line 1622) | S_IFMT = 0xf000 constant S_IFREG (line 1623) | S_IFREG = 0x8000 constant S_IFSOCK (line 1624) | S_IFSOCK = 0xc000 constant S_IREAD (line 1625) | S_IREAD = 0x100 constant S_IRGRP (line 1626) | S_IRGRP = 0x20 constant S_IROTH (line 1627) | S_IROTH = 0x4 constant S_IRUSR (line 1628) | S_IRUSR = 0x100 constant S_IRWXG (line 1629) | S_IRWXG = 0x38 constant S_IRWXO (line 1630) | S_IRWXO = 0x7 constant S_IRWXU (line 1631) | S_IRWXU = 0x1c0 constant S_ISGID (line 1632) | S_ISGID = 0x400 constant S_ISUID (line 1633) | S_ISUID = 0x800 constant S_ISVTX (line 1634) | S_ISVTX = 0x200 constant S_IWGRP (line 1635) | S_IWGRP = 0x10 constant S_IWOTH (line 1636) | S_IWOTH = 0x2 constant S_IWRITE (line 1637) | S_IWRITE = 0x80 constant S_IWUSR (line 1638) | S_IWUSR = 0x80 constant S_IXGRP (line 1639) | S_IXGRP = 0x8 constant S_IXOTH (line 1640) | S_IXOTH = 0x1 constant S_IXUSR (line 1641) | S_IXUSR = 0x40 constant TAB0 (line 1642) | TAB0 = 0x0 constant TAB1 (line 1643) | TAB1 = 0x800 constant TAB2 (line 1644) | TAB2 = 0x1000 constant TAB3 (line 1645) | TAB3 = 0x1800 constant TABDLY (line 1646) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1647) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1648) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1649) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1650) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1651) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1652) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1653) | TCFLSH = 0x540b constant TCGETA (line 1654) | TCGETA = 0x5405 constant TCGETS (line 1655) | TCGETS = 0x5401 constant TCGETS2 (line 1656) | TCGETS2 = 0x802c542a constant TCGETX (line 1657) | TCGETX = 0x5432 constant TCIFLUSH (line 1658) | TCIFLUSH = 0x0 constant TCIOFF (line 1659) | TCIOFF = 0x2 constant TCIOFLUSH (line 1660) | TCIOFLUSH = 0x2 constant TCION (line 1661) | TCION = 0x3 constant TCOFLUSH (line 1662) | TCOFLUSH = 0x1 constant TCOOFF (line 1663) | TCOOFF = 0x0 constant TCOON (line 1664) | TCOON = 0x1 constant TCP_CC_INFO (line 1665) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1666) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1667) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1668) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1669) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1670) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1671) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1672) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1673) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1674) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1675) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1676) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1677) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1678) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1679) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1680) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1681) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1682) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1683) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1684) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1685) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1686) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1687) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1688) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1689) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1690) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1691) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1692) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1693) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1694) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1695) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1696) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1697) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1698) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1699) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1700) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1701) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1702) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1703) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1704) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1705) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1706) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1707) | TCSAFLUSH = 0x2 constant TCSBRK (line 1708) | TCSBRK = 0x5409 constant TCSBRKP (line 1709) | TCSBRKP = 0x5425 constant TCSETA (line 1710) | TCSETA = 0x5406 constant TCSETAF (line 1711) | TCSETAF = 0x5408 constant TCSETAW (line 1712) | TCSETAW = 0x5407 constant TCSETS (line 1713) | TCSETS = 0x5402 constant TCSETS2 (line 1714) | TCSETS2 = 0x402c542b constant TCSETSF (line 1715) | TCSETSF = 0x5404 constant TCSETSF2 (line 1716) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1717) | TCSETSW = 0x5403 constant TCSETSW2 (line 1718) | TCSETSW2 = 0x402c542c constant TCSETX (line 1719) | TCSETX = 0x5433 constant TCSETXF (line 1720) | TCSETXF = 0x5434 constant TCSETXW (line 1721) | TCSETXW = 0x5435 constant TCXONC (line 1722) | TCXONC = 0x540a constant TIOCCBRK (line 1723) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1724) | TIOCCONS = 0x541d constant TIOCEXCL (line 1725) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1726) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1727) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1728) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1729) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1730) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1731) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1732) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1733) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1734) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1735) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1736) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1737) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1738) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1739) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1740) | TIOCINQ = 0x541b constant TIOCLINUX (line 1741) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1742) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1743) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1744) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1745) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1746) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1747) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1748) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1749) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1750) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1751) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1752) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1753) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1754) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1755) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1756) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1757) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1758) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1759) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1760) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1761) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1762) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1763) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1764) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1765) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1766) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1767) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1768) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1769) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1770) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1771) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1772) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1773) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1774) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1775) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1776) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1777) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1778) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1779) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1780) | TIOCSETD = 0x5423 constant TIOCSIG (line 1781) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1782) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1783) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1784) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1785) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1786) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1787) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1788) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1789) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1790) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1791) | TOSTOP = 0x100 constant TS_COMM_LEN (line 1792) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1793) | TUNATTACHFILTER = 0x400854d5 constant TUNDETACHFILTER (line 1794) | TUNDETACHFILTER = 0x400854d6 constant TUNGETFEATURES (line 1795) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1796) | TUNGETFILTER = 0x800854db constant TUNGETIFF (line 1797) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1798) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 1799) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 1800) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 1801) | TUNGETVNETLE = 0x800454dd constant TUNSETDEBUG (line 1802) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1803) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1804) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1805) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1806) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1807) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1808) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1809) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1810) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1811) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1812) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1813) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 1814) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 1815) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 1816) | TUNSETVNETLE = 0x400454dc constant UMOUNT_NOFOLLOW (line 1817) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1818) | VDISCARD = 0xd constant VEOF (line 1819) | VEOF = 0x4 constant VEOL (line 1820) | VEOL = 0xb constant VEOL2 (line 1821) | VEOL2 = 0x10 constant VERASE (line 1822) | VERASE = 0x2 constant VINTR (line 1823) | VINTR = 0x0 constant VKILL (line 1824) | VKILL = 0x3 constant VLNEXT (line 1825) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1826) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1827) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1828) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1829) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1830) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1831) | VMIN = 0x6 constant VM_SOCKETS_INVALID_VERSION (line 1832) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1833) | VQUIT = 0x1 constant VREPRINT (line 1834) | VREPRINT = 0xc constant VSTART (line 1835) | VSTART = 0x8 constant VSTOP (line 1836) | VSTOP = 0x9 constant VSUSP (line 1837) | VSUSP = 0xa constant VSWTC (line 1838) | VSWTC = 0x7 constant VT0 (line 1839) | VT0 = 0x0 constant VT1 (line 1840) | VT1 = 0x4000 constant VTDLY (line 1841) | VTDLY = 0x4000 constant VTIME (line 1842) | VTIME = 0x5 constant VWERASE (line 1843) | VWERASE = 0xe constant WALL (line 1844) | WALL = 0x40000000 constant WCLONE (line 1845) | WCLONE = 0x80000000 constant WCONTINUED (line 1846) | WCONTINUED = 0x8 constant WEXITED (line 1847) | WEXITED = 0x4 constant WNOHANG (line 1848) | WNOHANG = 0x1 constant WNOTHREAD (line 1849) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1850) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1851) | WORDSIZE = 0x20 constant WSTOPPED (line 1852) | WSTOPPED = 0x2 constant WUNTRACED (line 1853) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1854) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1855) | XATTR_REPLACE = 0x2 constant XCASE (line 1856) | XCASE = 0x4 constant XTABS (line 1857) | XTABS = 0x1800 constant E2BIG (line 1862) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1863) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1864) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1865) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1866) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1867) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1868) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1869) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1870) | EBADE = syscall.Errno(0x34) constant EBADF (line 1871) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1872) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1873) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1874) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1875) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1876) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1877) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1878) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1879) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1880) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1881) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1882) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1883) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1884) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1885) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1886) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1887) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1888) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1889) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1890) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1891) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1892) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1893) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1894) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1895) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1896) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1897) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1898) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1899) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1900) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1901) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1902) | EINVAL = syscall.Errno(0x16) constant EIO (line 1903) | EIO = syscall.Errno(0x5) constant EISCONN (line 1904) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1905) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1906) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1907) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1908) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1909) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1910) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1911) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1912) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1913) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1914) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1915) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1916) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1917) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1918) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1919) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1920) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1921) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1922) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1923) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1924) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1925) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1926) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1927) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1928) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1929) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1930) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1931) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1932) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1933) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1934) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1935) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1936) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1937) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1938) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1939) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1940) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1941) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1942) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1943) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1944) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1945) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1946) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1947) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1948) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1949) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1950) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1951) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1952) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1953) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1954) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1955) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1956) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1957) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1958) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1959) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1960) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1961) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1962) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1963) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1964) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1965) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1966) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1967) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1968) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1969) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1970) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1971) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1972) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1973) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1974) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1975) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1976) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1977) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1978) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1979) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1980) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1981) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1982) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1983) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1984) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1985) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1986) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1987) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1988) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1989) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1990) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1991) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1992) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1993) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1994) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1995) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 2000) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2001) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2002) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 2003) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 2004) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 2005) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 2006) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2007) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2008) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2009) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2010) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 2011) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2012) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2013) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2014) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2015) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2016) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2017) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2018) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2019) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2020) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2021) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2022) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2023) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2024) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2025) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2026) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2027) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2028) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2029) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2030) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2031) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2032) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2033) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2034) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x1265 constant BLKFRASET (line 168) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x127b constant BLKRAGET (line 172) | BLKRAGET = 0x1263 constant BLKRASET (line 173) | BLKRASET = 0x1262 constant BLKROGET (line 174) | BLKROGET = 0x125e constant BLKROSET (line 175) | BLKROSET = 0x125d constant BLKRRPART (line 176) | BLKRRPART = 0x125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x1268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ESR_MAGIC (line 356) | ESR_MAGIC = 0x45535201 constant ETH_P_1588 (line 357) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 358) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 359) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 360) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 361) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 362) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 363) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 364) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 365) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 366) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 367) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 368) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 369) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 370) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 371) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 372) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 373) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 374) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 375) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 376) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 377) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 378) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 379) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 380) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 381) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 382) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 383) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 384) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 385) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 386) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 387) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 388) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 389) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 390) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 391) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 392) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 393) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 394) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 395) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 396) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 397) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 398) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 399) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 400) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 401) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 402) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 403) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 404) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 405) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 406) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 407) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 408) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 409) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 410) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 411) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 412) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 413) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 414) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 415) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 416) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 417) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 418) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 419) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 420) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 421) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 422) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 423) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 424) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 425) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 426) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 427) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 428) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 429) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 430) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 431) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 432) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 433) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 434) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 435) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 436) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 437) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 438) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 439) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 440) | ETH_P_XDSA = 0xf8 constant EXTA (line 441) | EXTA = 0xe constant EXTB (line 442) | EXTB = 0xf constant EXTPROC (line 443) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 444) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 445) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 446) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 447) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 448) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 449) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 450) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 451) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 452) | FD_SETSIZE = 0x400 constant FF0 (line 453) | FF0 = 0x0 constant FF1 (line 454) | FF1 = 0x8000 constant FFDLY (line 455) | FFDLY = 0x8000 constant FLUSHO (line 456) | FLUSHO = 0x1000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 457) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 458) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 459) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 460) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 461) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 462) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 463) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 464) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 465) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 466) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 467) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 468) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 469) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 470) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 471) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 472) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 473) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 474) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 475) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 476) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 477) | F_EXLCK = 0x4 constant F_GETFD (line 478) | F_GETFD = 0x1 constant F_GETFL (line 479) | F_GETFL = 0x3 constant F_GETLEASE (line 480) | F_GETLEASE = 0x401 constant F_GETLK (line 481) | F_GETLK = 0x5 constant F_GETLK64 (line 482) | F_GETLK64 = 0x5 constant F_GETOWN (line 483) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 484) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 485) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 486) | F_GETSIG = 0xb constant F_LOCK (line 487) | F_LOCK = 0x1 constant F_NOTIFY (line 488) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 489) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 490) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 491) | F_OFD_SETLKW = 0x26 constant F_OK (line 492) | F_OK = 0x0 constant F_RDLCK (line 493) | F_RDLCK = 0x0 constant F_SETFD (line 494) | F_SETFD = 0x2 constant F_SETFL (line 495) | F_SETFL = 0x4 constant F_SETLEASE (line 496) | F_SETLEASE = 0x400 constant F_SETLK (line 497) | F_SETLK = 0x6 constant F_SETLK64 (line 498) | F_SETLK64 = 0x6 constant F_SETLKW (line 499) | F_SETLKW = 0x7 constant F_SETLKW64 (line 500) | F_SETLKW64 = 0x7 constant F_SETOWN (line 501) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 502) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 503) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 504) | F_SETSIG = 0xa constant F_SHLCK (line 505) | F_SHLCK = 0x8 constant F_TEST (line 506) | F_TEST = 0x3 constant F_TLOCK (line 507) | F_TLOCK = 0x2 constant F_ULOCK (line 508) | F_ULOCK = 0x0 constant F_UNLCK (line 509) | F_UNLCK = 0x2 constant F_WRLCK (line 510) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 511) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 512) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 513) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 514) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 515) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 516) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 517) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 518) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 519) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 520) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 521) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 522) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 523) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 524) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 525) | GRND_RANDOM = 0x2 constant HUPCL (line 526) | HUPCL = 0x400 constant IBSHIFT (line 527) | IBSHIFT = 0x10 constant ICANON (line 528) | ICANON = 0x2 constant ICMPV6_FILTER (line 529) | ICMPV6_FILTER = 0x1 constant ICRNL (line 530) | ICRNL = 0x100 constant IEXTEN (line 531) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 532) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 533) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 534) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 535) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 536) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 537) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 538) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 539) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 540) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 541) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 542) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 543) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 544) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 545) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 546) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 547) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 548) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 549) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 550) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 551) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 552) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 553) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 554) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 555) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 556) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 557) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 558) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 559) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 560) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 561) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 562) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 563) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 564) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 565) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 566) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 567) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 568) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 569) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 570) | IFF_SLAVE = 0x800 constant IFF_TAP (line 571) | IFF_TAP = 0x2 constant IFF_TUN (line 572) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 573) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 574) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 575) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 576) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 577) | IFNAMSIZ = 0x10 constant IGNBRK (line 578) | IGNBRK = 0x1 constant IGNCR (line 579) | IGNCR = 0x80 constant IGNPAR (line 580) | IGNPAR = 0x4 constant IMAXBEL (line 581) | IMAXBEL = 0x2000 constant INLCR (line 582) | INLCR = 0x40 constant INPCK (line 583) | INPCK = 0x10 constant IN_ACCESS (line 584) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 585) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 586) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 587) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 588) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 589) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 590) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 591) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 592) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 593) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 594) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 595) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 596) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 597) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 598) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 599) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 600) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 601) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 602) | IN_CREATE = 0x100 constant IN_DELETE (line 603) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 604) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 605) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 606) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 607) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 608) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 609) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 610) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 611) | IN_MODIFY = 0x2 constant IN_MOVE (line 612) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 613) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 614) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 615) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 616) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 617) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 618) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 619) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 620) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 621) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 622) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 623) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 624) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 625) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 626) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 627) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 628) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 629) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 630) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 631) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 632) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 633) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 634) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 635) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 636) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 637) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 638) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 639) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 640) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 641) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 642) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 643) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 644) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 645) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 646) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 647) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 648) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 649) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 650) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 651) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 652) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 653) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 654) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 655) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 656) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 657) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 658) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 659) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 660) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 661) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 662) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 663) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 664) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 665) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 666) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 667) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 668) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 669) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 670) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 671) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 672) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 673) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 674) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 675) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 676) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 677) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 678) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 679) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 680) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 681) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 682) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 683) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 684) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 685) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 686) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 687) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 688) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 689) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 690) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 691) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 692) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 693) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 694) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 695) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 696) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 697) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 698) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 699) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 700) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 701) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 702) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 703) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 704) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 705) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 706) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 707) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 708) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 709) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 710) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 711) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 712) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 713) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 714) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 715) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 716) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 717) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 718) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 719) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 720) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 721) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 722) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 723) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 724) | IP_MF = 0x2000 constant IP_MINTTL (line 725) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 726) | IP_MSFILTER = 0x29 constant IP_MSS (line 727) | IP_MSS = 0x240 constant IP_MTU (line 728) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 729) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 730) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 731) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 732) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 733) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 734) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 735) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 736) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 737) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 738) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 739) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 740) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 741) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 742) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 743) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 744) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 745) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 746) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 747) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 748) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 749) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 750) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 751) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 752) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 753) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 754) | IP_RETOPTS = 0x7 constant IP_RF (line 755) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 756) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 757) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 758) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 759) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 760) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 761) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 762) | IP_XFRM_POLICY = 0x11 constant ISIG (line 763) | ISIG = 0x1 constant ISTRIP (line 764) | ISTRIP = 0x20 constant IUCLC (line 765) | IUCLC = 0x200 constant IUTF8 (line 766) | IUTF8 = 0x4000 constant IXANY (line 767) | IXANY = 0x800 constant IXOFF (line 768) | IXOFF = 0x1000 constant IXON (line 769) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 770) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 771) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 772) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 773) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 774) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 775) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 776) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 777) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 778) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 779) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 780) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 781) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 782) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 783) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 784) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 785) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 786) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 787) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 788) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 789) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 790) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 791) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 792) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 793) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 794) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 795) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 796) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 797) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 798) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 799) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 800) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 802) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 803) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 804) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 805) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 806) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 807) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 808) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 809) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 810) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 811) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 812) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 813) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 814) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 815) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 816) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 817) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 818) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 819) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 820) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 821) | LOCK_EX = 0x2 constant LOCK_NB (line 822) | LOCK_NB = 0x4 constant LOCK_SH (line 823) | LOCK_SH = 0x1 constant LOCK_UN (line 824) | LOCK_UN = 0x8 constant MADV_DODUMP (line 825) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 826) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 827) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 828) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 829) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 830) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 831) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 832) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 833) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 834) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 835) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 836) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 837) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 838) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 839) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 840) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 841) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 842) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 843) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 844) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 845) | MAP_FILE = 0x0 constant MAP_FIXED (line 846) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 847) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 848) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 849) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 850) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 851) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 852) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 853) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 854) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 855) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x20000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x400 constant O_ASYNC (line 994) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x40 constant O_DIRECT (line 997) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 999) | O_DSYNC = 0x1000 constant O_EXCL (line 1000) | O_EXCL = 0x80 constant O_FSYNC (line 1001) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1003) | O_NDELAY = 0x800 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x800 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x101000 constant O_SYNC (line 1012) | O_SYNC = 0x101000 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x404000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1185) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1186) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1187) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1188) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1189) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1190) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1191) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1192) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1193) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1194) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1195) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETREGS (line 1197) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1198) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1199) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1200) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_INTERRUPT (line 1201) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1202) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1203) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1204) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1205) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1206) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1207) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1208) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1209) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1210) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1211) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1212) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1213) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1214) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1215) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1216) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1217) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1218) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1219) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1220) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1221) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1222) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1223) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1224) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETOPTIONS (line 1225) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1226) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1227) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1228) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1229) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLESTEP (line 1230) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1231) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1232) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1233) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1234) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1235) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1236) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1237) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1238) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1239) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1240) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1241) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1242) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1243) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1244) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1245) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1246) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1247) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1248) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1249) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1250) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1251) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1252) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1253) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1254) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1255) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1256) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1257) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1258) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1259) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1260) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1261) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1262) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1263) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1264) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1265) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1266) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1267) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1268) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1269) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1270) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1271) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1272) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1273) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1274) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1275) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1276) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1277) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1278) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1279) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1280) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1281) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1282) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1283) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1284) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1285) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1286) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1287) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1288) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1289) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1290) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1291) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1292) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1293) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1294) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1295) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1296) | RTF_MSS = 0x40 constant RTF_MTU (line 1297) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1298) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1299) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1300) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1301) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1302) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1303) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1304) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1305) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1306) | RTF_STATIC = 0x400 constant RTF_THROW (line 1307) | RTF_THROW = 0x2000 constant RTF_UP (line 1308) | RTF_UP = 0x1 constant RTF_WINDOW (line 1309) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1310) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1311) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1312) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1313) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1314) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1315) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1316) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1317) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1318) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1319) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1320) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1321) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1322) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1323) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1324) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1325) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1326) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1327) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1328) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1329) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1330) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1331) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1332) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1333) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1334) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1335) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1336) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1337) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1338) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1339) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1340) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1341) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1342) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1343) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1344) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1345) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1346) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1347) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1348) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1349) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1350) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1351) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1352) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1353) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1354) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1355) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1356) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1357) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1358) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1359) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1360) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1361) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1362) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1363) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1364) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1365) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1366) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1367) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1368) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1369) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1370) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1371) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1372) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1373) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1374) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1375) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1376) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1377) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1378) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1379) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1380) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1381) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1382) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1383) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1384) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1385) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1386) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1387) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1388) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1389) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1390) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1391) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1392) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1393) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1394) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1395) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1396) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1397) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1398) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1399) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1400) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1401) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1402) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1403) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1404) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1405) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1406) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1407) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1408) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1409) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1410) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1411) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1412) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1413) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1414) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1415) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1416) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1417) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1418) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1419) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1420) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1421) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1422) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1423) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1424) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1425) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1426) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1427) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1428) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1429) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1430) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1431) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1432) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1433) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1434) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1435) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1436) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1437) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1438) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1439) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1440) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1441) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1442) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1443) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1444) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1445) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1446) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1447) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1448) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1449) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1450) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1451) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1452) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1453) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1454) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1455) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1456) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1457) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1458) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1459) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1460) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1461) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1462) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1463) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1464) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1465) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1466) | SIOCINQ = 0x541b constant SIOCOUTQ (line 1467) | SIOCOUTQ = 0x5411 constant SIOCOUTQNSD (line 1468) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1469) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1470) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1471) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1472) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1473) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1474) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1475) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1476) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1477) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1478) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1479) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1480) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1481) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1482) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1483) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1484) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1485) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1486) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1487) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1488) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1489) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1490) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1491) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1492) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1493) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1494) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1495) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1496) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1497) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1498) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1499) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1500) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1501) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1502) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1503) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1504) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1505) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1506) | SOL_AAL = 0x109 constant SOL_ALG (line 1507) | SOL_ALG = 0x117 constant SOL_ATM (line 1508) | SOL_ATM = 0x108 constant SOL_CAIF (line 1509) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1510) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1511) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1512) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1513) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1514) | SOL_IP = 0x0 constant SOL_IPV6 (line 1515) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1516) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1517) | SOL_IUCV = 0x115 constant SOL_KCM (line 1518) | SOL_KCM = 0x119 constant SOL_LLC (line 1519) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1520) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1521) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1522) | SOL_NFC = 0x118 constant SOL_PACKET (line 1523) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1524) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1525) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1526) | SOL_RAW = 0xff constant SOL_RDS (line 1527) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1528) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1529) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1530) | SOL_TCP = 0x6 constant SOL_TIPC (line 1531) | SOL_TIPC = 0x10f constant SOL_X25 (line 1532) | SOL_X25 = 0x106 constant SOMAXCONN (line 1533) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1534) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1535) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1536) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1537) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1538) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1539) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1540) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1541) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1542) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1543) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1544) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1545) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1546) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1547) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1548) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1549) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1550) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1551) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1552) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1553) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1554) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1555) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1556) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1557) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1558) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1559) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1560) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1561) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1562) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1563) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1564) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1565) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1566) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1567) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1568) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1569) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1570) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1571) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1572) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1573) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1574) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1575) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1576) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1577) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1578) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1579) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1580) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1581) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1582) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1583) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1584) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1585) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1586) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1587) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1588) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1589) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1590) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1591) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1592) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1593) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1594) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1595) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1596) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1597) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1598) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1599) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1600) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1601) | S_IEXEC = 0x40 constant S_IFBLK (line 1602) | S_IFBLK = 0x6000 constant S_IFCHR (line 1603) | S_IFCHR = 0x2000 constant S_IFDIR (line 1604) | S_IFDIR = 0x4000 constant S_IFIFO (line 1605) | S_IFIFO = 0x1000 constant S_IFLNK (line 1606) | S_IFLNK = 0xa000 constant S_IFMT (line 1607) | S_IFMT = 0xf000 constant S_IFREG (line 1608) | S_IFREG = 0x8000 constant S_IFSOCK (line 1609) | S_IFSOCK = 0xc000 constant S_IREAD (line 1610) | S_IREAD = 0x100 constant S_IRGRP (line 1611) | S_IRGRP = 0x20 constant S_IROTH (line 1612) | S_IROTH = 0x4 constant S_IRUSR (line 1613) | S_IRUSR = 0x100 constant S_IRWXG (line 1614) | S_IRWXG = 0x38 constant S_IRWXO (line 1615) | S_IRWXO = 0x7 constant S_IRWXU (line 1616) | S_IRWXU = 0x1c0 constant S_ISGID (line 1617) | S_ISGID = 0x400 constant S_ISUID (line 1618) | S_ISUID = 0x800 constant S_ISVTX (line 1619) | S_ISVTX = 0x200 constant S_IWGRP (line 1620) | S_IWGRP = 0x10 constant S_IWOTH (line 1621) | S_IWOTH = 0x2 constant S_IWRITE (line 1622) | S_IWRITE = 0x80 constant S_IWUSR (line 1623) | S_IWUSR = 0x80 constant S_IXGRP (line 1624) | S_IXGRP = 0x8 constant S_IXOTH (line 1625) | S_IXOTH = 0x1 constant S_IXUSR (line 1626) | S_IXUSR = 0x40 constant TAB0 (line 1627) | TAB0 = 0x0 constant TAB1 (line 1628) | TAB1 = 0x800 constant TAB2 (line 1629) | TAB2 = 0x1000 constant TAB3 (line 1630) | TAB3 = 0x1800 constant TABDLY (line 1631) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1632) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1633) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1634) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1635) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1636) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1637) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1638) | TCFLSH = 0x540b constant TCGETA (line 1639) | TCGETA = 0x5405 constant TCGETS (line 1640) | TCGETS = 0x5401 constant TCGETS2 (line 1641) | TCGETS2 = 0x802c542a constant TCGETX (line 1642) | TCGETX = 0x5432 constant TCIFLUSH (line 1643) | TCIFLUSH = 0x0 constant TCIOFF (line 1644) | TCIOFF = 0x2 constant TCIOFLUSH (line 1645) | TCIOFLUSH = 0x2 constant TCION (line 1646) | TCION = 0x3 constant TCOFLUSH (line 1647) | TCOFLUSH = 0x1 constant TCOOFF (line 1648) | TCOOFF = 0x0 constant TCOON (line 1649) | TCOON = 0x1 constant TCP_CC_INFO (line 1650) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1651) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1652) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1653) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1654) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1655) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1656) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1657) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1658) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1659) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1660) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1661) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1662) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1663) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1664) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1665) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1666) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1667) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1668) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1669) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1670) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1671) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1672) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1673) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1674) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1675) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1676) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1677) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1678) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1679) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1680) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1681) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1682) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1683) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1684) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1685) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1686) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1687) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1688) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1689) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1690) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1691) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1692) | TCSAFLUSH = 0x2 constant TCSBRK (line 1693) | TCSBRK = 0x5409 constant TCSBRKP (line 1694) | TCSBRKP = 0x5425 constant TCSETA (line 1695) | TCSETA = 0x5406 constant TCSETAF (line 1696) | TCSETAF = 0x5408 constant TCSETAW (line 1697) | TCSETAW = 0x5407 constant TCSETS (line 1698) | TCSETS = 0x5402 constant TCSETS2 (line 1699) | TCSETS2 = 0x402c542b constant TCSETSF (line 1700) | TCSETSF = 0x5404 constant TCSETSF2 (line 1701) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1702) | TCSETSW = 0x5403 constant TCSETSW2 (line 1703) | TCSETSW2 = 0x402c542c constant TCSETX (line 1704) | TCSETX = 0x5433 constant TCSETXF (line 1705) | TCSETXF = 0x5434 constant TCSETXW (line 1706) | TCSETXW = 0x5435 constant TCXONC (line 1707) | TCXONC = 0x540a constant TIOCCBRK (line 1708) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1709) | TIOCCONS = 0x541d constant TIOCEXCL (line 1710) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1711) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1712) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1713) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1714) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1715) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1716) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1717) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1718) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1719) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1720) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1721) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1722) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1723) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1724) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1725) | TIOCINQ = 0x541b constant TIOCLINUX (line 1726) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1727) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1728) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1729) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1730) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1731) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1732) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1733) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1734) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1735) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1736) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1737) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1738) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1739) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1740) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1741) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1742) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1743) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1744) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1745) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1746) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1747) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1748) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1749) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1750) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1751) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1752) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1753) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1754) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1755) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1756) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1757) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1758) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1759) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1760) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1761) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1762) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1763) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1764) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1765) | TIOCSETD = 0x5423 constant TIOCSIG (line 1766) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1767) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1768) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1769) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1770) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1771) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1772) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1773) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1774) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1775) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1776) | TOSTOP = 0x100 constant TS_COMM_LEN (line 1777) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1778) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 1779) | TUNDETACHFILTER = 0x401054d6 constant TUNGETFEATURES (line 1780) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1781) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 1782) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1783) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 1784) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 1785) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 1786) | TUNGETVNETLE = 0x800454dd constant TUNSETDEBUG (line 1787) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1788) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1789) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1790) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1791) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1792) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1793) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1794) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1795) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1796) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1797) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1798) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 1799) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 1800) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 1801) | TUNSETVNETLE = 0x400454dc constant UMOUNT_NOFOLLOW (line 1802) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1803) | VDISCARD = 0xd constant VEOF (line 1804) | VEOF = 0x4 constant VEOL (line 1805) | VEOL = 0xb constant VEOL2 (line 1806) | VEOL2 = 0x10 constant VERASE (line 1807) | VERASE = 0x2 constant VINTR (line 1808) | VINTR = 0x0 constant VKILL (line 1809) | VKILL = 0x3 constant VLNEXT (line 1810) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1811) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1812) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1813) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1814) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1815) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1816) | VMIN = 0x6 constant VM_SOCKETS_INVALID_VERSION (line 1817) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1818) | VQUIT = 0x1 constant VREPRINT (line 1819) | VREPRINT = 0xc constant VSTART (line 1820) | VSTART = 0x8 constant VSTOP (line 1821) | VSTOP = 0x9 constant VSUSP (line 1822) | VSUSP = 0xa constant VSWTC (line 1823) | VSWTC = 0x7 constant VT0 (line 1824) | VT0 = 0x0 constant VT1 (line 1825) | VT1 = 0x4000 constant VTDLY (line 1826) | VTDLY = 0x4000 constant VTIME (line 1827) | VTIME = 0x5 constant VWERASE (line 1828) | VWERASE = 0xe constant WALL (line 1829) | WALL = 0x40000000 constant WCLONE (line 1830) | WCLONE = 0x80000000 constant WCONTINUED (line 1831) | WCONTINUED = 0x8 constant WEXITED (line 1832) | WEXITED = 0x4 constant WNOHANG (line 1833) | WNOHANG = 0x1 constant WNOTHREAD (line 1834) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1835) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1836) | WORDSIZE = 0x40 constant WSTOPPED (line 1837) | WSTOPPED = 0x2 constant WUNTRACED (line 1838) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1839) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1840) | XATTR_REPLACE = 0x2 constant XCASE (line 1841) | XCASE = 0x4 constant XTABS (line 1842) | XTABS = 0x1800 constant E2BIG (line 1847) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1848) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1849) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1850) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1851) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1852) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1853) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1854) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1855) | EBADE = syscall.Errno(0x34) constant EBADF (line 1856) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1857) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1858) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1859) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1860) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1861) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1862) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1863) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1864) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1865) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1866) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1867) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1868) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1869) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1870) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1871) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1872) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1873) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1874) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1875) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1876) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1877) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1878) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1879) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1880) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1881) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1882) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1883) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1884) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1885) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1886) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1887) | EINVAL = syscall.Errno(0x16) constant EIO (line 1888) | EIO = syscall.Errno(0x5) constant EISCONN (line 1889) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1890) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1891) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1892) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1893) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1894) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1895) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1896) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1897) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1898) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1899) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1900) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1901) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1902) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1903) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1904) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1905) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1906) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1907) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1908) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1909) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1910) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1911) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1912) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1913) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1914) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1915) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1916) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1917) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1918) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1919) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1920) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1921) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1922) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1923) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1924) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1925) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1926) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1927) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1928) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1929) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1930) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1931) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1932) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1933) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1934) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1935) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1936) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1937) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1938) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1939) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1940) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1941) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1942) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1943) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1944) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1945) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1946) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1947) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1948) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1949) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1950) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1951) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1952) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1953) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1954) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1955) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1956) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1957) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1958) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1959) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1960) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1961) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1962) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1963) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1964) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1965) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1966) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1967) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1968) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1969) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1970) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1971) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1972) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1973) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1974) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1975) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1976) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1977) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1978) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1979) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1980) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1985) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1986) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1987) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1988) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1989) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1990) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1991) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1992) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1993) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1994) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1995) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1996) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1997) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1998) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1999) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2000) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2001) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2002) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2003) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2004) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2005) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2006) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2007) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2008) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2009) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2010) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2011) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2012) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2013) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2014) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2015) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2016) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2017) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2018) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2019) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x40041270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x80041271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 168) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x40041272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 172) | BLKRAGET = 0x20001263 constant BLKRASET (line 173) | BLKRASET = 0x20001262 constant BLKROGET (line 174) | BLKROGET = 0x2000125e constant BLKROSET (line 175) | BLKROSET = 0x2000125d constant BLKRRPART (line 176) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x20001268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x80 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x2000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0x21 constant F_GETLK64 (line 481) | F_GETLK64 = 0x21 constant F_GETOWN (line 482) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x22 constant F_SETLK64 (line 497) | F_SETLK64 = 0x22 constant F_SETLKW (line 498) | F_SETLKW = 0x23 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0x23 constant F_SETOWN (line 500) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 855) | MAP_RENAME = 0x800 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x40000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x8 constant O_ASYNC (line 994) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x100 constant O_DIRECT (line 997) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 999) | O_DSYNC = 0x10 constant O_EXCL (line 1000) | O_EXCL = 0x400 constant O_FSYNC (line 1001) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 1003) | O_NDELAY = 0x80 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x80 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x4010 constant O_SYNC (line 1012) | O_SYNC = 0x4010 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x40042407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x80042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = 0xffffffff constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1185) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1186) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1187) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1188) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1189) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1190) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1191) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1192) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1193) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1194) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1195) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1197) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1198) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1199) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1200) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1201) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1202) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1203) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1204) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1205) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1206) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1207) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1208) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1209) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1210) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1211) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1212) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1213) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1214) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1215) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1216) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1217) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1218) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1219) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1220) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1221) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1222) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1223) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1224) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1225) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1226) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1227) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1228) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1230) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1231) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1232) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1233) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1234) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1235) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1236) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1237) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1238) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1239) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1240) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1241) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1242) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1243) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1244) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1245) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1246) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1247) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1248) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1249) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1250) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1251) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_MSGQUEUE (line 1252) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1253) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1254) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 1255) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 1256) | RLIMIT_RSS = 0x7 constant RLIMIT_RTPRIO (line 1257) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1258) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1259) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1260) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1261) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1262) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1263) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1264) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1265) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1266) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1267) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1268) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1269) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1270) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1271) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1272) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1273) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1274) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1275) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1276) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1277) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1278) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1279) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1280) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1281) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1282) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1283) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1284) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1285) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1286) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1287) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1288) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1289) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1290) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1291) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1292) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1293) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1294) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1295) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1296) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1297) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1298) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1299) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1300) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1301) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1302) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1303) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1304) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1305) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1306) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1307) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1308) | RTF_MSS = 0x40 constant RTF_MTU (line 1309) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1310) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1311) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1312) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1313) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1314) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1315) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1316) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1317) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1318) | RTF_STATIC = 0x400 constant RTF_THROW (line 1319) | RTF_THROW = 0x2000 constant RTF_UP (line 1320) | RTF_UP = 0x1 constant RTF_WINDOW (line 1321) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1322) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1323) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1324) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1325) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1326) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1327) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1328) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1329) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1330) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1331) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1332) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1333) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1334) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1335) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1336) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1337) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1338) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1339) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1340) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1341) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1342) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1343) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1344) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1345) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1346) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1347) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1348) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1349) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1350) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1351) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1352) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1353) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1354) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1355) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1356) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1357) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1358) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1359) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1360) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1361) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1362) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1363) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1364) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1365) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1366) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1367) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1368) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1369) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1370) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1371) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1372) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1373) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1374) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1375) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1376) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1377) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1378) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1379) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1380) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1381) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1382) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1383) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1384) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1385) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1386) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1387) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1388) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1389) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1390) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1391) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1392) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1393) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1394) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1395) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1396) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1397) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1398) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1399) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1400) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1401) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1402) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1403) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1404) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1405) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1406) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1407) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1408) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1409) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1410) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1411) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1412) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1413) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1414) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1415) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1416) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1417) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1418) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1419) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1420) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1421) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1422) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1423) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1424) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1425) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1426) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1427) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1428) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1429) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1430) | SIOCATMARK = 0x40047307 constant SIOCBONDCHANGEACTIVE (line 1431) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1432) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1433) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1434) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1435) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1436) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1437) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1438) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1439) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1440) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1441) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1442) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1443) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1444) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1445) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1446) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1447) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1448) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1449) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1450) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1451) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1452) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1453) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1454) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1455) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1456) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1457) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1458) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1459) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1460) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1461) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1462) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1463) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1464) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1465) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1466) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1467) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1468) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1469) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1470) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1471) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1472) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1473) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1474) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1475) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1476) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1477) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1478) | SIOCINQ = 0x467f constant SIOCOUTQ (line 1479) | SIOCOUTQ = 0x7472 constant SIOCOUTQNSD (line 1480) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1481) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1482) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1483) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1484) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1485) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1486) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1487) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1488) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1489) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1490) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1491) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1492) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1493) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1494) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1495) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1496) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1497) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1498) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1499) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1500) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1501) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1502) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1503) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1504) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1505) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1506) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1507) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1508) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1509) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1510) | SOCK_DGRAM = 0x1 constant SOCK_IOC_TYPE (line 1511) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1512) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1513) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1514) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1515) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1516) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1517) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1518) | SOL_AAL = 0x109 constant SOL_ALG (line 1519) | SOL_ALG = 0x117 constant SOL_ATM (line 1520) | SOL_ATM = 0x108 constant SOL_CAIF (line 1521) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1522) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1523) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1524) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1525) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1526) | SOL_IP = 0x0 constant SOL_IPV6 (line 1527) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1528) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1529) | SOL_IUCV = 0x115 constant SOL_KCM (line 1530) | SOL_KCM = 0x119 constant SOL_LLC (line 1531) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1532) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1533) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1534) | SOL_NFC = 0x118 constant SOL_PACKET (line 1535) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1536) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1537) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1538) | SOL_RAW = 0xff constant SOL_RDS (line 1539) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1540) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1541) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1542) | SOL_TCP = 0x6 constant SOL_TIPC (line 1543) | SOL_TIPC = 0x10f constant SOL_X25 (line 1544) | SOL_X25 = 0x106 constant SOMAXCONN (line 1545) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1546) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1547) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1548) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1549) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1550) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1551) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1552) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1553) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1554) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1555) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1556) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1557) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1558) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1559) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1560) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1561) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1562) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1563) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1564) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1565) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1566) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1567) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1568) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1569) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1570) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1571) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1572) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1573) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1574) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1575) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1576) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1577) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1578) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1579) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1580) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1581) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1582) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1583) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1584) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1585) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1586) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1587) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1588) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1589) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1590) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1591) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1592) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1593) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1594) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1595) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1596) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1597) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1598) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1599) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1600) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1601) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1602) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1603) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1604) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1605) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1606) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1607) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1608) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1609) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1610) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1611) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1612) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1613) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1614) | S_IEXEC = 0x40 constant S_IFBLK (line 1615) | S_IFBLK = 0x6000 constant S_IFCHR (line 1616) | S_IFCHR = 0x2000 constant S_IFDIR (line 1617) | S_IFDIR = 0x4000 constant S_IFIFO (line 1618) | S_IFIFO = 0x1000 constant S_IFLNK (line 1619) | S_IFLNK = 0xa000 constant S_IFMT (line 1620) | S_IFMT = 0xf000 constant S_IFREG (line 1621) | S_IFREG = 0x8000 constant S_IFSOCK (line 1622) | S_IFSOCK = 0xc000 constant S_IREAD (line 1623) | S_IREAD = 0x100 constant S_IRGRP (line 1624) | S_IRGRP = 0x20 constant S_IROTH (line 1625) | S_IROTH = 0x4 constant S_IRUSR (line 1626) | S_IRUSR = 0x100 constant S_IRWXG (line 1627) | S_IRWXG = 0x38 constant S_IRWXO (line 1628) | S_IRWXO = 0x7 constant S_IRWXU (line 1629) | S_IRWXU = 0x1c0 constant S_ISGID (line 1630) | S_ISGID = 0x400 constant S_ISUID (line 1631) | S_ISUID = 0x800 constant S_ISVTX (line 1632) | S_ISVTX = 0x200 constant S_IWGRP (line 1633) | S_IWGRP = 0x10 constant S_IWOTH (line 1634) | S_IWOTH = 0x2 constant S_IWRITE (line 1635) | S_IWRITE = 0x80 constant S_IWUSR (line 1636) | S_IWUSR = 0x80 constant S_IXGRP (line 1637) | S_IXGRP = 0x8 constant S_IXOTH (line 1638) | S_IXOTH = 0x1 constant S_IXUSR (line 1639) | S_IXUSR = 0x40 constant TAB0 (line 1640) | TAB0 = 0x0 constant TAB1 (line 1641) | TAB1 = 0x800 constant TAB2 (line 1642) | TAB2 = 0x1000 constant TAB3 (line 1643) | TAB3 = 0x1800 constant TABDLY (line 1644) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1645) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1646) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1647) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1648) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1649) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1650) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1651) | TCFLSH = 0x5407 constant TCGETA (line 1652) | TCGETA = 0x5401 constant TCGETS (line 1653) | TCGETS = 0x540d constant TCGETS2 (line 1654) | TCGETS2 = 0x4030542a constant TCIFLUSH (line 1655) | TCIFLUSH = 0x0 constant TCIOFF (line 1656) | TCIOFF = 0x2 constant TCIOFLUSH (line 1657) | TCIOFLUSH = 0x2 constant TCION (line 1658) | TCION = 0x3 constant TCOFLUSH (line 1659) | TCOFLUSH = 0x1 constant TCOOFF (line 1660) | TCOOFF = 0x0 constant TCOON (line 1661) | TCOON = 0x1 constant TCP_CC_INFO (line 1662) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1663) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1664) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1665) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1666) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1667) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1668) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1669) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1670) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1671) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1672) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1673) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1674) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1675) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1676) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1677) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1678) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1679) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1680) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1681) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1682) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1683) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1684) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1685) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1686) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1687) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1688) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1689) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1690) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1691) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1692) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1693) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1694) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1695) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1696) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1697) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1698) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1699) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1700) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1701) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1702) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1703) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1704) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1705) | TCSBRK = 0x5405 constant TCSBRKP (line 1706) | TCSBRKP = 0x5486 constant TCSETA (line 1707) | TCSETA = 0x5402 constant TCSETAF (line 1708) | TCSETAF = 0x5404 constant TCSETAW (line 1709) | TCSETAW = 0x5403 constant TCSETS (line 1710) | TCSETS = 0x540e constant TCSETS2 (line 1711) | TCSETS2 = 0x8030542b constant TCSETSF (line 1712) | TCSETSF = 0x5410 constant TCSETSF2 (line 1713) | TCSETSF2 = 0x8030542d constant TCSETSW (line 1714) | TCSETSW = 0x540f constant TCSETSW2 (line 1715) | TCSETSW2 = 0x8030542c constant TCXONC (line 1716) | TCXONC = 0x5406 constant TIOCCBRK (line 1717) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1718) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1719) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1720) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1721) | TIOCGETD = 0x7400 constant TIOCGETP (line 1722) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1723) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1724) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1725) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1726) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1727) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1728) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1729) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1730) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1731) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1732) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1733) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1734) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1735) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1736) | TIOCINQ = 0x467f constant TIOCLINUX (line 1737) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1738) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1739) | TIOCMBIS = 0x741b constant TIOCMGET (line 1740) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1741) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1742) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1743) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1744) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1745) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1746) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1747) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1748) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1749) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1750) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1751) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1752) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1753) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1754) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1755) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1756) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1757) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1758) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1759) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1760) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1761) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1762) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1763) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1764) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1765) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1766) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1767) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1768) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1769) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1770) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1771) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1772) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1773) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1774) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1775) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1776) | TIOCSETD = 0x7401 constant TIOCSETN (line 1777) | TIOCSETN = 0x740a constant TIOCSETP (line 1778) | TIOCSETP = 0x7409 constant TIOCSIG (line 1779) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1780) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1781) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1782) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1783) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1784) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1785) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1786) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1787) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1788) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1789) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1790) | TOSTOP = 0x8000 constant TS_COMM_LEN (line 1791) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1792) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 1793) | TUNDETACHFILTER = 0x800854d6 constant TUNGETFEATURES (line 1794) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1795) | TUNGETFILTER = 0x400854db constant TUNGETIFF (line 1796) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1797) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1798) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1799) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1800) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1801) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1802) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1803) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1804) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1805) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1806) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1807) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1808) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1809) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1810) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1811) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1812) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1813) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1814) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1815) | TUNSETVNETLE = 0x800454dc constant UMOUNT_NOFOLLOW (line 1816) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1817) | VDISCARD = 0xd constant VEOF (line 1818) | VEOF = 0x10 constant VEOL (line 1819) | VEOL = 0x11 constant VEOL2 (line 1820) | VEOL2 = 0x6 constant VERASE (line 1821) | VERASE = 0x2 constant VINTR (line 1822) | VINTR = 0x0 constant VKILL (line 1823) | VKILL = 0x3 constant VLNEXT (line 1824) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1825) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1826) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1827) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1828) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1829) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1830) | VMIN = 0x4 constant VM_SOCKETS_INVALID_VERSION (line 1831) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1832) | VQUIT = 0x1 constant VREPRINT (line 1833) | VREPRINT = 0xc constant VSTART (line 1834) | VSTART = 0x8 constant VSTOP (line 1835) | VSTOP = 0x9 constant VSUSP (line 1836) | VSUSP = 0xa constant VSWTC (line 1837) | VSWTC = 0x7 constant VSWTCH (line 1838) | VSWTCH = 0x7 constant VT0 (line 1839) | VT0 = 0x0 constant VT1 (line 1840) | VT1 = 0x4000 constant VTDLY (line 1841) | VTDLY = 0x4000 constant VTIME (line 1842) | VTIME = 0x5 constant VWERASE (line 1843) | VWERASE = 0xe constant WALL (line 1844) | WALL = 0x40000000 constant WCLONE (line 1845) | WCLONE = 0x80000000 constant WCONTINUED (line 1846) | WCONTINUED = 0x8 constant WEXITED (line 1847) | WEXITED = 0x4 constant WNOHANG (line 1848) | WNOHANG = 0x1 constant WNOTHREAD (line 1849) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1850) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1851) | WORDSIZE = 0x20 constant WSTOPPED (line 1852) | WSTOPPED = 0x2 constant WUNTRACED (line 1853) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1854) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1855) | XATTR_REPLACE = 0x2 constant XCASE (line 1856) | XCASE = 0x4 constant XTABS (line 1857) | XTABS = 0x1800 constant E2BIG (line 1862) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1863) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1864) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1865) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1866) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1867) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1868) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1869) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1870) | EBADE = syscall.Errno(0x32) constant EBADF (line 1871) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1872) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1873) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1874) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1875) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1876) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1877) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1878) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1879) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1880) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1881) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1882) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1883) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1884) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1885) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1886) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1887) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1888) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1889) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1890) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1891) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1892) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1893) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1894) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1895) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1896) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1897) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1898) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1899) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1900) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1901) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1902) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1903) | EINVAL = syscall.Errno(0x16) constant EIO (line 1904) | EIO = syscall.Errno(0x5) constant EISCONN (line 1905) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1906) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1907) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1908) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1909) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1910) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1911) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1912) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1913) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1914) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1915) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1916) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1917) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1918) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1919) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1920) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1921) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1922) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1923) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1924) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1925) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1926) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1927) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1928) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1929) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1930) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1931) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1932) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1933) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1934) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1935) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1936) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1937) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1938) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1939) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1940) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1941) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1942) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1943) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1944) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1945) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1946) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1947) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1948) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1949) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1950) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1951) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1952) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1953) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1954) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1955) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1956) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1957) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1958) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1959) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1960) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1961) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1962) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1963) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1964) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1965) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1966) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1967) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1968) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1969) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1970) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1971) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1972) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1973) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1974) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1975) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1976) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1977) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1978) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1979) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1980) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1981) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1982) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1983) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1984) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1985) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1986) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1987) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1988) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1989) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1990) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1991) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1992) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1993) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1994) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1995) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1996) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1997) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 2002) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2003) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2004) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 2005) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 2006) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 2007) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 2008) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 2009) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2010) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2011) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2012) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2013) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 2014) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2015) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2016) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2017) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 2018) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 2019) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 2020) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2021) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 2022) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 2023) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 2024) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2025) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2026) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 2027) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 2028) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 2029) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 2030) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 2031) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 2032) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 2033) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 2034) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 2035) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 168) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 172) | BLKRAGET = 0x20001263 constant BLKRASET (line 173) | BLKRASET = 0x20001262 constant BLKROGET (line 174) | BLKROGET = 0x2000125e constant BLKROSET (line 175) | BLKROSET = 0x2000125d constant BLKRRPART (line 176) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x20001268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x80 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x2000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0xe constant F_GETLK64 (line 481) | F_GETLK64 = 0xe constant F_GETOWN (line 482) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x6 constant F_SETLK64 (line 497) | F_SETLK64 = 0x6 constant F_SETLKW (line 498) | F_SETLKW = 0x7 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0x7 constant F_SETOWN (line 500) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 855) | MAP_RENAME = 0x800 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x40000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x8 constant O_ASYNC (line 994) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x100 constant O_DIRECT (line 997) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 999) | O_DSYNC = 0x10 constant O_EXCL (line 1000) | O_EXCL = 0x400 constant O_FSYNC (line 1001) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1003) | O_NDELAY = 0x80 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x80 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x4010 constant O_SYNC (line 1012) | O_SYNC = 0x4010 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1185) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1186) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1187) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1188) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1189) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1190) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1191) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1192) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1193) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1194) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1195) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1197) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1198) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1199) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1200) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1201) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1202) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1203) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1204) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1205) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1206) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1207) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1208) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1209) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1210) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1211) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1212) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1213) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1214) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1215) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1216) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1217) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1218) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1219) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1220) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1221) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1222) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1223) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1224) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1225) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1226) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1227) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1228) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1230) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1231) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1232) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1233) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1234) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1235) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1236) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1237) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1238) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1239) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1240) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1241) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1242) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1243) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1244) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1245) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1246) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1247) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1248) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1249) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1250) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1251) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_MSGQUEUE (line 1252) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1253) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1254) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 1255) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 1256) | RLIMIT_RSS = 0x7 constant RLIMIT_RTPRIO (line 1257) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1258) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1259) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1260) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1261) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1262) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1263) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1264) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1265) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1266) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1267) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1268) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1269) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1270) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1271) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1272) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1273) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1274) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1275) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1276) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1277) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1278) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1279) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1280) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1281) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1282) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1283) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1284) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1285) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1286) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1287) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1288) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1289) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1290) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1291) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1292) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1293) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1294) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1295) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1296) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1297) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1298) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1299) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1300) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1301) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1302) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1303) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1304) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1305) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1306) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1307) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1308) | RTF_MSS = 0x40 constant RTF_MTU (line 1309) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1310) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1311) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1312) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1313) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1314) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1315) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1316) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1317) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1318) | RTF_STATIC = 0x400 constant RTF_THROW (line 1319) | RTF_THROW = 0x2000 constant RTF_UP (line 1320) | RTF_UP = 0x1 constant RTF_WINDOW (line 1321) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1322) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1323) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1324) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1325) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1326) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1327) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1328) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1329) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1330) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1331) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1332) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1333) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1334) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1335) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1336) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1337) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1338) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1339) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1340) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1341) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1342) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1343) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1344) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1345) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1346) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1347) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1348) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1349) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1350) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1351) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1352) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1353) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1354) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1355) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1356) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1357) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1358) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1359) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1360) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1361) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1362) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1363) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1364) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1365) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1366) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1367) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1368) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1369) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1370) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1371) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1372) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1373) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1374) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1375) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1376) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1377) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1378) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1379) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1380) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1381) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1382) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1383) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1384) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1385) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1386) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1387) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1388) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1389) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1390) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1391) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1392) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1393) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1394) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1395) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1396) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1397) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1398) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1399) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1400) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1401) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1402) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1403) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1404) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1405) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1406) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1407) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1408) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1409) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1410) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1411) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1412) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1413) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1414) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1415) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1416) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1417) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1418) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1419) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1420) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1421) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1422) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1423) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1424) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1425) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1426) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1427) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1428) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1429) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1430) | SIOCATMARK = 0x40047307 constant SIOCBONDCHANGEACTIVE (line 1431) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1432) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1433) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1434) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1435) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1436) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1437) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1438) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1439) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1440) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1441) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1442) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1443) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1444) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1445) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1446) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1447) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1448) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1449) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1450) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1451) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1452) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1453) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1454) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1455) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1456) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1457) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1458) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1459) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1460) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1461) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1462) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1463) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1464) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1465) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1466) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1467) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1468) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1469) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1470) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1471) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1472) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1473) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1474) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1475) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1476) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1477) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1478) | SIOCINQ = 0x467f constant SIOCOUTQ (line 1479) | SIOCOUTQ = 0x7472 constant SIOCOUTQNSD (line 1480) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1481) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1482) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1483) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1484) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1485) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1486) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1487) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1488) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1489) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1490) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1491) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1492) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1493) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1494) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1495) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1496) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1497) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1498) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1499) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1500) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1501) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1502) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1503) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1504) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1505) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1506) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1507) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1508) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1509) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1510) | SOCK_DGRAM = 0x1 constant SOCK_IOC_TYPE (line 1511) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1512) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1513) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1514) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1515) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1516) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1517) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1518) | SOL_AAL = 0x109 constant SOL_ALG (line 1519) | SOL_ALG = 0x117 constant SOL_ATM (line 1520) | SOL_ATM = 0x108 constant SOL_CAIF (line 1521) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1522) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1523) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1524) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1525) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1526) | SOL_IP = 0x0 constant SOL_IPV6 (line 1527) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1528) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1529) | SOL_IUCV = 0x115 constant SOL_KCM (line 1530) | SOL_KCM = 0x119 constant SOL_LLC (line 1531) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1532) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1533) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1534) | SOL_NFC = 0x118 constant SOL_PACKET (line 1535) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1536) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1537) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1538) | SOL_RAW = 0xff constant SOL_RDS (line 1539) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1540) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1541) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1542) | SOL_TCP = 0x6 constant SOL_TIPC (line 1543) | SOL_TIPC = 0x10f constant SOL_X25 (line 1544) | SOL_X25 = 0x106 constant SOMAXCONN (line 1545) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1546) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1547) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1548) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1549) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1550) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1551) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1552) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1553) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1554) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1555) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1556) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1557) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1558) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1559) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1560) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1561) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1562) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1563) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1564) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1565) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1566) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1567) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1568) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1569) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1570) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1571) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1572) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1573) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1574) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1575) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1576) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1577) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1578) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1579) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1580) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1581) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1582) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1583) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1584) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1585) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1586) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1587) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1588) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1589) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1590) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1591) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1592) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1593) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1594) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1595) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1596) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1597) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1598) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1599) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1600) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1601) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1602) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1603) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1604) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1605) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1606) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1607) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1608) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1609) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1610) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1611) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1612) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1613) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1614) | S_IEXEC = 0x40 constant S_IFBLK (line 1615) | S_IFBLK = 0x6000 constant S_IFCHR (line 1616) | S_IFCHR = 0x2000 constant S_IFDIR (line 1617) | S_IFDIR = 0x4000 constant S_IFIFO (line 1618) | S_IFIFO = 0x1000 constant S_IFLNK (line 1619) | S_IFLNK = 0xa000 constant S_IFMT (line 1620) | S_IFMT = 0xf000 constant S_IFREG (line 1621) | S_IFREG = 0x8000 constant S_IFSOCK (line 1622) | S_IFSOCK = 0xc000 constant S_IREAD (line 1623) | S_IREAD = 0x100 constant S_IRGRP (line 1624) | S_IRGRP = 0x20 constant S_IROTH (line 1625) | S_IROTH = 0x4 constant S_IRUSR (line 1626) | S_IRUSR = 0x100 constant S_IRWXG (line 1627) | S_IRWXG = 0x38 constant S_IRWXO (line 1628) | S_IRWXO = 0x7 constant S_IRWXU (line 1629) | S_IRWXU = 0x1c0 constant S_ISGID (line 1630) | S_ISGID = 0x400 constant S_ISUID (line 1631) | S_ISUID = 0x800 constant S_ISVTX (line 1632) | S_ISVTX = 0x200 constant S_IWGRP (line 1633) | S_IWGRP = 0x10 constant S_IWOTH (line 1634) | S_IWOTH = 0x2 constant S_IWRITE (line 1635) | S_IWRITE = 0x80 constant S_IWUSR (line 1636) | S_IWUSR = 0x80 constant S_IXGRP (line 1637) | S_IXGRP = 0x8 constant S_IXOTH (line 1638) | S_IXOTH = 0x1 constant S_IXUSR (line 1639) | S_IXUSR = 0x40 constant TAB0 (line 1640) | TAB0 = 0x0 constant TAB1 (line 1641) | TAB1 = 0x800 constant TAB2 (line 1642) | TAB2 = 0x1000 constant TAB3 (line 1643) | TAB3 = 0x1800 constant TABDLY (line 1644) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1645) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1646) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1647) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1648) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1649) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1650) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1651) | TCFLSH = 0x5407 constant TCGETA (line 1652) | TCGETA = 0x5401 constant TCGETS (line 1653) | TCGETS = 0x540d constant TCGETS2 (line 1654) | TCGETS2 = 0x4030542a constant TCIFLUSH (line 1655) | TCIFLUSH = 0x0 constant TCIOFF (line 1656) | TCIOFF = 0x2 constant TCIOFLUSH (line 1657) | TCIOFLUSH = 0x2 constant TCION (line 1658) | TCION = 0x3 constant TCOFLUSH (line 1659) | TCOFLUSH = 0x1 constant TCOOFF (line 1660) | TCOOFF = 0x0 constant TCOON (line 1661) | TCOON = 0x1 constant TCP_CC_INFO (line 1662) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1663) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1664) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1665) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1666) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1667) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1668) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1669) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1670) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1671) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1672) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1673) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1674) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1675) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1676) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1677) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1678) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1679) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1680) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1681) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1682) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1683) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1684) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1685) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1686) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1687) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1688) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1689) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1690) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1691) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1692) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1693) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1694) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1695) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1696) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1697) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1698) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1699) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1700) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1701) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1702) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1703) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1704) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1705) | TCSBRK = 0x5405 constant TCSBRKP (line 1706) | TCSBRKP = 0x5486 constant TCSETA (line 1707) | TCSETA = 0x5402 constant TCSETAF (line 1708) | TCSETAF = 0x5404 constant TCSETAW (line 1709) | TCSETAW = 0x5403 constant TCSETS (line 1710) | TCSETS = 0x540e constant TCSETS2 (line 1711) | TCSETS2 = 0x8030542b constant TCSETSF (line 1712) | TCSETSF = 0x5410 constant TCSETSF2 (line 1713) | TCSETSF2 = 0x8030542d constant TCSETSW (line 1714) | TCSETSW = 0x540f constant TCSETSW2 (line 1715) | TCSETSW2 = 0x8030542c constant TCXONC (line 1716) | TCXONC = 0x5406 constant TIOCCBRK (line 1717) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1718) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1719) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1720) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1721) | TIOCGETD = 0x7400 constant TIOCGETP (line 1722) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1723) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1724) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1725) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1726) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1727) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1728) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1729) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1730) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1731) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1732) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1733) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1734) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1735) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1736) | TIOCINQ = 0x467f constant TIOCLINUX (line 1737) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1738) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1739) | TIOCMBIS = 0x741b constant TIOCMGET (line 1740) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1741) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1742) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1743) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1744) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1745) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1746) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1747) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1748) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1749) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1750) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1751) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1752) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1753) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1754) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1755) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1756) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1757) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1758) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1759) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1760) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1761) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1762) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1763) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1764) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1765) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1766) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1767) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1768) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1769) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1770) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1771) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1772) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1773) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1774) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1775) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1776) | TIOCSETD = 0x7401 constant TIOCSETN (line 1777) | TIOCSETN = 0x740a constant TIOCSETP (line 1778) | TIOCSETP = 0x7409 constant TIOCSIG (line 1779) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1780) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1781) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1782) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1783) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1784) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1785) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1786) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1787) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1788) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1789) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1790) | TOSTOP = 0x8000 constant TS_COMM_LEN (line 1791) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1792) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1793) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1794) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1795) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1796) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1797) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1798) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1799) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1800) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1801) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1802) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1803) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1804) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1805) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1806) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1807) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1808) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1809) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1810) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1811) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1812) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1813) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1814) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1815) | TUNSETVNETLE = 0x800454dc constant UMOUNT_NOFOLLOW (line 1816) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1817) | VDISCARD = 0xd constant VEOF (line 1818) | VEOF = 0x10 constant VEOL (line 1819) | VEOL = 0x11 constant VEOL2 (line 1820) | VEOL2 = 0x6 constant VERASE (line 1821) | VERASE = 0x2 constant VINTR (line 1822) | VINTR = 0x0 constant VKILL (line 1823) | VKILL = 0x3 constant VLNEXT (line 1824) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1825) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1826) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1827) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1828) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1829) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1830) | VMIN = 0x4 constant VM_SOCKETS_INVALID_VERSION (line 1831) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1832) | VQUIT = 0x1 constant VREPRINT (line 1833) | VREPRINT = 0xc constant VSTART (line 1834) | VSTART = 0x8 constant VSTOP (line 1835) | VSTOP = 0x9 constant VSUSP (line 1836) | VSUSP = 0xa constant VSWTC (line 1837) | VSWTC = 0x7 constant VSWTCH (line 1838) | VSWTCH = 0x7 constant VT0 (line 1839) | VT0 = 0x0 constant VT1 (line 1840) | VT1 = 0x4000 constant VTDLY (line 1841) | VTDLY = 0x4000 constant VTIME (line 1842) | VTIME = 0x5 constant VWERASE (line 1843) | VWERASE = 0xe constant WALL (line 1844) | WALL = 0x40000000 constant WCLONE (line 1845) | WCLONE = 0x80000000 constant WCONTINUED (line 1846) | WCONTINUED = 0x8 constant WEXITED (line 1847) | WEXITED = 0x4 constant WNOHANG (line 1848) | WNOHANG = 0x1 constant WNOTHREAD (line 1849) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1850) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1851) | WORDSIZE = 0x40 constant WSTOPPED (line 1852) | WSTOPPED = 0x2 constant WUNTRACED (line 1853) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1854) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1855) | XATTR_REPLACE = 0x2 constant XCASE (line 1856) | XCASE = 0x4 constant XTABS (line 1857) | XTABS = 0x1800 constant E2BIG (line 1862) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1863) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1864) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1865) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1866) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1867) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1868) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1869) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1870) | EBADE = syscall.Errno(0x32) constant EBADF (line 1871) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1872) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1873) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1874) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1875) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1876) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1877) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1878) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1879) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1880) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1881) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1882) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1883) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1884) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1885) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1886) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1887) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1888) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1889) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1890) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1891) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1892) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1893) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1894) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1895) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1896) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1897) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1898) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1899) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1900) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1901) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1902) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1903) | EINVAL = syscall.Errno(0x16) constant EIO (line 1904) | EIO = syscall.Errno(0x5) constant EISCONN (line 1905) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1906) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1907) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1908) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1909) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1910) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1911) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1912) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1913) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1914) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1915) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1916) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1917) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1918) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1919) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1920) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1921) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1922) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1923) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1924) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1925) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1926) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1927) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1928) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1929) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1930) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1931) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1932) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1933) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1934) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1935) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1936) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1937) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1938) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1939) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1940) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1941) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1942) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1943) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1944) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1945) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1946) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1947) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1948) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1949) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1950) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1951) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1952) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1953) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1954) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1955) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1956) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1957) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1958) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1959) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1960) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1961) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1962) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1963) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1964) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1965) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1966) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1967) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1968) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1969) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1970) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1971) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1972) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1973) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1974) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1975) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1976) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1977) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1978) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1979) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1980) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1981) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1982) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1983) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1984) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1985) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1986) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1987) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1988) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1989) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1990) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1991) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1992) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1993) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1994) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1995) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1996) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1997) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 2002) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2003) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2004) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 2005) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 2006) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 2007) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 2008) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 2009) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2010) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2011) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2012) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2013) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 2014) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2015) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2016) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2017) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 2018) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 2019) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 2020) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2021) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 2022) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 2023) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 2024) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2025) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2026) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 2027) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 2028) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 2029) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 2030) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 2031) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 2032) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 2033) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 2034) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 2035) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 168) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 172) | BLKRAGET = 0x20001263 constant BLKRASET (line 173) | BLKRASET = 0x20001262 constant BLKROGET (line 174) | BLKROGET = 0x2000125e constant BLKROSET (line 175) | BLKROSET = 0x2000125d constant BLKRRPART (line 176) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x20001268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x80 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x2000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0xe constant F_GETLK64 (line 481) | F_GETLK64 = 0xe constant F_GETOWN (line 482) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x6 constant F_SETLK64 (line 497) | F_SETLK64 = 0x6 constant F_SETLKW (line 498) | F_SETLKW = 0x7 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0x7 constant F_SETOWN (line 500) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 855) | MAP_RENAME = 0x800 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x40000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x8 constant O_ASYNC (line 994) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x100 constant O_DIRECT (line 997) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 999) | O_DSYNC = 0x10 constant O_EXCL (line 1000) | O_EXCL = 0x400 constant O_FSYNC (line 1001) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1003) | O_NDELAY = 0x80 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x80 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x4010 constant O_SYNC (line 1012) | O_SYNC = 0x4010 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1185) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1186) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1187) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1188) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1189) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1190) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1191) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1192) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1193) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1194) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1195) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1197) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1198) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1199) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1200) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1201) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1202) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1203) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1204) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1205) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1206) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1207) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1208) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1209) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1210) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1211) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1212) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1213) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1214) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1215) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1216) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1217) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1218) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1219) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1220) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1221) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1222) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1223) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1224) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1225) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1226) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1227) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1228) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1230) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1231) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1232) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1233) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1234) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1235) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1236) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1237) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1238) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1239) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1240) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1241) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1242) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1243) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1244) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1245) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1246) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1247) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1248) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1249) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1250) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1251) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_MSGQUEUE (line 1252) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1253) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1254) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 1255) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 1256) | RLIMIT_RSS = 0x7 constant RLIMIT_RTPRIO (line 1257) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1258) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1259) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1260) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1261) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1262) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1263) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1264) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1265) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1266) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1267) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1268) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1269) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1270) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1271) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1272) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1273) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1274) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1275) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1276) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1277) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1278) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1279) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1280) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1281) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1282) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1283) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1284) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1285) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1286) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1287) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1288) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1289) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1290) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1291) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1292) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1293) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1294) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1295) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1296) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1297) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1298) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1299) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1300) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1301) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1302) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1303) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1304) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1305) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1306) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1307) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1308) | RTF_MSS = 0x40 constant RTF_MTU (line 1309) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1310) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1311) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1312) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1313) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1314) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1315) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1316) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1317) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1318) | RTF_STATIC = 0x400 constant RTF_THROW (line 1319) | RTF_THROW = 0x2000 constant RTF_UP (line 1320) | RTF_UP = 0x1 constant RTF_WINDOW (line 1321) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1322) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1323) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1324) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1325) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1326) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1327) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1328) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1329) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1330) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1331) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1332) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1333) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1334) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1335) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1336) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1337) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1338) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1339) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1340) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1341) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1342) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1343) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1344) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1345) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1346) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1347) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1348) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1349) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1350) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1351) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1352) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1353) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1354) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1355) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1356) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1357) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1358) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1359) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1360) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1361) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1362) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1363) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1364) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1365) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1366) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1367) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1368) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1369) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1370) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1371) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1372) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1373) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1374) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1375) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1376) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1377) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1378) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1379) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1380) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1381) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1382) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1383) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1384) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1385) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1386) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1387) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1388) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1389) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1390) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1391) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1392) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1393) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1394) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1395) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1396) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1397) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1398) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1399) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1400) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1401) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1402) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1403) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1404) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1405) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1406) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1407) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1408) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1409) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1410) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1411) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1412) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1413) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1414) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1415) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1416) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1417) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1418) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1419) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1420) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1421) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1422) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1423) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1424) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1425) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1426) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1427) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1428) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1429) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1430) | SIOCATMARK = 0x40047307 constant SIOCBONDCHANGEACTIVE (line 1431) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1432) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1433) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1434) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1435) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1436) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1437) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1438) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1439) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1440) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1441) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1442) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1443) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1444) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1445) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1446) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1447) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1448) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1449) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1450) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1451) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1452) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1453) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1454) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1455) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1456) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1457) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1458) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1459) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1460) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1461) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1462) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1463) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1464) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1465) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1466) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1467) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1468) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1469) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1470) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1471) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1472) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1473) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1474) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1475) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1476) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1477) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1478) | SIOCINQ = 0x467f constant SIOCOUTQ (line 1479) | SIOCOUTQ = 0x7472 constant SIOCOUTQNSD (line 1480) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1481) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1482) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1483) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1484) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1485) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1486) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1487) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1488) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1489) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1490) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1491) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1492) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1493) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1494) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1495) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1496) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1497) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1498) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1499) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1500) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1501) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1502) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1503) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1504) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1505) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1506) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1507) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1508) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1509) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1510) | SOCK_DGRAM = 0x1 constant SOCK_IOC_TYPE (line 1511) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1512) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1513) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1514) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1515) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1516) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1517) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1518) | SOL_AAL = 0x109 constant SOL_ALG (line 1519) | SOL_ALG = 0x117 constant SOL_ATM (line 1520) | SOL_ATM = 0x108 constant SOL_CAIF (line 1521) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1522) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1523) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1524) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1525) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1526) | SOL_IP = 0x0 constant SOL_IPV6 (line 1527) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1528) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1529) | SOL_IUCV = 0x115 constant SOL_KCM (line 1530) | SOL_KCM = 0x119 constant SOL_LLC (line 1531) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1532) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1533) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1534) | SOL_NFC = 0x118 constant SOL_PACKET (line 1535) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1536) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1537) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1538) | SOL_RAW = 0xff constant SOL_RDS (line 1539) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1540) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1541) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1542) | SOL_TCP = 0x6 constant SOL_TIPC (line 1543) | SOL_TIPC = 0x10f constant SOL_X25 (line 1544) | SOL_X25 = 0x106 constant SOMAXCONN (line 1545) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1546) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1547) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1548) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1549) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1550) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1551) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1552) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1553) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1554) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1555) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1556) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1557) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1558) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1559) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1560) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1561) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1562) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1563) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1564) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1565) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1566) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1567) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1568) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1569) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1570) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1571) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1572) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1573) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1574) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1575) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1576) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1577) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1578) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1579) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1580) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1581) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1582) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1583) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1584) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1585) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1586) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1587) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1588) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1589) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1590) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1591) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1592) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1593) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1594) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1595) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1596) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1597) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1598) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1599) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1600) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1601) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1602) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1603) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1604) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1605) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1606) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1607) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1608) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1609) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1610) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1611) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1612) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1613) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1614) | S_IEXEC = 0x40 constant S_IFBLK (line 1615) | S_IFBLK = 0x6000 constant S_IFCHR (line 1616) | S_IFCHR = 0x2000 constant S_IFDIR (line 1617) | S_IFDIR = 0x4000 constant S_IFIFO (line 1618) | S_IFIFO = 0x1000 constant S_IFLNK (line 1619) | S_IFLNK = 0xa000 constant S_IFMT (line 1620) | S_IFMT = 0xf000 constant S_IFREG (line 1621) | S_IFREG = 0x8000 constant S_IFSOCK (line 1622) | S_IFSOCK = 0xc000 constant S_IREAD (line 1623) | S_IREAD = 0x100 constant S_IRGRP (line 1624) | S_IRGRP = 0x20 constant S_IROTH (line 1625) | S_IROTH = 0x4 constant S_IRUSR (line 1626) | S_IRUSR = 0x100 constant S_IRWXG (line 1627) | S_IRWXG = 0x38 constant S_IRWXO (line 1628) | S_IRWXO = 0x7 constant S_IRWXU (line 1629) | S_IRWXU = 0x1c0 constant S_ISGID (line 1630) | S_ISGID = 0x400 constant S_ISUID (line 1631) | S_ISUID = 0x800 constant S_ISVTX (line 1632) | S_ISVTX = 0x200 constant S_IWGRP (line 1633) | S_IWGRP = 0x10 constant S_IWOTH (line 1634) | S_IWOTH = 0x2 constant S_IWRITE (line 1635) | S_IWRITE = 0x80 constant S_IWUSR (line 1636) | S_IWUSR = 0x80 constant S_IXGRP (line 1637) | S_IXGRP = 0x8 constant S_IXOTH (line 1638) | S_IXOTH = 0x1 constant S_IXUSR (line 1639) | S_IXUSR = 0x40 constant TAB0 (line 1640) | TAB0 = 0x0 constant TAB1 (line 1641) | TAB1 = 0x800 constant TAB2 (line 1642) | TAB2 = 0x1000 constant TAB3 (line 1643) | TAB3 = 0x1800 constant TABDLY (line 1644) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1645) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1646) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1647) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1648) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1649) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1650) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1651) | TCFLSH = 0x5407 constant TCGETA (line 1652) | TCGETA = 0x5401 constant TCGETS (line 1653) | TCGETS = 0x540d constant TCGETS2 (line 1654) | TCGETS2 = 0x4030542a constant TCIFLUSH (line 1655) | TCIFLUSH = 0x0 constant TCIOFF (line 1656) | TCIOFF = 0x2 constant TCIOFLUSH (line 1657) | TCIOFLUSH = 0x2 constant TCION (line 1658) | TCION = 0x3 constant TCOFLUSH (line 1659) | TCOFLUSH = 0x1 constant TCOOFF (line 1660) | TCOOFF = 0x0 constant TCOON (line 1661) | TCOON = 0x1 constant TCP_CC_INFO (line 1662) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1663) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1664) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1665) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1666) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1667) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1668) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1669) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1670) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1671) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1672) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1673) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1674) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1675) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1676) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1677) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1678) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1679) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1680) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1681) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1682) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1683) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1684) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1685) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1686) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1687) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1688) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1689) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1690) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1691) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1692) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1693) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1694) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1695) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1696) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1697) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1698) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1699) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1700) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1701) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1702) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1703) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1704) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1705) | TCSBRK = 0x5405 constant TCSBRKP (line 1706) | TCSBRKP = 0x5486 constant TCSETA (line 1707) | TCSETA = 0x5402 constant TCSETAF (line 1708) | TCSETAF = 0x5404 constant TCSETAW (line 1709) | TCSETAW = 0x5403 constant TCSETS (line 1710) | TCSETS = 0x540e constant TCSETS2 (line 1711) | TCSETS2 = 0x8030542b constant TCSETSF (line 1712) | TCSETSF = 0x5410 constant TCSETSF2 (line 1713) | TCSETSF2 = 0x8030542d constant TCSETSW (line 1714) | TCSETSW = 0x540f constant TCSETSW2 (line 1715) | TCSETSW2 = 0x8030542c constant TCXONC (line 1716) | TCXONC = 0x5406 constant TIOCCBRK (line 1717) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1718) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1719) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1720) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1721) | TIOCGETD = 0x7400 constant TIOCGETP (line 1722) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1723) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1724) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1725) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1726) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1727) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1728) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1729) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1730) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1731) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1732) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1733) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1734) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1735) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1736) | TIOCINQ = 0x467f constant TIOCLINUX (line 1737) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1738) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1739) | TIOCMBIS = 0x741b constant TIOCMGET (line 1740) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1741) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1742) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1743) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1744) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1745) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1746) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1747) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1748) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1749) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1750) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1751) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1752) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1753) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1754) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1755) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1756) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1757) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1758) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1759) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1760) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1761) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1762) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1763) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1764) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1765) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1766) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1767) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1768) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1769) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1770) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1771) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1772) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1773) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1774) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1775) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1776) | TIOCSETD = 0x7401 constant TIOCSETN (line 1777) | TIOCSETN = 0x740a constant TIOCSETP (line 1778) | TIOCSETP = 0x7409 constant TIOCSIG (line 1779) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1780) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1781) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1782) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1783) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1784) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1785) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1786) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1787) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1788) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1789) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1790) | TOSTOP = 0x8000 constant TS_COMM_LEN (line 1791) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1792) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1793) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1794) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1795) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1796) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1797) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1798) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1799) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1800) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1801) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1802) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1803) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1804) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1805) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1806) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1807) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1808) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1809) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1810) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1811) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1812) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1813) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1814) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1815) | TUNSETVNETLE = 0x800454dc constant UMOUNT_NOFOLLOW (line 1816) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1817) | VDISCARD = 0xd constant VEOF (line 1818) | VEOF = 0x10 constant VEOL (line 1819) | VEOL = 0x11 constant VEOL2 (line 1820) | VEOL2 = 0x6 constant VERASE (line 1821) | VERASE = 0x2 constant VINTR (line 1822) | VINTR = 0x0 constant VKILL (line 1823) | VKILL = 0x3 constant VLNEXT (line 1824) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1825) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1826) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1827) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1828) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1829) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1830) | VMIN = 0x4 constant VM_SOCKETS_INVALID_VERSION (line 1831) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1832) | VQUIT = 0x1 constant VREPRINT (line 1833) | VREPRINT = 0xc constant VSTART (line 1834) | VSTART = 0x8 constant VSTOP (line 1835) | VSTOP = 0x9 constant VSUSP (line 1836) | VSUSP = 0xa constant VSWTC (line 1837) | VSWTC = 0x7 constant VSWTCH (line 1838) | VSWTCH = 0x7 constant VT0 (line 1839) | VT0 = 0x0 constant VT1 (line 1840) | VT1 = 0x4000 constant VTDLY (line 1841) | VTDLY = 0x4000 constant VTIME (line 1842) | VTIME = 0x5 constant VWERASE (line 1843) | VWERASE = 0xe constant WALL (line 1844) | WALL = 0x40000000 constant WCLONE (line 1845) | WCLONE = 0x80000000 constant WCONTINUED (line 1846) | WCONTINUED = 0x8 constant WEXITED (line 1847) | WEXITED = 0x4 constant WNOHANG (line 1848) | WNOHANG = 0x1 constant WNOTHREAD (line 1849) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1850) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1851) | WORDSIZE = 0x40 constant WSTOPPED (line 1852) | WSTOPPED = 0x2 constant WUNTRACED (line 1853) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1854) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1855) | XATTR_REPLACE = 0x2 constant XCASE (line 1856) | XCASE = 0x4 constant XTABS (line 1857) | XTABS = 0x1800 constant E2BIG (line 1862) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1863) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1864) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1865) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1866) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1867) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1868) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1869) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1870) | EBADE = syscall.Errno(0x32) constant EBADF (line 1871) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1872) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1873) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1874) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1875) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1876) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1877) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1878) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1879) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1880) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1881) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1882) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1883) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1884) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1885) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1886) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1887) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1888) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1889) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1890) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1891) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1892) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1893) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1894) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1895) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1896) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1897) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1898) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1899) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1900) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1901) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1902) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1903) | EINVAL = syscall.Errno(0x16) constant EIO (line 1904) | EIO = syscall.Errno(0x5) constant EISCONN (line 1905) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1906) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1907) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1908) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1909) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1910) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1911) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1912) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1913) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1914) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1915) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1916) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1917) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1918) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1919) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1920) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1921) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1922) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1923) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1924) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1925) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1926) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1927) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1928) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1929) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1930) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1931) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1932) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1933) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1934) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1935) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1936) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1937) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1938) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1939) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1940) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1941) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1942) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1943) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1944) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1945) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1946) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1947) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1948) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1949) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1950) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1951) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1952) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1953) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1954) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1955) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1956) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1957) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1958) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1959) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1960) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1961) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1962) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1963) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1964) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1965) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1966) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1967) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1968) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1969) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1970) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1971) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1972) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1973) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1974) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1975) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1976) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1977) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1978) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1979) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1980) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1981) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1982) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1983) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1984) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1985) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1986) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1987) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1988) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1989) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1990) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1991) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1992) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1993) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1994) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1995) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1996) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1997) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 2002) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2003) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2004) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 2005) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 2006) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 2007) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 2008) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 2009) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2010) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2011) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2012) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2013) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 2014) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2015) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2016) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2017) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 2018) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 2019) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 2020) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2021) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 2022) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 2023) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 2024) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2025) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2026) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 2027) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 2028) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 2029) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 2030) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 2031) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 2032) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 2033) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 2034) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 2035) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x40041270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x80041271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 168) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x40041272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 172) | BLKRAGET = 0x20001263 constant BLKRASET (line 173) | BLKRASET = 0x20001262 constant BLKROGET (line 174) | BLKROGET = 0x2000125e constant BLKROSET (line 175) | BLKROSET = 0x2000125d constant BLKRRPART (line 176) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x20001268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x80 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x2000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0x21 constant F_GETLK64 (line 481) | F_GETLK64 = 0x21 constant F_GETOWN (line 482) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x22 constant F_SETLK64 (line 497) | F_SETLK64 = 0x22 constant F_SETLKW (line 498) | F_SETLKW = 0x23 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0x23 constant F_SETOWN (line 500) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 855) | MAP_RENAME = 0x800 constant MAP_SHARED (line 856) | MAP_SHARED = 0x1 constant MAP_STACK (line 857) | MAP_STACK = 0x40000 constant MAP_TYPE (line 858) | MAP_TYPE = 0xf constant MCL_CURRENT (line 859) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 860) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 861) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 862) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 863) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 864) | MNT_FORCE = 0x1 constant MSG_BATCH (line 865) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 866) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 867) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 868) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 869) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 870) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 871) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 872) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 873) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 874) | MSG_FIN = 0x200 constant MSG_MORE (line 875) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 876) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 877) | MSG_OOB = 0x1 constant MSG_PEEK (line 878) | MSG_PEEK = 0x2 constant MSG_PROXY (line 879) | MSG_PROXY = 0x10 constant MSG_RST (line 880) | MSG_RST = 0x1000 constant MSG_SYN (line 881) | MSG_SYN = 0x400 constant MSG_TRUNC (line 882) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 883) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 884) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 885) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 886) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 887) | MS_ASYNC = 0x1 constant MS_BIND (line 888) | MS_BIND = 0x1000 constant MS_BORN (line 889) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 890) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 891) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 892) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 893) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 894) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 895) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 896) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 897) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 898) | MS_MOVE = 0x2000 constant MS_NOATIME (line 899) | MS_NOATIME = 0x400 constant MS_NODEV (line 900) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 901) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 902) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 903) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 904) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 905) | MS_NOSUID = 0x2 constant MS_NOUSER (line 906) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 907) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 908) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 909) | MS_RDONLY = 0x1 constant MS_REC (line 910) | MS_REC = 0x4000 constant MS_RELATIME (line 911) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 912) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 913) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 914) | MS_SHARED = 0x100000 constant MS_SILENT (line 915) | MS_SILENT = 0x8000 constant MS_SLAVE (line 916) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 917) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 918) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 919) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 920) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 921) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 922) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 923) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 924) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 925) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 926) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 927) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 928) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 929) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 930) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 931) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 932) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 933) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 934) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 935) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 936) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 937) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 938) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 939) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 940) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 941) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 942) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 943) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 944) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 945) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 946) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 947) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 948) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 949) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 950) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 951) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 952) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 953) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 954) | NETLINK_XFRM = 0x6 constant NL0 (line 955) | NL0 = 0x0 constant NL1 (line 956) | NL1 = 0x100 constant NLA_ALIGNTO (line 957) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 958) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 959) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 960) | NLA_HDRLEN = 0x4 constant NLDLY (line 961) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 962) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 963) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 964) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 965) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 966) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 967) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 968) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 969) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 970) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 971) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 972) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 973) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 974) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 975) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 976) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 977) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 978) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 979) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 980) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 981) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 982) | NLM_F_ROOT = 0x100 constant NOFLSH (line 983) | NOFLSH = 0x80 constant OCRNL (line 984) | OCRNL = 0x8 constant OFDEL (line 985) | OFDEL = 0x80 constant OFILL (line 986) | OFILL = 0x40 constant OLCUC (line 987) | OLCUC = 0x2 constant ONLCR (line 988) | ONLCR = 0x4 constant ONLRET (line 989) | ONLRET = 0x20 constant ONOCR (line 990) | ONOCR = 0x10 constant OPOST (line 991) | OPOST = 0x1 constant O_ACCMODE (line 992) | O_ACCMODE = 0x3 constant O_APPEND (line 993) | O_APPEND = 0x8 constant O_ASYNC (line 994) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 995) | O_CLOEXEC = 0x80000 constant O_CREAT (line 996) | O_CREAT = 0x100 constant O_DIRECT (line 997) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 998) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 999) | O_DSYNC = 0x10 constant O_EXCL (line 1000) | O_EXCL = 0x400 constant O_FSYNC (line 1001) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 1002) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 1003) | O_NDELAY = 0x80 constant O_NOATIME (line 1004) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1005) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 1006) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1007) | O_NONBLOCK = 0x80 constant O_PATH (line 1008) | O_PATH = 0x200000 constant O_RDONLY (line 1009) | O_RDONLY = 0x0 constant O_RDWR (line 1010) | O_RDWR = 0x2 constant O_RSYNC (line 1011) | O_RSYNC = 0x4010 constant O_SYNC (line 1012) | O_SYNC = 0x4010 constant O_TMPFILE (line 1013) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1014) | O_TRUNC = 0x200 constant O_WRONLY (line 1015) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1016) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1017) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1018) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1019) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1020) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1021) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1022) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1023) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1024) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1025) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1026) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1027) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1028) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1029) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1030) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1031) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1032) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1033) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1034) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1035) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1036) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1037) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1038) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1039) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1040) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1041) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1042) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1043) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1044) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1045) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1046) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1047) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1048) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1049) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1050) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1051) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1052) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1053) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1054) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1055) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1056) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1057) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1058) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1059) | PACKET_VNET_HDR = 0xf constant PARENB (line 1060) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1061) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1062) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1063) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1064) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1065) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1066) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1067) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1068) | PARITY_NONE = 0x1 constant PARMRK (line 1069) | PARMRK = 0x8 constant PARODD (line 1070) | PARODD = 0x200 constant PENDIN (line 1071) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1072) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 1073) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 1074) | PERF_EVENT_IOC_ID = 0x40042407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1075) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 1076) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_REFRESH (line 1077) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 1078) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 1079) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 1080) | PERF_EVENT_IOC_SET_FILTER = 0x80042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1081) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PRIO_PGRP (line 1082) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1083) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1084) | PRIO_USER = 0x2 constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1086) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1087) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1088) | PROT_NONE = 0x0 constant PROT_READ (line 1089) | PROT_READ = 0x1 constant PROT_WRITE (line 1090) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1091) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1092) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1093) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1094) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1095) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1096) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1097) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1098) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1099) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1100) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1101) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1102) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1103) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1104) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1105) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1106) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1107) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1108) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1109) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1110) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1111) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1112) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1113) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1114) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1115) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1116) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1117) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1118) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1119) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1120) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1121) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1122) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1123) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1124) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1125) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1126) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1127) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1128) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1129) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1130) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1131) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1132) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1133) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1134) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1135) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1136) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1137) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1138) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1139) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1140) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1141) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1142) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1143) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1144) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1145) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1146) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1147) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1148) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1149) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1150) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1151) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1152) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1153) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1154) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1155) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1156) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1157) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1158) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1159) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1160) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1161) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1162) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1163) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1164) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1165) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1166) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1167) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1168) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1169) | PR_SET_PTRACER_ANY = 0xffffffff constant PR_SET_SECCOMP (line 1170) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1171) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1172) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1173) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1174) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1175) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1176) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1177) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1178) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1179) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1180) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1181) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1182) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1183) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1184) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1185) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1186) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1187) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1188) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1189) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1190) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1191) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1192) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1193) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1194) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1195) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1196) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1197) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1198) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1199) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1200) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1201) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1202) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1203) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1204) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1205) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1206) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1207) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1208) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1209) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1210) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1211) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1212) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1213) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1214) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1215) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1216) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1217) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1218) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1219) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1220) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1221) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1222) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1223) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1224) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1225) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1226) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1227) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1228) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1230) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1231) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1232) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1233) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1234) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1235) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1236) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1237) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1238) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1239) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1240) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1241) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1242) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1243) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1244) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1245) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1246) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1247) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1248) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1249) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1250) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1251) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_MSGQUEUE (line 1252) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1253) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1254) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 1255) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 1256) | RLIMIT_RSS = 0x7 constant RLIMIT_RTPRIO (line 1257) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1258) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1259) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1260) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1261) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1262) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1263) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1264) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1265) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1266) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1267) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1268) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1269) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1270) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1271) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1272) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1273) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1274) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1275) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1276) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1277) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1278) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1279) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1280) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1281) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1282) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1283) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1284) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1285) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1286) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1287) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1288) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1289) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1290) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1291) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1292) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1293) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1294) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1295) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1296) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1297) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1298) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1299) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1300) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1301) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1302) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1303) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1304) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1305) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1306) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1307) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1308) | RTF_MSS = 0x40 constant RTF_MTU (line 1309) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1310) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1311) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1312) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1313) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1314) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1315) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1316) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1317) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1318) | RTF_STATIC = 0x400 constant RTF_THROW (line 1319) | RTF_THROW = 0x2000 constant RTF_UP (line 1320) | RTF_UP = 0x1 constant RTF_WINDOW (line 1321) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1322) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1323) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1324) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1325) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1326) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1327) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1328) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1329) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1330) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1331) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1332) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1333) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1334) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1335) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1336) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1337) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1338) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1339) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1340) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1341) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1342) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1343) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1344) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1345) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1346) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1347) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1348) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1349) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1350) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1351) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1352) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1353) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1354) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1355) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1356) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1357) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1358) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1359) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1360) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1361) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1362) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1363) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1364) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1365) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1366) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1367) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1368) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1369) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1370) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1371) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1372) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1373) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1374) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1375) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1376) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1377) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1378) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1379) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1380) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1381) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1382) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1383) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1384) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1385) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1386) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1387) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1388) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1389) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1390) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1391) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1392) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1393) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1394) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1395) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1396) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1397) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1398) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1399) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1400) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1401) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1402) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1403) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1404) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1405) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1406) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1407) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1408) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1409) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1410) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1411) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1412) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1413) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1414) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1415) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1416) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1417) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1418) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1419) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1420) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1421) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1422) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1423) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1424) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1425) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1426) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1427) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1428) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1429) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1430) | SIOCATMARK = 0x40047307 constant SIOCBONDCHANGEACTIVE (line 1431) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1432) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1433) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1434) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1435) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1436) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1437) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1438) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1439) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1440) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1441) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1442) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1443) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1444) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1445) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1446) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1447) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1448) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1449) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1450) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1451) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1452) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1453) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1454) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1455) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1456) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1457) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1458) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1459) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1460) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1461) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1462) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1463) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1464) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1465) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1466) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1467) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1468) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1469) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1470) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1471) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1472) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1473) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1474) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1475) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1476) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1477) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1478) | SIOCINQ = 0x467f constant SIOCOUTQ (line 1479) | SIOCOUTQ = 0x7472 constant SIOCOUTQNSD (line 1480) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1481) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1482) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1483) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1484) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1485) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1486) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1487) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1488) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1489) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1490) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1491) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1492) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1493) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1494) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1495) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1496) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1497) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1498) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1499) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1500) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1501) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1502) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1503) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1504) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1505) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1506) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1507) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1508) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1509) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1510) | SOCK_DGRAM = 0x1 constant SOCK_IOC_TYPE (line 1511) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1512) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1513) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1514) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1515) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1516) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1517) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1518) | SOL_AAL = 0x109 constant SOL_ALG (line 1519) | SOL_ALG = 0x117 constant SOL_ATM (line 1520) | SOL_ATM = 0x108 constant SOL_CAIF (line 1521) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1522) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1523) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1524) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1525) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1526) | SOL_IP = 0x0 constant SOL_IPV6 (line 1527) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1528) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1529) | SOL_IUCV = 0x115 constant SOL_KCM (line 1530) | SOL_KCM = 0x119 constant SOL_LLC (line 1531) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1532) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1533) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1534) | SOL_NFC = 0x118 constant SOL_PACKET (line 1535) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1536) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1537) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1538) | SOL_RAW = 0xff constant SOL_RDS (line 1539) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1540) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1541) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1542) | SOL_TCP = 0x6 constant SOL_TIPC (line 1543) | SOL_TIPC = 0x10f constant SOL_X25 (line 1544) | SOL_X25 = 0x106 constant SOMAXCONN (line 1545) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1546) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1547) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1548) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1549) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1550) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1551) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1552) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1553) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1554) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1555) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1556) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1557) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1558) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1559) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1560) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1561) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1562) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1563) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1564) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1565) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1566) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1567) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1568) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1569) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1570) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1571) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1572) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1573) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1574) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1575) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1576) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1577) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1578) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1579) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1580) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1581) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1582) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1583) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1584) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1585) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1586) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1587) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1588) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1589) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1590) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1591) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1592) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1593) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1594) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1595) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1596) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1597) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1598) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1599) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1600) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1601) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1602) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1603) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1604) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1605) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1606) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1607) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1608) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1609) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1610) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1611) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1612) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1613) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1614) | S_IEXEC = 0x40 constant S_IFBLK (line 1615) | S_IFBLK = 0x6000 constant S_IFCHR (line 1616) | S_IFCHR = 0x2000 constant S_IFDIR (line 1617) | S_IFDIR = 0x4000 constant S_IFIFO (line 1618) | S_IFIFO = 0x1000 constant S_IFLNK (line 1619) | S_IFLNK = 0xa000 constant S_IFMT (line 1620) | S_IFMT = 0xf000 constant S_IFREG (line 1621) | S_IFREG = 0x8000 constant S_IFSOCK (line 1622) | S_IFSOCK = 0xc000 constant S_IREAD (line 1623) | S_IREAD = 0x100 constant S_IRGRP (line 1624) | S_IRGRP = 0x20 constant S_IROTH (line 1625) | S_IROTH = 0x4 constant S_IRUSR (line 1626) | S_IRUSR = 0x100 constant S_IRWXG (line 1627) | S_IRWXG = 0x38 constant S_IRWXO (line 1628) | S_IRWXO = 0x7 constant S_IRWXU (line 1629) | S_IRWXU = 0x1c0 constant S_ISGID (line 1630) | S_ISGID = 0x400 constant S_ISUID (line 1631) | S_ISUID = 0x800 constant S_ISVTX (line 1632) | S_ISVTX = 0x200 constant S_IWGRP (line 1633) | S_IWGRP = 0x10 constant S_IWOTH (line 1634) | S_IWOTH = 0x2 constant S_IWRITE (line 1635) | S_IWRITE = 0x80 constant S_IWUSR (line 1636) | S_IWUSR = 0x80 constant S_IXGRP (line 1637) | S_IXGRP = 0x8 constant S_IXOTH (line 1638) | S_IXOTH = 0x1 constant S_IXUSR (line 1639) | S_IXUSR = 0x40 constant TAB0 (line 1640) | TAB0 = 0x0 constant TAB1 (line 1641) | TAB1 = 0x800 constant TAB2 (line 1642) | TAB2 = 0x1000 constant TAB3 (line 1643) | TAB3 = 0x1800 constant TABDLY (line 1644) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1645) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1646) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1647) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1648) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1649) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1650) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1651) | TCFLSH = 0x5407 constant TCGETA (line 1652) | TCGETA = 0x5401 constant TCGETS (line 1653) | TCGETS = 0x540d constant TCGETS2 (line 1654) | TCGETS2 = 0x4030542a constant TCIFLUSH (line 1655) | TCIFLUSH = 0x0 constant TCIOFF (line 1656) | TCIOFF = 0x2 constant TCIOFLUSH (line 1657) | TCIOFLUSH = 0x2 constant TCION (line 1658) | TCION = 0x3 constant TCOFLUSH (line 1659) | TCOFLUSH = 0x1 constant TCOOFF (line 1660) | TCOOFF = 0x0 constant TCOON (line 1661) | TCOON = 0x1 constant TCP_CC_INFO (line 1662) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1663) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1664) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1665) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1666) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1667) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1668) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1669) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1670) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1671) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1672) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1673) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1674) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1675) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1676) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1677) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1678) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1679) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1680) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1681) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1682) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1683) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1684) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1685) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1686) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1687) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1688) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1689) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1690) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1691) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1692) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1693) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1694) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1695) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1696) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1697) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1698) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1699) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1700) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1701) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1702) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1703) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1704) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1705) | TCSBRK = 0x5405 constant TCSBRKP (line 1706) | TCSBRKP = 0x5486 constant TCSETA (line 1707) | TCSETA = 0x5402 constant TCSETAF (line 1708) | TCSETAF = 0x5404 constant TCSETAW (line 1709) | TCSETAW = 0x5403 constant TCSETS (line 1710) | TCSETS = 0x540e constant TCSETS2 (line 1711) | TCSETS2 = 0x8030542b constant TCSETSF (line 1712) | TCSETSF = 0x5410 constant TCSETSF2 (line 1713) | TCSETSF2 = 0x8030542d constant TCSETSW (line 1714) | TCSETSW = 0x540f constant TCSETSW2 (line 1715) | TCSETSW2 = 0x8030542c constant TCXONC (line 1716) | TCXONC = 0x5406 constant TIOCCBRK (line 1717) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1718) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1719) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1720) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1721) | TIOCGETD = 0x7400 constant TIOCGETP (line 1722) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1723) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1724) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1725) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1726) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1727) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1728) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1729) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1730) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1731) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1732) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1733) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1734) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1735) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1736) | TIOCINQ = 0x467f constant TIOCLINUX (line 1737) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1738) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1739) | TIOCMBIS = 0x741b constant TIOCMGET (line 1740) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1741) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1742) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1743) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1744) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1745) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1746) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1747) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1748) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1749) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1750) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1751) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1752) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1753) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1754) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1755) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1756) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1757) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1758) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1759) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1760) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1761) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1762) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1763) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1764) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1765) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1766) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1767) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1768) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1769) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1770) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1771) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1772) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1773) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1774) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1775) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1776) | TIOCSETD = 0x7401 constant TIOCSETN (line 1777) | TIOCSETN = 0x740a constant TIOCSETP (line 1778) | TIOCSETP = 0x7409 constant TIOCSIG (line 1779) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1780) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1781) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1782) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1783) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1784) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1785) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1786) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1787) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1788) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1789) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1790) | TOSTOP = 0x8000 constant TS_COMM_LEN (line 1791) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1792) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 1793) | TUNDETACHFILTER = 0x800854d6 constant TUNGETFEATURES (line 1794) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1795) | TUNGETFILTER = 0x400854db constant TUNGETIFF (line 1796) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1797) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1798) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1799) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1800) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1801) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1802) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1803) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1804) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1805) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1806) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1807) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1808) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1809) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1810) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1811) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1812) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1813) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1814) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1815) | TUNSETVNETLE = 0x800454dc constant UMOUNT_NOFOLLOW (line 1816) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1817) | VDISCARD = 0xd constant VEOF (line 1818) | VEOF = 0x10 constant VEOL (line 1819) | VEOL = 0x11 constant VEOL2 (line 1820) | VEOL2 = 0x6 constant VERASE (line 1821) | VERASE = 0x2 constant VINTR (line 1822) | VINTR = 0x0 constant VKILL (line 1823) | VKILL = 0x3 constant VLNEXT (line 1824) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1825) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1826) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1827) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1828) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1829) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1830) | VMIN = 0x4 constant VM_SOCKETS_INVALID_VERSION (line 1831) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1832) | VQUIT = 0x1 constant VREPRINT (line 1833) | VREPRINT = 0xc constant VSTART (line 1834) | VSTART = 0x8 constant VSTOP (line 1835) | VSTOP = 0x9 constant VSUSP (line 1836) | VSUSP = 0xa constant VSWTC (line 1837) | VSWTC = 0x7 constant VSWTCH (line 1838) | VSWTCH = 0x7 constant VT0 (line 1839) | VT0 = 0x0 constant VT1 (line 1840) | VT1 = 0x4000 constant VTDLY (line 1841) | VTDLY = 0x4000 constant VTIME (line 1842) | VTIME = 0x5 constant VWERASE (line 1843) | VWERASE = 0xe constant WALL (line 1844) | WALL = 0x40000000 constant WCLONE (line 1845) | WCLONE = 0x80000000 constant WCONTINUED (line 1846) | WCONTINUED = 0x8 constant WEXITED (line 1847) | WEXITED = 0x4 constant WNOHANG (line 1848) | WNOHANG = 0x1 constant WNOTHREAD (line 1849) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1850) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1851) | WORDSIZE = 0x20 constant WSTOPPED (line 1852) | WSTOPPED = 0x2 constant WUNTRACED (line 1853) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1854) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1855) | XATTR_REPLACE = 0x2 constant XCASE (line 1856) | XCASE = 0x4 constant XTABS (line 1857) | XTABS = 0x1800 constant E2BIG (line 1862) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1863) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1864) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1865) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1866) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1867) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1868) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1869) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1870) | EBADE = syscall.Errno(0x32) constant EBADF (line 1871) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1872) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1873) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1874) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1875) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1876) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1877) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1878) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1879) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1880) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1881) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1882) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1883) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1884) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1885) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1886) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1887) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1888) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1889) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1890) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1891) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1892) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1893) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1894) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1895) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1896) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1897) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1898) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1899) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1900) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1901) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1902) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1903) | EINVAL = syscall.Errno(0x16) constant EIO (line 1904) | EIO = syscall.Errno(0x5) constant EISCONN (line 1905) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1906) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1907) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1908) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1909) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1910) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1911) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1912) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1913) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1914) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1915) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1916) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1917) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1918) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1919) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1920) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1921) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1922) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1923) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1924) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1925) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1926) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1927) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1928) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1929) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1930) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1931) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1932) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1933) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1934) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1935) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1936) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1937) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1938) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1939) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1940) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1941) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1942) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1943) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1944) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1945) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1946) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1947) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1948) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1949) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1950) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1951) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1952) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1953) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1954) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1955) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1956) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1957) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1958) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1959) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1960) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1961) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1962) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1963) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1964) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1965) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1966) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1967) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1968) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1969) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1970) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1971) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1972) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1973) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1974) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1975) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1976) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1977) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1978) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1979) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1980) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1981) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1982) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1983) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1984) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1985) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1986) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1987) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1988) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1989) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1990) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1991) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1992) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1993) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1994) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1995) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1996) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1997) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 2002) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2003) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2004) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 2005) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 2006) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 2007) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 2008) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 2009) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2010) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2011) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2012) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2013) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 2014) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2015) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2016) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2017) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 2018) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 2019) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 2020) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2021) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 2022) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 2023) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 2024) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2025) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2026) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 2027) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 2028) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 2029) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 2030) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 2031) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 2032) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 2033) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 2034) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 2035) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x17 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x11 constant B1152000 (line 137) | B1152000 = 0x18 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x19 constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x1a constant B230400 (line 146) | B230400 = 0x12 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x1b constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x1c constant B3500000 (line 151) | B3500000 = 0x1d constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x1e constant B460800 (line 154) | B460800 = 0x13 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x14 constant B57600 (line 158) | B57600 = 0x10 constant B576000 (line 159) | B576000 = 0x15 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x16 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 168) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 172) | BLKRAGET = 0x20001263 constant BLKRASET (line 173) | BLKRASET = 0x20001262 constant BLKROGET (line 174) | BLKROGET = 0x2000125e constant BLKROSET (line 175) | BLKROSET = 0x2000125d constant BLKRRPART (line 176) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x20001268 constant BOTHER (line 180) | BOTHER = 0x1f constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x8000 constant BSDLY (line 228) | BSDLY = 0x8000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0xff constant CBAUDEX (line 250) | CBAUDEX = 0x0 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0xff0000 constant CLOCAL (line 253) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x1000 constant CR2 (line 296) | CR2 = 0x2000 constant CR3 (line 297) | CR3 = 0x3000 constant CRDLY (line 298) | CRDLY = 0x3000 constant CREAD (line 299) | CREAD = 0x800 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x100 constant CS7 (line 303) | CS7 = 0x200 constant CS8 (line 304) | CS8 = 0x300 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x300 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x400 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x40 constant ECHOE (line 323) | ECHOE = 0x2 constant ECHOK (line 324) | ECHOK = 0x4 constant ECHOKE (line 325) | ECHOKE = 0x1 constant ECHONL (line 326) | ECHONL = 0x10 constant ECHOPRT (line 327) | ECHOPRT = 0x20 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x4000 constant FFDLY (line 454) | FFDLY = 0x4000 constant FLUSHO (line 455) | FLUSHO = 0x800000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0x5 constant F_GETLK64 (line 481) | F_GETLK64 = 0xc constant F_GETOWN (line 482) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x6 constant F_SETLK64 (line 497) | F_SETLK64 = 0xd constant F_SETLKW (line 498) | F_SETLKW = 0x7 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0xe constant F_SETOWN (line 500) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x4000 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x100 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x400 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x80 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x1000 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x400 constant IXON (line 768) | IXON = 0x200 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 855) | MAP_SHARED = 0x1 constant MAP_STACK (line 856) | MAP_STACK = 0x20000 constant MAP_TYPE (line 857) | MAP_TYPE = 0xf constant MCL_CURRENT (line 858) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 859) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 860) | MCL_ONFAULT = 0x8000 constant MNT_DETACH (line 861) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 862) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 863) | MNT_FORCE = 0x1 constant MSG_BATCH (line 864) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 865) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 866) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 867) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 868) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 869) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 870) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 871) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 872) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 873) | MSG_FIN = 0x200 constant MSG_MORE (line 874) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 875) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 876) | MSG_OOB = 0x1 constant MSG_PEEK (line 877) | MSG_PEEK = 0x2 constant MSG_PROXY (line 878) | MSG_PROXY = 0x10 constant MSG_RST (line 879) | MSG_RST = 0x1000 constant MSG_SYN (line 880) | MSG_SYN = 0x400 constant MSG_TRUNC (line 881) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 882) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 883) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 884) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 885) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 886) | MS_ASYNC = 0x1 constant MS_BIND (line 887) | MS_BIND = 0x1000 constant MS_BORN (line 888) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 889) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 890) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 891) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 892) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 893) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 894) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 895) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 896) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 897) | MS_MOVE = 0x2000 constant MS_NOATIME (line 898) | MS_NOATIME = 0x400 constant MS_NODEV (line 899) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 900) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 901) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 902) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 903) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 904) | MS_NOSUID = 0x2 constant MS_NOUSER (line 905) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 906) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 907) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 908) | MS_RDONLY = 0x1 constant MS_REC (line 909) | MS_REC = 0x4000 constant MS_RELATIME (line 910) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 911) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 912) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 913) | MS_SHARED = 0x100000 constant MS_SILENT (line 914) | MS_SILENT = 0x8000 constant MS_SLAVE (line 915) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 916) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 917) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 918) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 919) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 920) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 921) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 922) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 923) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 924) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 925) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 926) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 927) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 928) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 929) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 930) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 931) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 932) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 933) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 934) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 935) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 936) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 937) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 938) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 939) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 940) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 941) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 942) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 943) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 944) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 945) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 946) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 947) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 948) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 949) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 950) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 951) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 952) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 953) | NETLINK_XFRM = 0x6 constant NL0 (line 954) | NL0 = 0x0 constant NL1 (line 955) | NL1 = 0x100 constant NL2 (line 956) | NL2 = 0x200 constant NL3 (line 957) | NL3 = 0x300 constant NLA_ALIGNTO (line 958) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 959) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 960) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 961) | NLA_HDRLEN = 0x4 constant NLDLY (line 962) | NLDLY = 0x300 constant NLMSG_ALIGNTO (line 963) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 964) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 965) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 966) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 967) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 968) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 969) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 970) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 971) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 972) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 973) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 974) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 975) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 976) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 977) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 978) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 979) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 980) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 981) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 982) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 983) | NLM_F_ROOT = 0x100 constant NOFLSH (line 984) | NOFLSH = 0x80000000 constant OCRNL (line 985) | OCRNL = 0x8 constant OFDEL (line 986) | OFDEL = 0x80 constant OFILL (line 987) | OFILL = 0x40 constant OLCUC (line 988) | OLCUC = 0x4 constant ONLCR (line 989) | ONLCR = 0x2 constant ONLRET (line 990) | ONLRET = 0x20 constant ONOCR (line 991) | ONOCR = 0x10 constant OPOST (line 992) | OPOST = 0x1 constant O_ACCMODE (line 993) | O_ACCMODE = 0x3 constant O_APPEND (line 994) | O_APPEND = 0x400 constant O_ASYNC (line 995) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 996) | O_CLOEXEC = 0x80000 constant O_CREAT (line 997) | O_CREAT = 0x40 constant O_DIRECT (line 998) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 999) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 1000) | O_DSYNC = 0x1000 constant O_EXCL (line 1001) | O_EXCL = 0x80 constant O_FSYNC (line 1002) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1003) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1004) | O_NDELAY = 0x800 constant O_NOATIME (line 1005) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1006) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1007) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 1008) | O_NONBLOCK = 0x800 constant O_PATH (line 1009) | O_PATH = 0x200000 constant O_RDONLY (line 1010) | O_RDONLY = 0x0 constant O_RDWR (line 1011) | O_RDWR = 0x2 constant O_RSYNC (line 1012) | O_RSYNC = 0x101000 constant O_SYNC (line 1013) | O_SYNC = 0x101000 constant O_TMPFILE (line 1014) | O_TMPFILE = 0x404000 constant O_TRUNC (line 1015) | O_TRUNC = 0x200 constant O_WRONLY (line 1016) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1017) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1018) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1019) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1020) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1021) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1022) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1023) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1024) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1025) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1026) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1027) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1028) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1029) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1030) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1031) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1032) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1033) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1034) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1035) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1036) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1037) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1038) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1039) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1040) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1041) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1042) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1043) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1044) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1045) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1046) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1047) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1048) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1049) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1050) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1051) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1052) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1053) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1054) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1055) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1056) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1057) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1058) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1059) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1060) | PACKET_VNET_HDR = 0xf constant PARENB (line 1061) | PARENB = 0x1000 constant PARITY_CRC16_PR0 (line 1062) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1063) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1064) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1065) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1066) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1067) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1068) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1069) | PARITY_NONE = 0x1 constant PARMRK (line 1070) | PARMRK = 0x8 constant PARODD (line 1071) | PARODD = 0x2000 constant PENDIN (line 1072) | PENDIN = 0x20000000 constant PERF_EVENT_IOC_DISABLE (line 1073) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 1074) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 1075) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1076) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 1077) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_REFRESH (line 1078) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 1079) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 1080) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 1081) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1082) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PRIO_PGRP (line 1083) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1084) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1085) | PRIO_USER = 0x2 constant PROT_EXEC (line 1086) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1087) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1088) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1089) | PROT_NONE = 0x0 constant PROT_READ (line 1090) | PROT_READ = 0x1 constant PROT_SAO (line 1091) | PROT_SAO = 0x10 constant PROT_WRITE (line 1092) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1093) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1094) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1095) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1096) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1097) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1098) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1099) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1100) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1101) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1102) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1103) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1104) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1105) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1106) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1107) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1108) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1109) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1110) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1111) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1112) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1113) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1114) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1115) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1116) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1117) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1118) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1119) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1120) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1121) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1122) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1123) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1124) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1125) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1126) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1127) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1128) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1129) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1130) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1131) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1132) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1133) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1134) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1135) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1136) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1137) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1138) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1139) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1140) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1141) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1142) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1143) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1144) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1145) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1146) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1147) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1148) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1149) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1150) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1151) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1152) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1153) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1154) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1155) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1156) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1157) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1158) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1159) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1160) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1161) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1162) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1163) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1164) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1165) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1166) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1167) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1168) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1169) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1170) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1171) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1172) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1173) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1174) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1175) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1176) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1177) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1178) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1179) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1180) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1181) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1182) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1183) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1184) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1185) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1186) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1187) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1188) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1189) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1190) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1191) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1192) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1193) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1194) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1195) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1196) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1197) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1198) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETEVRREGS (line 1199) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 1200) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1201) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGS64 (line 1202) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETREGSET (line 1203) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1204) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1205) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GETVRREGS (line 1206) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 1207) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 1208) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_INTERRUPT (line 1209) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1210) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1211) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1212) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1213) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1214) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1215) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1216) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1217) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1218) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1219) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1220) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1221) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1222) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1223) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1224) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1225) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1226) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1227) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1228) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1230) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1231) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1232) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETEVRREGS (line 1233) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 1234) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1235) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1236) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGS64 (line 1237) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETREGSET (line 1238) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1239) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1240) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SETVRREGS (line 1241) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 1242) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 1243) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 1244) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SINGLESTEP (line 1245) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1246) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1247) | PTRACE_TRACEME = 0x0 constant PT_CCR (line 1248) | PT_CCR = 0x26 constant PT_CTR (line 1249) | PT_CTR = 0x23 constant PT_DAR (line 1250) | PT_DAR = 0x29 constant PT_DSCR (line 1251) | PT_DSCR = 0x2c constant PT_DSISR (line 1252) | PT_DSISR = 0x2a constant PT_FPR0 (line 1253) | PT_FPR0 = 0x30 constant PT_FPSCR (line 1254) | PT_FPSCR = 0x50 constant PT_LNK (line 1255) | PT_LNK = 0x24 constant PT_MSR (line 1256) | PT_MSR = 0x21 constant PT_NIP (line 1257) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 1258) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 1259) | PT_R0 = 0x0 constant PT_R1 (line 1260) | PT_R1 = 0x1 constant PT_R10 (line 1261) | PT_R10 = 0xa constant PT_R11 (line 1262) | PT_R11 = 0xb constant PT_R12 (line 1263) | PT_R12 = 0xc constant PT_R13 (line 1264) | PT_R13 = 0xd constant PT_R14 (line 1265) | PT_R14 = 0xe constant PT_R15 (line 1266) | PT_R15 = 0xf constant PT_R16 (line 1267) | PT_R16 = 0x10 constant PT_R17 (line 1268) | PT_R17 = 0x11 constant PT_R18 (line 1269) | PT_R18 = 0x12 constant PT_R19 (line 1270) | PT_R19 = 0x13 constant PT_R2 (line 1271) | PT_R2 = 0x2 constant PT_R20 (line 1272) | PT_R20 = 0x14 constant PT_R21 (line 1273) | PT_R21 = 0x15 constant PT_R22 (line 1274) | PT_R22 = 0x16 constant PT_R23 (line 1275) | PT_R23 = 0x17 constant PT_R24 (line 1276) | PT_R24 = 0x18 constant PT_R25 (line 1277) | PT_R25 = 0x19 constant PT_R26 (line 1278) | PT_R26 = 0x1a constant PT_R27 (line 1279) | PT_R27 = 0x1b constant PT_R28 (line 1280) | PT_R28 = 0x1c constant PT_R29 (line 1281) | PT_R29 = 0x1d constant PT_R3 (line 1282) | PT_R3 = 0x3 constant PT_R30 (line 1283) | PT_R30 = 0x1e constant PT_R31 (line 1284) | PT_R31 = 0x1f constant PT_R4 (line 1285) | PT_R4 = 0x4 constant PT_R5 (line 1286) | PT_R5 = 0x5 constant PT_R6 (line 1287) | PT_R6 = 0x6 constant PT_R7 (line 1288) | PT_R7 = 0x7 constant PT_R8 (line 1289) | PT_R8 = 0x8 constant PT_R9 (line 1290) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 1291) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 1292) | PT_RESULT = 0x2b constant PT_SOFTE (line 1293) | PT_SOFTE = 0x27 constant PT_TRAP (line 1294) | PT_TRAP = 0x28 constant PT_VR0 (line 1295) | PT_VR0 = 0x52 constant PT_VRSAVE (line 1296) | PT_VRSAVE = 0x94 constant PT_VSCR (line 1297) | PT_VSCR = 0x93 constant PT_VSR0 (line 1298) | PT_VSR0 = 0x96 constant PT_VSR31 (line 1299) | PT_VSR31 = 0xd4 constant PT_XER (line 1300) | PT_XER = 0x25 constant RLIMIT_AS (line 1301) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1302) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1303) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1304) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1305) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1306) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1307) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1308) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1309) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1310) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1311) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1312) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1313) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1314) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1315) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1316) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1317) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1318) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1319) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1320) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1321) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1322) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1323) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1324) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1325) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1326) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1327) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1328) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1329) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1330) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1331) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1332) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1333) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1334) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1335) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1336) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1337) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1338) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1339) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1340) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1341) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1342) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1343) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1344) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1345) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1346) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1347) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1348) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1349) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1350) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1351) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1352) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1353) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1354) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1355) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1356) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1357) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1358) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1359) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1360) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1361) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1362) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1363) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1364) | RTF_MSS = 0x40 constant RTF_MTU (line 1365) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1366) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1367) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1368) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1369) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1370) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1371) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1372) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1373) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1374) | RTF_STATIC = 0x400 constant RTF_THROW (line 1375) | RTF_THROW = 0x2000 constant RTF_UP (line 1376) | RTF_UP = 0x1 constant RTF_WINDOW (line 1377) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1378) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1379) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1380) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1381) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1382) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1383) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1384) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1385) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1386) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1387) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1388) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1389) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1390) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1391) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1392) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1393) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1394) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1395) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1396) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1397) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1398) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1399) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1400) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1401) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1402) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1403) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1404) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1405) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1406) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1407) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1408) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1409) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1410) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1411) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1412) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1413) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1414) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1415) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1416) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1417) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1418) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1419) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1420) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1421) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1422) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1423) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1424) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1425) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1426) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1427) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1428) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1429) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1430) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1431) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1432) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1433) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1434) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1435) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1436) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1437) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1438) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1439) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1440) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1441) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1442) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1443) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1444) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1445) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1446) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1447) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1448) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1449) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1450) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1451) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1452) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1453) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1454) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1455) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1456) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1457) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1458) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1459) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1460) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1461) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1462) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1463) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1464) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1465) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1466) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1467) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1468) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1469) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1470) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1471) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1472) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1473) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1474) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1475) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1476) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1477) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1478) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1479) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1480) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1481) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1482) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1483) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1484) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1485) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1486) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1487) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1488) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1489) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1490) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1491) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1492) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1493) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1494) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1495) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1496) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1497) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1498) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1499) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1500) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1501) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1502) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1503) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1504) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1505) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1506) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1507) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1508) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1509) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1510) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1511) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1512) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1513) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1514) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1515) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1516) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1517) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1518) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1519) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1520) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1521) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1522) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1523) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1524) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1525) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1526) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1527) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1528) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1529) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1530) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1531) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1532) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1533) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1534) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 1535) | SIOCOUTQ = 0x40047473 constant SIOCOUTQNSD (line 1536) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1537) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1538) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1539) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1540) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1541) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1542) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1543) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1544) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1545) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1546) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1547) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1548) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1549) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1550) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1551) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1552) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1553) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1554) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1555) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1556) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1557) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1558) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1559) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1560) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1561) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1562) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1563) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1564) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1565) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1566) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1567) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1568) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1569) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1570) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1571) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1572) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1573) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1574) | SOL_AAL = 0x109 constant SOL_ALG (line 1575) | SOL_ALG = 0x117 constant SOL_ATM (line 1576) | SOL_ATM = 0x108 constant SOL_CAIF (line 1577) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1578) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1579) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1580) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1581) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1582) | SOL_IP = 0x0 constant SOL_IPV6 (line 1583) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1584) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1585) | SOL_IUCV = 0x115 constant SOL_KCM (line 1586) | SOL_KCM = 0x119 constant SOL_LLC (line 1587) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1588) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1589) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1590) | SOL_NFC = 0x118 constant SOL_PACKET (line 1591) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1592) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1593) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1594) | SOL_RAW = 0xff constant SOL_RDS (line 1595) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1596) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1597) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1598) | SOL_TCP = 0x6 constant SOL_TIPC (line 1599) | SOL_TIPC = 0x10f constant SOL_X25 (line 1600) | SOL_X25 = 0x106 constant SOMAXCONN (line 1601) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1602) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1603) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1604) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1605) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1606) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1607) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1608) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1609) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1610) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1611) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1612) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1613) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1614) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1615) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1616) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1617) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1618) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1619) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1620) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1621) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1622) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1623) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1624) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1625) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1626) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1627) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1628) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1629) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 1630) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1631) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1632) | SO_PEERCRED = 0x15 constant SO_PEERNAME (line 1633) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1634) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1635) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1636) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1637) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1638) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1639) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 1640) | SO_RCVTIMEO = 0x12 constant SO_REUSEADDR (line 1641) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1642) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1643) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1644) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1645) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1646) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1647) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1648) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1649) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1650) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 1651) | SO_SNDTIMEO = 0x13 constant SO_TIMESTAMP (line 1652) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1653) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1654) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1655) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1656) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1657) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1658) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1659) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1660) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1661) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1662) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1663) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1664) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1665) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1666) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1667) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1668) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1669) | S_IEXEC = 0x40 constant S_IFBLK (line 1670) | S_IFBLK = 0x6000 constant S_IFCHR (line 1671) | S_IFCHR = 0x2000 constant S_IFDIR (line 1672) | S_IFDIR = 0x4000 constant S_IFIFO (line 1673) | S_IFIFO = 0x1000 constant S_IFLNK (line 1674) | S_IFLNK = 0xa000 constant S_IFMT (line 1675) | S_IFMT = 0xf000 constant S_IFREG (line 1676) | S_IFREG = 0x8000 constant S_IFSOCK (line 1677) | S_IFSOCK = 0xc000 constant S_IREAD (line 1678) | S_IREAD = 0x100 constant S_IRGRP (line 1679) | S_IRGRP = 0x20 constant S_IROTH (line 1680) | S_IROTH = 0x4 constant S_IRUSR (line 1681) | S_IRUSR = 0x100 constant S_IRWXG (line 1682) | S_IRWXG = 0x38 constant S_IRWXO (line 1683) | S_IRWXO = 0x7 constant S_IRWXU (line 1684) | S_IRWXU = 0x1c0 constant S_ISGID (line 1685) | S_ISGID = 0x400 constant S_ISUID (line 1686) | S_ISUID = 0x800 constant S_ISVTX (line 1687) | S_ISVTX = 0x200 constant S_IWGRP (line 1688) | S_IWGRP = 0x10 constant S_IWOTH (line 1689) | S_IWOTH = 0x2 constant S_IWRITE (line 1690) | S_IWRITE = 0x80 constant S_IWUSR (line 1691) | S_IWUSR = 0x80 constant S_IXGRP (line 1692) | S_IXGRP = 0x8 constant S_IXOTH (line 1693) | S_IXOTH = 0x1 constant S_IXUSR (line 1694) | S_IXUSR = 0x40 constant TAB0 (line 1695) | TAB0 = 0x0 constant TAB1 (line 1696) | TAB1 = 0x400 constant TAB2 (line 1697) | TAB2 = 0x800 constant TAB3 (line 1698) | TAB3 = 0xc00 constant TABDLY (line 1699) | TABDLY = 0xc00 constant TASKSTATS_CMD_ATTR_MAX (line 1700) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1701) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1702) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1703) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1704) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1705) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1706) | TCFLSH = 0x2000741f constant TCGETA (line 1707) | TCGETA = 0x40147417 constant TCGETS (line 1708) | TCGETS = 0x402c7413 constant TCIFLUSH (line 1709) | TCIFLUSH = 0x0 constant TCIOFF (line 1710) | TCIOFF = 0x2 constant TCIOFLUSH (line 1711) | TCIOFLUSH = 0x2 constant TCION (line 1712) | TCION = 0x3 constant TCOFLUSH (line 1713) | TCOFLUSH = 0x1 constant TCOOFF (line 1714) | TCOOFF = 0x0 constant TCOON (line 1715) | TCOON = 0x1 constant TCP_CC_INFO (line 1716) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1717) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1718) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1719) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1720) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1721) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1722) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1723) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1724) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1725) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1726) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1727) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1728) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1729) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1730) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1731) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1732) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1733) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1734) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1735) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1736) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1737) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1738) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1739) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1740) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1741) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1742) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1743) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1744) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1745) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1746) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1747) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1748) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1749) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1750) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1751) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1752) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1753) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1754) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1755) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1756) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1757) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1758) | TCSAFLUSH = 0x2 constant TCSBRK (line 1759) | TCSBRK = 0x2000741d constant TCSBRKP (line 1760) | TCSBRKP = 0x5425 constant TCSETA (line 1761) | TCSETA = 0x80147418 constant TCSETAF (line 1762) | TCSETAF = 0x8014741c constant TCSETAW (line 1763) | TCSETAW = 0x80147419 constant TCSETS (line 1764) | TCSETS = 0x802c7414 constant TCSETSF (line 1765) | TCSETSF = 0x802c7416 constant TCSETSW (line 1766) | TCSETSW = 0x802c7415 constant TCXONC (line 1767) | TCXONC = 0x2000741e constant TIOCCBRK (line 1768) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1769) | TIOCCONS = 0x541d constant TIOCEXCL (line 1770) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1771) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 1772) | TIOCGETC = 0x40067412 constant TIOCGETD (line 1773) | TIOCGETD = 0x5424 constant TIOCGETP (line 1774) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 1775) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1776) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1777) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 1778) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 1779) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1780) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1781) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1782) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1783) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1784) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1785) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1786) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1787) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1788) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 1789) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1790) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1791) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1792) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1793) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1794) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1795) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1796) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1797) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1798) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1799) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1800) | TIOCM_LE = 0x1 constant TIOCM_LOOP (line 1801) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 1802) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 1803) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 1804) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1805) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1806) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1807) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1808) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1809) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1810) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1811) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1812) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1813) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1814) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1815) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1816) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1817) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1818) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1819) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1820) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1821) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1822) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1823) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1824) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1825) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1826) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1827) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1828) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1829) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1830) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 1831) | TIOCSETC = 0x80067411 constant TIOCSETD (line 1832) | TIOCSETD = 0x5423 constant TIOCSETN (line 1833) | TIOCSETN = 0x8006740a constant TIOCSETP (line 1834) | TIOCSETP = 0x80067409 constant TIOCSIG (line 1835) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1836) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 1837) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 1838) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1839) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1840) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1841) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1842) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 1843) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1844) | TIOCSTI = 0x5412 constant TIOCSTOP (line 1845) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1846) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1847) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1848) | TOSTOP = 0x400000 constant TS_COMM_LEN (line 1849) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1850) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1851) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1852) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1853) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1854) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1855) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1856) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1857) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1858) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1859) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1860) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1861) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1862) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1863) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1864) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1865) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1866) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1867) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1868) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1869) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1870) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1871) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1872) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1873) | TUNSETVNETLE = 0x800454dc constant UMOUNT_NOFOLLOW (line 1874) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1875) | VDISCARD = 0x10 constant VEOF (line 1876) | VEOF = 0x4 constant VEOL (line 1877) | VEOL = 0x6 constant VEOL2 (line 1878) | VEOL2 = 0x8 constant VERASE (line 1879) | VERASE = 0x2 constant VINTR (line 1880) | VINTR = 0x0 constant VKILL (line 1881) | VKILL = 0x3 constant VLNEXT (line 1882) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1883) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1884) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1885) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1886) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1887) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1888) | VMIN = 0x5 constant VM_SOCKETS_INVALID_VERSION (line 1889) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1890) | VQUIT = 0x1 constant VREPRINT (line 1891) | VREPRINT = 0xb constant VSTART (line 1892) | VSTART = 0xd constant VSTOP (line 1893) | VSTOP = 0xe constant VSUSP (line 1894) | VSUSP = 0xc constant VSWTC (line 1895) | VSWTC = 0x9 constant VT0 (line 1896) | VT0 = 0x0 constant VT1 (line 1897) | VT1 = 0x10000 constant VTDLY (line 1898) | VTDLY = 0x10000 constant VTIME (line 1899) | VTIME = 0x7 constant VWERASE (line 1900) | VWERASE = 0xa constant WALL (line 1901) | WALL = 0x40000000 constant WCLONE (line 1902) | WCLONE = 0x80000000 constant WCONTINUED (line 1903) | WCONTINUED = 0x8 constant WEXITED (line 1904) | WEXITED = 0x4 constant WNOHANG (line 1905) | WNOHANG = 0x1 constant WNOTHREAD (line 1906) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1907) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1908) | WORDSIZE = 0x40 constant WSTOPPED (line 1909) | WSTOPPED = 0x2 constant WUNTRACED (line 1910) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1911) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1912) | XATTR_REPLACE = 0x2 constant XCASE (line 1913) | XCASE = 0x4000 constant XTABS (line 1914) | XTABS = 0xc00 constant E2BIG (line 1919) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1920) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1921) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1922) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1923) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1924) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1925) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1926) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1927) | EBADE = syscall.Errno(0x34) constant EBADF (line 1928) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1929) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1930) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1931) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1932) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1933) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1934) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1935) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1936) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1937) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1938) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1939) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1940) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1941) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1942) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1943) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1944) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 1945) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1946) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1947) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1948) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1949) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1950) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1951) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1952) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1953) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1954) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1955) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1956) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1957) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1958) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1959) | EINVAL = syscall.Errno(0x16) constant EIO (line 1960) | EIO = syscall.Errno(0x5) constant EISCONN (line 1961) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1962) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1963) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1964) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1965) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1966) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1967) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1968) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1969) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1970) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1971) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1972) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1973) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1974) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1975) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1976) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1977) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1978) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1979) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1980) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1981) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1982) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1983) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1984) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1985) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1986) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1987) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1988) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1989) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1990) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1991) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1992) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1993) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1994) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1995) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1996) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1997) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1998) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1999) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 2000) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 2001) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 2002) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 2003) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 2004) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 2005) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 2006) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 2007) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 2008) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 2009) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 2010) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 2011) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 2012) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 2013) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 2014) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 2015) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 2016) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 2017) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 2018) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 2019) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 2020) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 2021) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 2022) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 2023) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 2024) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 2025) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 2026) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 2027) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 2028) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 2029) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 2030) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 2031) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 2032) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 2033) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 2034) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 2035) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 2036) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 2037) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 2038) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 2039) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 2040) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 2041) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 2042) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 2043) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 2044) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 2045) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 2046) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 2047) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 2048) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 2049) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 2050) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 2051) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 2052) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 2057) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2058) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2059) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 2060) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 2061) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 2062) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 2063) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2064) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2065) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2066) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2067) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 2068) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2069) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2070) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2071) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2072) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2073) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2074) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2075) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2076) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2077) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2078) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2079) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2080) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2081) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2082) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2083) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2084) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2085) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2086) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2087) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2088) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2089) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2090) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2091) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x17 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x11 constant B1152000 (line 137) | B1152000 = 0x18 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x19 constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x1a constant B230400 (line 146) | B230400 = 0x12 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x1b constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x1c constant B3500000 (line 151) | B3500000 = 0x1d constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x1e constant B460800 (line 154) | B460800 = 0x13 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x14 constant B57600 (line 158) | B57600 = 0x10 constant B576000 (line 159) | B576000 = 0x15 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x16 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 168) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 172) | BLKRAGET = 0x20001263 constant BLKRASET (line 173) | BLKRASET = 0x20001262 constant BLKROGET (line 174) | BLKROGET = 0x2000125e constant BLKROSET (line 175) | BLKROSET = 0x2000125d constant BLKRRPART (line 176) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x20001268 constant BOTHER (line 180) | BOTHER = 0x1f constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x8000 constant BSDLY (line 228) | BSDLY = 0x8000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0xff constant CBAUDEX (line 250) | CBAUDEX = 0x0 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0xff0000 constant CLOCAL (line 253) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x1000 constant CR2 (line 296) | CR2 = 0x2000 constant CR3 (line 297) | CR3 = 0x3000 constant CRDLY (line 298) | CRDLY = 0x3000 constant CREAD (line 299) | CREAD = 0x800 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x100 constant CS7 (line 303) | CS7 = 0x200 constant CS8 (line 304) | CS8 = 0x300 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x300 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x400 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x40 constant ECHOE (line 323) | ECHOE = 0x2 constant ECHOK (line 324) | ECHOK = 0x4 constant ECHOKE (line 325) | ECHOKE = 0x1 constant ECHONL (line 326) | ECHONL = 0x10 constant ECHOPRT (line 327) | ECHOPRT = 0x20 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x4000 constant FFDLY (line 454) | FFDLY = 0x4000 constant FLUSHO (line 455) | FLUSHO = 0x800000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0x5 constant F_GETLK64 (line 481) | F_GETLK64 = 0xc constant F_GETOWN (line 482) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x6 constant F_SETLK64 (line 497) | F_SETLK64 = 0xd constant F_SETLKW (line 498) | F_SETLKW = 0x7 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0xe constant F_SETOWN (line 500) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x4000 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x100 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x400 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x80 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x1000 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x400 constant IXON (line 768) | IXON = 0x200 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 855) | MAP_SHARED = 0x1 constant MAP_STACK (line 856) | MAP_STACK = 0x20000 constant MAP_TYPE (line 857) | MAP_TYPE = 0xf constant MCL_CURRENT (line 858) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 859) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 860) | MCL_ONFAULT = 0x8000 constant MNT_DETACH (line 861) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 862) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 863) | MNT_FORCE = 0x1 constant MSG_BATCH (line 864) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 865) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 866) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 867) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 868) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 869) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 870) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 871) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 872) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 873) | MSG_FIN = 0x200 constant MSG_MORE (line 874) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 875) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 876) | MSG_OOB = 0x1 constant MSG_PEEK (line 877) | MSG_PEEK = 0x2 constant MSG_PROXY (line 878) | MSG_PROXY = 0x10 constant MSG_RST (line 879) | MSG_RST = 0x1000 constant MSG_SYN (line 880) | MSG_SYN = 0x400 constant MSG_TRUNC (line 881) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 882) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 883) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 884) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 885) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 886) | MS_ASYNC = 0x1 constant MS_BIND (line 887) | MS_BIND = 0x1000 constant MS_BORN (line 888) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 889) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 890) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 891) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 892) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 893) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 894) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 895) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 896) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 897) | MS_MOVE = 0x2000 constant MS_NOATIME (line 898) | MS_NOATIME = 0x400 constant MS_NODEV (line 899) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 900) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 901) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 902) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 903) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 904) | MS_NOSUID = 0x2 constant MS_NOUSER (line 905) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 906) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 907) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 908) | MS_RDONLY = 0x1 constant MS_REC (line 909) | MS_REC = 0x4000 constant MS_RELATIME (line 910) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 911) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 912) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 913) | MS_SHARED = 0x100000 constant MS_SILENT (line 914) | MS_SILENT = 0x8000 constant MS_SLAVE (line 915) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 916) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 917) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 918) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 919) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 920) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 921) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 922) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 923) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 924) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 925) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 926) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 927) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 928) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 929) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 930) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 931) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 932) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 933) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 934) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 935) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 936) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 937) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 938) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 939) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 940) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 941) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 942) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 943) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 944) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 945) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 946) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 947) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 948) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 949) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 950) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 951) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 952) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 953) | NETLINK_XFRM = 0x6 constant NL0 (line 954) | NL0 = 0x0 constant NL1 (line 955) | NL1 = 0x100 constant NL2 (line 956) | NL2 = 0x200 constant NL3 (line 957) | NL3 = 0x300 constant NLA_ALIGNTO (line 958) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 959) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 960) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 961) | NLA_HDRLEN = 0x4 constant NLDLY (line 962) | NLDLY = 0x300 constant NLMSG_ALIGNTO (line 963) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 964) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 965) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 966) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 967) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 968) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 969) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 970) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 971) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 972) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 973) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 974) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 975) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 976) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 977) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 978) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 979) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 980) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 981) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 982) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 983) | NLM_F_ROOT = 0x100 constant NOFLSH (line 984) | NOFLSH = 0x80000000 constant OCRNL (line 985) | OCRNL = 0x8 constant OFDEL (line 986) | OFDEL = 0x80 constant OFILL (line 987) | OFILL = 0x40 constant OLCUC (line 988) | OLCUC = 0x4 constant ONLCR (line 989) | ONLCR = 0x2 constant ONLRET (line 990) | ONLRET = 0x20 constant ONOCR (line 991) | ONOCR = 0x10 constant OPOST (line 992) | OPOST = 0x1 constant O_ACCMODE (line 993) | O_ACCMODE = 0x3 constant O_APPEND (line 994) | O_APPEND = 0x400 constant O_ASYNC (line 995) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 996) | O_CLOEXEC = 0x80000 constant O_CREAT (line 997) | O_CREAT = 0x40 constant O_DIRECT (line 998) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 999) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 1000) | O_DSYNC = 0x1000 constant O_EXCL (line 1001) | O_EXCL = 0x80 constant O_FSYNC (line 1002) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1003) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1004) | O_NDELAY = 0x800 constant O_NOATIME (line 1005) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1006) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1007) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 1008) | O_NONBLOCK = 0x800 constant O_PATH (line 1009) | O_PATH = 0x200000 constant O_RDONLY (line 1010) | O_RDONLY = 0x0 constant O_RDWR (line 1011) | O_RDWR = 0x2 constant O_RSYNC (line 1012) | O_RSYNC = 0x101000 constant O_SYNC (line 1013) | O_SYNC = 0x101000 constant O_TMPFILE (line 1014) | O_TMPFILE = 0x404000 constant O_TRUNC (line 1015) | O_TRUNC = 0x200 constant O_WRONLY (line 1016) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1017) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1018) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1019) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1020) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1021) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1022) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1023) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1024) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1025) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1026) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1027) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1028) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1029) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1030) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1031) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1032) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1033) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1034) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1035) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1036) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1037) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1038) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1039) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1040) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1041) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1042) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1043) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1044) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1045) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1046) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1047) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1048) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1049) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1050) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1051) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1052) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1053) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1054) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1055) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1056) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1057) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1058) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1059) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1060) | PACKET_VNET_HDR = 0xf constant PARENB (line 1061) | PARENB = 0x1000 constant PARITY_CRC16_PR0 (line 1062) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1063) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1064) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1065) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1066) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1067) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1068) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1069) | PARITY_NONE = 0x1 constant PARMRK (line 1070) | PARMRK = 0x8 constant PARODD (line 1071) | PARODD = 0x2000 constant PENDIN (line 1072) | PENDIN = 0x20000000 constant PERF_EVENT_IOC_DISABLE (line 1073) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 1074) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 1075) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1076) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 1077) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_REFRESH (line 1078) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 1079) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 1080) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 1081) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1082) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PRIO_PGRP (line 1083) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1084) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1085) | PRIO_USER = 0x2 constant PROT_EXEC (line 1086) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1087) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1088) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1089) | PROT_NONE = 0x0 constant PROT_READ (line 1090) | PROT_READ = 0x1 constant PROT_SAO (line 1091) | PROT_SAO = 0x10 constant PROT_WRITE (line 1092) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1093) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1094) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1095) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1096) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1097) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1098) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1099) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1100) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1101) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1102) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1103) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1104) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1105) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1106) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1107) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1108) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1109) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1110) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1111) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1112) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1113) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1114) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1115) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1116) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1117) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1118) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1119) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1120) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1121) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1122) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1123) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1124) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1125) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1126) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1127) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1128) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1129) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1130) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1131) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1132) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1133) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1134) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1135) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1136) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1137) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1138) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1139) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1140) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1141) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1142) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1143) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1144) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1145) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1146) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1147) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1148) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1149) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1150) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1151) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1152) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1153) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1154) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1155) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1156) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1157) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1158) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1159) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1160) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1161) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1162) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1163) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1164) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1165) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1166) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1167) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1168) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1169) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1170) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1171) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1172) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1173) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1174) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1175) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1176) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1177) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1178) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1179) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1180) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1181) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1182) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1183) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1184) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1185) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1186) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1187) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1188) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1189) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1190) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1191) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1192) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1193) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1194) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1195) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1196) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1197) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1198) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETEVRREGS (line 1199) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 1200) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1201) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGS64 (line 1202) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETREGSET (line 1203) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1204) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1205) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GETVRREGS (line 1206) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 1207) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 1208) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_INTERRUPT (line 1209) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1210) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1211) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1212) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1213) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1214) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1215) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1216) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1217) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1218) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1219) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1220) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1221) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1222) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1223) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1224) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1225) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1226) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1227) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1228) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1230) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1231) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1232) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETEVRREGS (line 1233) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 1234) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1235) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1236) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGS64 (line 1237) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETREGSET (line 1238) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1239) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1240) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SETVRREGS (line 1241) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 1242) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 1243) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 1244) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SINGLESTEP (line 1245) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1246) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1247) | PTRACE_TRACEME = 0x0 constant PT_CCR (line 1248) | PT_CCR = 0x26 constant PT_CTR (line 1249) | PT_CTR = 0x23 constant PT_DAR (line 1250) | PT_DAR = 0x29 constant PT_DSCR (line 1251) | PT_DSCR = 0x2c constant PT_DSISR (line 1252) | PT_DSISR = 0x2a constant PT_FPR0 (line 1253) | PT_FPR0 = 0x30 constant PT_FPSCR (line 1254) | PT_FPSCR = 0x50 constant PT_LNK (line 1255) | PT_LNK = 0x24 constant PT_MSR (line 1256) | PT_MSR = 0x21 constant PT_NIP (line 1257) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 1258) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 1259) | PT_R0 = 0x0 constant PT_R1 (line 1260) | PT_R1 = 0x1 constant PT_R10 (line 1261) | PT_R10 = 0xa constant PT_R11 (line 1262) | PT_R11 = 0xb constant PT_R12 (line 1263) | PT_R12 = 0xc constant PT_R13 (line 1264) | PT_R13 = 0xd constant PT_R14 (line 1265) | PT_R14 = 0xe constant PT_R15 (line 1266) | PT_R15 = 0xf constant PT_R16 (line 1267) | PT_R16 = 0x10 constant PT_R17 (line 1268) | PT_R17 = 0x11 constant PT_R18 (line 1269) | PT_R18 = 0x12 constant PT_R19 (line 1270) | PT_R19 = 0x13 constant PT_R2 (line 1271) | PT_R2 = 0x2 constant PT_R20 (line 1272) | PT_R20 = 0x14 constant PT_R21 (line 1273) | PT_R21 = 0x15 constant PT_R22 (line 1274) | PT_R22 = 0x16 constant PT_R23 (line 1275) | PT_R23 = 0x17 constant PT_R24 (line 1276) | PT_R24 = 0x18 constant PT_R25 (line 1277) | PT_R25 = 0x19 constant PT_R26 (line 1278) | PT_R26 = 0x1a constant PT_R27 (line 1279) | PT_R27 = 0x1b constant PT_R28 (line 1280) | PT_R28 = 0x1c constant PT_R29 (line 1281) | PT_R29 = 0x1d constant PT_R3 (line 1282) | PT_R3 = 0x3 constant PT_R30 (line 1283) | PT_R30 = 0x1e constant PT_R31 (line 1284) | PT_R31 = 0x1f constant PT_R4 (line 1285) | PT_R4 = 0x4 constant PT_R5 (line 1286) | PT_R5 = 0x5 constant PT_R6 (line 1287) | PT_R6 = 0x6 constant PT_R7 (line 1288) | PT_R7 = 0x7 constant PT_R8 (line 1289) | PT_R8 = 0x8 constant PT_R9 (line 1290) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 1291) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 1292) | PT_RESULT = 0x2b constant PT_SOFTE (line 1293) | PT_SOFTE = 0x27 constant PT_TRAP (line 1294) | PT_TRAP = 0x28 constant PT_VR0 (line 1295) | PT_VR0 = 0x52 constant PT_VRSAVE (line 1296) | PT_VRSAVE = 0x94 constant PT_VSCR (line 1297) | PT_VSCR = 0x93 constant PT_VSR0 (line 1298) | PT_VSR0 = 0x96 constant PT_VSR31 (line 1299) | PT_VSR31 = 0xd4 constant PT_XER (line 1300) | PT_XER = 0x25 constant RLIMIT_AS (line 1301) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1302) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1303) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1304) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1305) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1306) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1307) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1308) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1309) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1310) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1311) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1312) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1313) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1314) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1315) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1316) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1317) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1318) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1319) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1320) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1321) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1322) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1323) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1324) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1325) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1326) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1327) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1328) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1329) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1330) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1331) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1332) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1333) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1334) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1335) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1336) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1337) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1338) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1339) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1340) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1341) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1342) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1343) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1344) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1345) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1346) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1347) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1348) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1349) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1350) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1351) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1352) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1353) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1354) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1355) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1356) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1357) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1358) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1359) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1360) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1361) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1362) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1363) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1364) | RTF_MSS = 0x40 constant RTF_MTU (line 1365) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1366) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1367) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1368) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1369) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1370) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1371) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1372) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1373) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1374) | RTF_STATIC = 0x400 constant RTF_THROW (line 1375) | RTF_THROW = 0x2000 constant RTF_UP (line 1376) | RTF_UP = 0x1 constant RTF_WINDOW (line 1377) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1378) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1379) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1380) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1381) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1382) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1383) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1384) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1385) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1386) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1387) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1388) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1389) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1390) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1391) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1392) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1393) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1394) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1395) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1396) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1397) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1398) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1399) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1400) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1401) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1402) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1403) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1404) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1405) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1406) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1407) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1408) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1409) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1410) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1411) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1412) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1413) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1414) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1415) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1416) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1417) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1418) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1419) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1420) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1421) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1422) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1423) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1424) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1425) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1426) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1427) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1428) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1429) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1430) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1431) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1432) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1433) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1434) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1435) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1436) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1437) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1438) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1439) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1440) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1441) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1442) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1443) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1444) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1445) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1446) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1447) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1448) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1449) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1450) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1451) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1452) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1453) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1454) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1455) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1456) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1457) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1458) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1459) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1460) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1461) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1462) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1463) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1464) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1465) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1466) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1467) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1468) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1469) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1470) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1471) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1472) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1473) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1474) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1475) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1476) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1477) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1478) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1479) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1480) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1481) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1482) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1483) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1484) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1485) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1486) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1487) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1488) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1489) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1490) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1491) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1492) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1493) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1494) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1495) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1496) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1497) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1498) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1499) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1500) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1501) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1502) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1503) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1504) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1505) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1506) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1507) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1508) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1509) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1510) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1511) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1512) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1513) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1514) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1515) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1516) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1517) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1518) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1519) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1520) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1521) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1522) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1523) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1524) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1525) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1526) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1527) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1528) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1529) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1530) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1531) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1532) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1533) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1534) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 1535) | SIOCOUTQ = 0x40047473 constant SIOCOUTQNSD (line 1536) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1537) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1538) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1539) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1540) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1541) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1542) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1543) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1544) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1545) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1546) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1547) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1548) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1549) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1550) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1551) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1552) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1553) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1554) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1555) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1556) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1557) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1558) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1559) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1560) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1561) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1562) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1563) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1564) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1565) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1566) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1567) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1568) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1569) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1570) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1571) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1572) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1573) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1574) | SOL_AAL = 0x109 constant SOL_ALG (line 1575) | SOL_ALG = 0x117 constant SOL_ATM (line 1576) | SOL_ATM = 0x108 constant SOL_CAIF (line 1577) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1578) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1579) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1580) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1581) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1582) | SOL_IP = 0x0 constant SOL_IPV6 (line 1583) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1584) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1585) | SOL_IUCV = 0x115 constant SOL_KCM (line 1586) | SOL_KCM = 0x119 constant SOL_LLC (line 1587) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1588) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1589) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1590) | SOL_NFC = 0x118 constant SOL_PACKET (line 1591) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1592) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1593) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1594) | SOL_RAW = 0xff constant SOL_RDS (line 1595) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1596) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1597) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1598) | SOL_TCP = 0x6 constant SOL_TIPC (line 1599) | SOL_TIPC = 0x10f constant SOL_X25 (line 1600) | SOL_X25 = 0x106 constant SOMAXCONN (line 1601) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1602) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1603) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1604) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1605) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1606) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1607) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1608) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1609) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1610) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1611) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1612) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1613) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1614) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1615) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1616) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1617) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1618) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1619) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1620) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1621) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1622) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1623) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1624) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1625) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1626) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1627) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1628) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1629) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 1630) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1631) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1632) | SO_PEERCRED = 0x15 constant SO_PEERNAME (line 1633) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1634) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1635) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1636) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1637) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1638) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1639) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 1640) | SO_RCVTIMEO = 0x12 constant SO_REUSEADDR (line 1641) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1642) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1643) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1644) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1645) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1646) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1647) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1648) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1649) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1650) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 1651) | SO_SNDTIMEO = 0x13 constant SO_TIMESTAMP (line 1652) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1653) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1654) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1655) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1656) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1657) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1658) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1659) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1660) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1661) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1662) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1663) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1664) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1665) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1666) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1667) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1668) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1669) | S_IEXEC = 0x40 constant S_IFBLK (line 1670) | S_IFBLK = 0x6000 constant S_IFCHR (line 1671) | S_IFCHR = 0x2000 constant S_IFDIR (line 1672) | S_IFDIR = 0x4000 constant S_IFIFO (line 1673) | S_IFIFO = 0x1000 constant S_IFLNK (line 1674) | S_IFLNK = 0xa000 constant S_IFMT (line 1675) | S_IFMT = 0xf000 constant S_IFREG (line 1676) | S_IFREG = 0x8000 constant S_IFSOCK (line 1677) | S_IFSOCK = 0xc000 constant S_IREAD (line 1678) | S_IREAD = 0x100 constant S_IRGRP (line 1679) | S_IRGRP = 0x20 constant S_IROTH (line 1680) | S_IROTH = 0x4 constant S_IRUSR (line 1681) | S_IRUSR = 0x100 constant S_IRWXG (line 1682) | S_IRWXG = 0x38 constant S_IRWXO (line 1683) | S_IRWXO = 0x7 constant S_IRWXU (line 1684) | S_IRWXU = 0x1c0 constant S_ISGID (line 1685) | S_ISGID = 0x400 constant S_ISUID (line 1686) | S_ISUID = 0x800 constant S_ISVTX (line 1687) | S_ISVTX = 0x200 constant S_IWGRP (line 1688) | S_IWGRP = 0x10 constant S_IWOTH (line 1689) | S_IWOTH = 0x2 constant S_IWRITE (line 1690) | S_IWRITE = 0x80 constant S_IWUSR (line 1691) | S_IWUSR = 0x80 constant S_IXGRP (line 1692) | S_IXGRP = 0x8 constant S_IXOTH (line 1693) | S_IXOTH = 0x1 constant S_IXUSR (line 1694) | S_IXUSR = 0x40 constant TAB0 (line 1695) | TAB0 = 0x0 constant TAB1 (line 1696) | TAB1 = 0x400 constant TAB2 (line 1697) | TAB2 = 0x800 constant TAB3 (line 1698) | TAB3 = 0xc00 constant TABDLY (line 1699) | TABDLY = 0xc00 constant TASKSTATS_CMD_ATTR_MAX (line 1700) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1701) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1702) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1703) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1704) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1705) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1706) | TCFLSH = 0x2000741f constant TCGETA (line 1707) | TCGETA = 0x40147417 constant TCGETS (line 1708) | TCGETS = 0x402c7413 constant TCIFLUSH (line 1709) | TCIFLUSH = 0x0 constant TCIOFF (line 1710) | TCIOFF = 0x2 constant TCIOFLUSH (line 1711) | TCIOFLUSH = 0x2 constant TCION (line 1712) | TCION = 0x3 constant TCOFLUSH (line 1713) | TCOFLUSH = 0x1 constant TCOOFF (line 1714) | TCOOFF = 0x0 constant TCOON (line 1715) | TCOON = 0x1 constant TCP_CC_INFO (line 1716) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1717) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1718) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1719) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1720) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1721) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1722) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1723) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1724) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1725) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1726) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1727) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1728) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1729) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1730) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1731) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1732) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1733) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1734) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1735) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1736) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1737) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1738) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1739) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1740) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1741) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1742) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1743) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1744) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1745) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1746) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1747) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1748) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1749) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1750) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1751) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1752) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1753) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1754) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1755) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1756) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1757) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1758) | TCSAFLUSH = 0x2 constant TCSBRK (line 1759) | TCSBRK = 0x2000741d constant TCSBRKP (line 1760) | TCSBRKP = 0x5425 constant TCSETA (line 1761) | TCSETA = 0x80147418 constant TCSETAF (line 1762) | TCSETAF = 0x8014741c constant TCSETAW (line 1763) | TCSETAW = 0x80147419 constant TCSETS (line 1764) | TCSETS = 0x802c7414 constant TCSETSF (line 1765) | TCSETSF = 0x802c7416 constant TCSETSW (line 1766) | TCSETSW = 0x802c7415 constant TCXONC (line 1767) | TCXONC = 0x2000741e constant TIOCCBRK (line 1768) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1769) | TIOCCONS = 0x541d constant TIOCEXCL (line 1770) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1771) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 1772) | TIOCGETC = 0x40067412 constant TIOCGETD (line 1773) | TIOCGETD = 0x5424 constant TIOCGETP (line 1774) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 1775) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1776) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1777) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 1778) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 1779) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1780) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1781) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1782) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1783) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1784) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1785) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1786) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1787) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1788) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 1789) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1790) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1791) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1792) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1793) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1794) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1795) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1796) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1797) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1798) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1799) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1800) | TIOCM_LE = 0x1 constant TIOCM_LOOP (line 1801) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 1802) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 1803) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 1804) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1805) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1806) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1807) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1808) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1809) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1810) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1811) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1812) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1813) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1814) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1815) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1816) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1817) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1818) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1819) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1820) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1821) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1822) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1823) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1824) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1825) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1826) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1827) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1828) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1829) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1830) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 1831) | TIOCSETC = 0x80067411 constant TIOCSETD (line 1832) | TIOCSETD = 0x5423 constant TIOCSETN (line 1833) | TIOCSETN = 0x8006740a constant TIOCSETP (line 1834) | TIOCSETP = 0x80067409 constant TIOCSIG (line 1835) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1836) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 1837) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 1838) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1839) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1840) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1841) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1842) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 1843) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1844) | TIOCSTI = 0x5412 constant TIOCSTOP (line 1845) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1846) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1847) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1848) | TOSTOP = 0x400000 constant TS_COMM_LEN (line 1849) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1850) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1851) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1852) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1853) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1854) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1855) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1856) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1857) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1858) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1859) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1860) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1861) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1862) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1863) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1864) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1865) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1866) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1867) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1868) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1869) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1870) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1871) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1872) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1873) | TUNSETVNETLE = 0x800454dc constant UMOUNT_NOFOLLOW (line 1874) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1875) | VDISCARD = 0x10 constant VEOF (line 1876) | VEOF = 0x4 constant VEOL (line 1877) | VEOL = 0x6 constant VEOL2 (line 1878) | VEOL2 = 0x8 constant VERASE (line 1879) | VERASE = 0x2 constant VINTR (line 1880) | VINTR = 0x0 constant VKILL (line 1881) | VKILL = 0x3 constant VLNEXT (line 1882) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1883) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1884) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1885) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1886) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1887) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1888) | VMIN = 0x5 constant VM_SOCKETS_INVALID_VERSION (line 1889) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1890) | VQUIT = 0x1 constant VREPRINT (line 1891) | VREPRINT = 0xb constant VSTART (line 1892) | VSTART = 0xd constant VSTOP (line 1893) | VSTOP = 0xe constant VSUSP (line 1894) | VSUSP = 0xc constant VSWTC (line 1895) | VSWTC = 0x9 constant VT0 (line 1896) | VT0 = 0x0 constant VT1 (line 1897) | VT1 = 0x10000 constant VTDLY (line 1898) | VTDLY = 0x10000 constant VTIME (line 1899) | VTIME = 0x7 constant VWERASE (line 1900) | VWERASE = 0xa constant WALL (line 1901) | WALL = 0x40000000 constant WCLONE (line 1902) | WCLONE = 0x80000000 constant WCONTINUED (line 1903) | WCONTINUED = 0x8 constant WEXITED (line 1904) | WEXITED = 0x4 constant WNOHANG (line 1905) | WNOHANG = 0x1 constant WNOTHREAD (line 1906) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1907) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1908) | WORDSIZE = 0x40 constant WSTOPPED (line 1909) | WSTOPPED = 0x2 constant WUNTRACED (line 1910) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1911) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1912) | XATTR_REPLACE = 0x2 constant XCASE (line 1913) | XCASE = 0x4000 constant XTABS (line 1914) | XTABS = 0xc00 constant E2BIG (line 1919) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1920) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1921) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1922) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1923) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1924) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1925) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1926) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1927) | EBADE = syscall.Errno(0x34) constant EBADF (line 1928) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1929) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1930) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1931) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1932) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1933) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1934) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1935) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1936) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1937) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1938) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1939) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1940) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1941) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1942) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1943) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1944) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 1945) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1946) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1947) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1948) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1949) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1950) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1951) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1952) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1953) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1954) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1955) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1956) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1957) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1958) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1959) | EINVAL = syscall.Errno(0x16) constant EIO (line 1960) | EIO = syscall.Errno(0x5) constant EISCONN (line 1961) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1962) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1963) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1964) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1965) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1966) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1967) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1968) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1969) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1970) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1971) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1972) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1973) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1974) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1975) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1976) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1977) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1978) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1979) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1980) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1981) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1982) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1983) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1984) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1985) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1986) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1987) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1988) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1989) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1990) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1991) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1992) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1993) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1994) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1995) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1996) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1997) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1998) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1999) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 2000) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 2001) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 2002) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 2003) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 2004) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 2005) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 2006) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 2007) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 2008) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 2009) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 2010) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 2011) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 2012) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 2013) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 2014) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 2015) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 2016) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 2017) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 2018) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 2019) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 2020) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 2021) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 2022) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 2023) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 2024) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 2025) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 2026) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 2027) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 2028) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 2029) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 2030) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 2031) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 2032) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 2033) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 2034) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 2035) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 2036) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 2037) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 2038) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 2039) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 2040) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 2041) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 2042) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 2043) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 2044) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 2045) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 2046) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 2047) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 2048) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 2049) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 2050) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 2051) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 2052) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 2057) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2058) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2059) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 2060) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 2061) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 2062) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 2063) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2064) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2065) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2066) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2067) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 2068) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2069) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2070) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2071) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2072) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2073) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2074) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2075) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2076) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2077) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2078) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2079) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2080) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2081) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2082) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2083) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2084) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2085) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2086) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2087) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2088) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2089) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2090) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2091) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2b constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 48) | AF_QIPCRTR = 0x2a constant AF_RDS (line 49) | AF_RDS = 0x15 constant AF_ROSE (line 50) | AF_ROSE = 0xb constant AF_ROUTE (line 51) | AF_ROUTE = 0x10 constant AF_RXRPC (line 52) | AF_RXRPC = 0x21 constant AF_SECURITY (line 53) | AF_SECURITY = 0xe constant AF_SNA (line 54) | AF_SNA = 0x16 constant AF_TIPC (line 55) | AF_TIPC = 0x1e constant AF_UNIX (line 56) | AF_UNIX = 0x1 constant AF_UNSPEC (line 57) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 58) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 59) | AF_WANPIPE = 0x19 constant AF_X25 (line 60) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 61) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 62) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 63) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 64) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 65) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 66) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 67) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 68) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 69) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 70) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 71) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 72) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 73) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 74) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 75) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 76) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 77) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 78) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 79) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 80) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 81) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 82) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 83) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 84) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 85) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 86) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 87) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 88) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 89) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 90) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 91) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 92) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 93) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 94) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 95) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 96) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 97) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 98) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 99) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 100) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 101) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 102) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 103) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 104) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 105) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 106) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 107) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 108) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 109) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 110) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 111) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 112) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 113) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 114) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 115) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 116) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 117) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 118) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 119) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 120) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 121) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 122) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 123) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 124) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 125) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 126) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 127) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 128) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 129) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 130) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 131) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 132) | ARPHRD_X25 = 0x10f constant B0 (line 133) | B0 = 0x0 constant B1000000 (line 134) | B1000000 = 0x1008 constant B110 (line 135) | B110 = 0x3 constant B115200 (line 136) | B115200 = 0x1002 constant B1152000 (line 137) | B1152000 = 0x1009 constant B1200 (line 138) | B1200 = 0x9 constant B134 (line 139) | B134 = 0x4 constant B150 (line 140) | B150 = 0x5 constant B1500000 (line 141) | B1500000 = 0x100a constant B1800 (line 142) | B1800 = 0xa constant B19200 (line 143) | B19200 = 0xe constant B200 (line 144) | B200 = 0x6 constant B2000000 (line 145) | B2000000 = 0x100b constant B230400 (line 146) | B230400 = 0x1003 constant B2400 (line 147) | B2400 = 0xb constant B2500000 (line 148) | B2500000 = 0x100c constant B300 (line 149) | B300 = 0x7 constant B3000000 (line 150) | B3000000 = 0x100d constant B3500000 (line 151) | B3500000 = 0x100e constant B38400 (line 152) | B38400 = 0xf constant B4000000 (line 153) | B4000000 = 0x100f constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x1005 constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x1006 constant B600 (line 160) | B600 = 0x8 constant B75 (line 161) | B75 = 0x2 constant B921600 (line 162) | B921600 = 0x1007 constant B9600 (line 163) | B9600 = 0xd constant BLKBSZGET (line 164) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 165) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 166) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 167) | BLKFRAGET = 0x1265 constant BLKFRASET (line 168) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 169) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 170) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 171) | BLKPBSZGET = 0x127b constant BLKRAGET (line 172) | BLKRAGET = 0x1263 constant BLKRASET (line 173) | BLKRASET = 0x1262 constant BLKROGET (line 174) | BLKROGET = 0x125e constant BLKROSET (line 175) | BLKROSET = 0x125d constant BLKRRPART (line 176) | BLKRRPART = 0x125f constant BLKSECTGET (line 177) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 178) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 179) | BLKSSZGET = 0x1268 constant BOTHER (line 180) | BOTHER = 0x1000 constant BPF_A (line 181) | BPF_A = 0x10 constant BPF_ABS (line 182) | BPF_ABS = 0x20 constant BPF_ADD (line 183) | BPF_ADD = 0x0 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 201) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 202) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 203) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 207) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 208) | BPF_MISC = 0x7 constant BPF_MOD (line 209) | BPF_MOD = 0x90 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 213) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 214) | BPF_OR = 0x40 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BPF_XOR (line 224) | BPF_XOR = 0xa0 constant BRKINT (line 225) | BRKINT = 0x2 constant BS0 (line 226) | BS0 = 0x0 constant BS1 (line 227) | BS1 = 0x2000 constant BSDLY (line 228) | BSDLY = 0x2000 constant CAN_BCM (line 229) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 230) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 231) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 232) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 233) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 234) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 235) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 236) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 237) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 238) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 239) | CAN_MCNET = 0x5 constant CAN_MTU (line 240) | CAN_MTU = 0x10 constant CAN_NPROTO (line 241) | CAN_NPROTO = 0x7 constant CAN_RAW (line 242) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 243) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 328) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 329) | EFD_NONBLOCK = 0x800 constant EFD_SEMAPHORE (line 330) | EFD_SEMAPHORE = 0x1 constant ENCODING_DEFAULT (line 331) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 332) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 333) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 334) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 335) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 336) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 337) | EPOLLERR = 0x8 constant EPOLLET (line 338) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 339) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 340) | EPOLLHUP = 0x10 constant EPOLLIN (line 341) | EPOLLIN = 0x1 constant EPOLLMSG (line 342) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 343) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 344) | EPOLLOUT = 0x4 constant EPOLLPRI (line 345) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 346) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 347) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 348) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 349) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 350) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 351) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 352) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 353) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 354) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 355) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 356) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 357) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 358) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 359) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 360) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 361) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 362) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 363) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 364) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 365) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 366) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 367) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 368) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 369) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 370) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 371) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 372) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 373) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 374) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 375) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 376) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 377) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 378) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 379) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 380) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 381) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 382) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 383) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 384) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 385) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 386) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 387) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 388) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 389) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 390) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 391) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 392) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 393) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 394) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 395) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 396) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 397) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 398) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 399) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 400) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 401) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 402) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 403) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 404) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 405) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 406) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 407) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 408) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 409) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 410) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 411) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 412) | ETH_P_NCSI = 0x88f8 constant ETH_P_PAE (line 413) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 414) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 415) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 416) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 417) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 418) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 419) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 420) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 421) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 422) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 423) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 424) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 425) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 426) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 427) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 428) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 429) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 430) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 431) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 432) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 433) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 434) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 435) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 436) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 437) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 438) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 439) | ETH_P_XDSA = 0xf8 constant EXTA (line 440) | EXTA = 0xe constant EXTB (line 441) | EXTB = 0xf constant EXTPROC (line 442) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 443) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 444) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 445) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 446) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 447) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 448) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 449) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 450) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 451) | FD_SETSIZE = 0x400 constant FF0 (line 452) | FF0 = 0x0 constant FF1 (line 453) | FF1 = 0x8000 constant FFDLY (line 454) | FFDLY = 0x8000 constant FLUSHO (line 455) | FLUSHO = 0x1000 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 456) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 457) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 458) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 459) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 460) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_IOC_GET_ENCRYPTION_POLICY (line 461) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 462) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SET_ENCRYPTION_POLICY (line 463) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant FS_KEY_DESCRIPTOR_SIZE (line 464) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 465) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 466) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 467) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 468) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 469) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 470) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 471) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 472) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 473) | FS_POLICY_FLAGS_VALID = 0x3 constant F_DUPFD (line 474) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 475) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 476) | F_EXLCK = 0x4 constant F_GETFD (line 477) | F_GETFD = 0x1 constant F_GETFL (line 478) | F_GETFL = 0x3 constant F_GETLEASE (line 479) | F_GETLEASE = 0x401 constant F_GETLK (line 480) | F_GETLK = 0x5 constant F_GETLK64 (line 481) | F_GETLK64 = 0x5 constant F_GETOWN (line 482) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 483) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 484) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 485) | F_GETSIG = 0xb constant F_LOCK (line 486) | F_LOCK = 0x1 constant F_NOTIFY (line 487) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 488) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 489) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 490) | F_OFD_SETLKW = 0x26 constant F_OK (line 491) | F_OK = 0x0 constant F_RDLCK (line 492) | F_RDLCK = 0x0 constant F_SETFD (line 493) | F_SETFD = 0x2 constant F_SETFL (line 494) | F_SETFL = 0x4 constant F_SETLEASE (line 495) | F_SETLEASE = 0x400 constant F_SETLK (line 496) | F_SETLK = 0x6 constant F_SETLK64 (line 497) | F_SETLK64 = 0x6 constant F_SETLKW (line 498) | F_SETLKW = 0x7 constant F_SETLKW64 (line 499) | F_SETLKW64 = 0x7 constant F_SETOWN (line 500) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 501) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 502) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 503) | F_SETSIG = 0xa constant F_SHLCK (line 504) | F_SHLCK = 0x8 constant F_TEST (line 505) | F_TEST = 0x3 constant F_TLOCK (line 506) | F_TLOCK = 0x2 constant F_ULOCK (line 507) | F_ULOCK = 0x0 constant F_UNLCK (line 508) | F_UNLCK = 0x2 constant F_WRLCK (line 509) | F_WRLCK = 0x1 constant GENL_ADMIN_PERM (line 510) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 511) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 512) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 513) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 514) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 515) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 516) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 517) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 518) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 519) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 520) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 521) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 522) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_NONBLOCK (line 523) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 524) | GRND_RANDOM = 0x2 constant HUPCL (line 525) | HUPCL = 0x400 constant IBSHIFT (line 526) | IBSHIFT = 0x10 constant ICANON (line 527) | ICANON = 0x2 constant ICMPV6_FILTER (line 528) | ICMPV6_FILTER = 0x1 constant ICRNL (line 529) | ICRNL = 0x100 constant IEXTEN (line 530) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 531) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 532) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 533) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 534) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 535) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 536) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 537) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 538) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 539) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 540) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 541) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 542) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 543) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 544) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 545) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 546) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 547) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 548) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 549) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 550) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 551) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 552) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 553) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 554) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 555) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 556) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 557) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 558) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 559) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 560) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 561) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 562) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 563) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 564) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 565) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 566) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 567) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 568) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 569) | IFF_SLAVE = 0x800 constant IFF_TAP (line 570) | IFF_TAP = 0x2 constant IFF_TUN (line 571) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 572) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 573) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 574) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 575) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 576) | IFNAMSIZ = 0x10 constant IGNBRK (line 577) | IGNBRK = 0x1 constant IGNCR (line 578) | IGNCR = 0x80 constant IGNPAR (line 579) | IGNPAR = 0x4 constant IMAXBEL (line 580) | IMAXBEL = 0x2000 constant INLCR (line 581) | INLCR = 0x40 constant INPCK (line 582) | INPCK = 0x10 constant IN_ACCESS (line 583) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 584) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 585) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 586) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 587) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 588) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 589) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 590) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 591) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 592) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 593) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 594) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 595) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 596) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 597) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 598) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 599) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 600) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 601) | IN_CREATE = 0x100 constant IN_DELETE (line 602) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 603) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 604) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 605) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 606) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 607) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 608) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 609) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 610) | IN_MODIFY = 0x2 constant IN_MOVE (line 611) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 612) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 613) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 614) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 615) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 616) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 617) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 618) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 619) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 620) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 621) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 622) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 623) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 624) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 625) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 626) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 627) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 628) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 629) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 630) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 631) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 632) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 633) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 634) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 635) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 636) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 637) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 638) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 639) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 640) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 641) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 642) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 643) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 644) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 645) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 646) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 647) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 648) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 649) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 650) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 651) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 652) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 653) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 654) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 655) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 656) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 657) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 658) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 659) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 660) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 661) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 662) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 663) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 664) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 665) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 666) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 667) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 668) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 669) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 670) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 671) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 672) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 673) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 674) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 675) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 676) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 677) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 678) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 679) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 680) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 681) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 682) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 683) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 684) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 685) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 686) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 687) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 688) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 689) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 690) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 691) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 692) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 693) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 694) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 695) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 696) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 697) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 698) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 699) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 700) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 701) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 702) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 703) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 704) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 705) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 706) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 707) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 708) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 709) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 710) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 711) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 712) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 713) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 714) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 715) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 716) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 717) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 718) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 719) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 720) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 721) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 722) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 723) | IP_MF = 0x2000 constant IP_MINTTL (line 724) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 725) | IP_MSFILTER = 0x29 constant IP_MSS (line 726) | IP_MSS = 0x240 constant IP_MTU (line 727) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 728) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 729) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 730) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 731) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 732) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 733) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 734) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 735) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 736) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 737) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 738) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 739) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 740) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 741) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 742) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 743) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 744) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 745) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 746) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 747) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 748) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 749) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 750) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 751) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 752) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 753) | IP_RETOPTS = 0x7 constant IP_RF (line 754) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 755) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 756) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 757) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 758) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 759) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 760) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 761) | IP_XFRM_POLICY = 0x11 constant ISIG (line 762) | ISIG = 0x1 constant ISTRIP (line 763) | ISTRIP = 0x20 constant IUCLC (line 764) | IUCLC = 0x200 constant IUTF8 (line 765) | IUTF8 = 0x4000 constant IXANY (line 766) | IXANY = 0x800 constant IXOFF (line 767) | IXOFF = 0x1000 constant IXON (line 768) | IXON = 0x400 constant KEYCTL_ASSUME_AUTHORITY (line 769) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CHOWN (line 770) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 771) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 772) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 773) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 774) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 775) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 776) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 777) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 778) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 779) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 780) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 781) | KEYCTL_LINK = 0x8 constant KEYCTL_NEGATE (line 782) | KEYCTL_NEGATE = 0xd constant KEYCTL_READ (line 783) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 784) | KEYCTL_REJECT = 0x13 constant KEYCTL_REVOKE (line 785) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 786) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 787) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 788) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 789) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 790) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_UNLINK (line 791) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 792) | KEYCTL_UPDATE = 0x2 constant KEY_REQKEY_DEFL_DEFAULT (line 793) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 794) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 795) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 796) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 797) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 798) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 799) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 800) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 801) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 802) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 803) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 804) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 805) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 806) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 807) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 808) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 809) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 810) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 811) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 812) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 813) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 814) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 815) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 816) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 817) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 818) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 819) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 820) | LOCK_EX = 0x2 constant LOCK_NB (line 821) | LOCK_NB = 0x4 constant LOCK_SH (line 822) | LOCK_SH = 0x1 constant LOCK_UN (line 823) | LOCK_UN = 0x8 constant MADV_DODUMP (line 824) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 825) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 826) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 827) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 828) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 829) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 830) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 831) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 832) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 833) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 834) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 835) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 836) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 837) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 838) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 839) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 840) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 841) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 842) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 843) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 844) | MAP_FILE = 0x0 constant MAP_FIXED (line 845) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 846) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 847) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 848) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 849) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 850) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 851) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 852) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 853) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 854) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 855) | MAP_SHARED = 0x1 constant MAP_STACK (line 856) | MAP_STACK = 0x20000 constant MAP_TYPE (line 857) | MAP_TYPE = 0xf constant MCL_CURRENT (line 858) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 859) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 860) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 861) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 862) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 863) | MNT_FORCE = 0x1 constant MSG_BATCH (line 864) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 865) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 866) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 867) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 868) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 869) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 870) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 871) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 872) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 873) | MSG_FIN = 0x200 constant MSG_MORE (line 874) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 875) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 876) | MSG_OOB = 0x1 constant MSG_PEEK (line 877) | MSG_PEEK = 0x2 constant MSG_PROXY (line 878) | MSG_PROXY = 0x10 constant MSG_RST (line 879) | MSG_RST = 0x1000 constant MSG_SYN (line 880) | MSG_SYN = 0x400 constant MSG_TRUNC (line 881) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 882) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 883) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 884) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 885) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 886) | MS_ASYNC = 0x1 constant MS_BIND (line 887) | MS_BIND = 0x1000 constant MS_BORN (line 888) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 889) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 890) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 891) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 892) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 893) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 894) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 895) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 896) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 897) | MS_MOVE = 0x2000 constant MS_NOATIME (line 898) | MS_NOATIME = 0x400 constant MS_NODEV (line 899) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 900) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 901) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 902) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 903) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 904) | MS_NOSUID = 0x2 constant MS_NOUSER (line 905) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 906) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 907) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 908) | MS_RDONLY = 0x1 constant MS_REC (line 909) | MS_REC = 0x4000 constant MS_RELATIME (line 910) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 911) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 912) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 913) | MS_SHARED = 0x100000 constant MS_SILENT (line 914) | MS_SILENT = 0x8000 constant MS_SLAVE (line 915) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 916) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 917) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 918) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 919) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 920) | MS_VERBOSE = 0x8000 constant NAME_MAX (line 921) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 922) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 923) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 924) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 925) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 926) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 927) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 928) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 929) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 930) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 931) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 932) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 933) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 934) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 935) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 936) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 937) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 938) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 939) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 940) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 941) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 942) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 943) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 944) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 945) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 946) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 947) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 948) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 949) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 950) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 951) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 952) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 953) | NETLINK_XFRM = 0x6 constant NL0 (line 954) | NL0 = 0x0 constant NL1 (line 955) | NL1 = 0x100 constant NLA_ALIGNTO (line 956) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 957) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 958) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 959) | NLA_HDRLEN = 0x4 constant NLDLY (line 960) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 961) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 962) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 963) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 964) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 965) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 966) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 967) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 968) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 969) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 970) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 971) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 972) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 973) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 974) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 975) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 976) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 977) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 978) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 979) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 980) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 981) | NLM_F_ROOT = 0x100 constant NOFLSH (line 982) | NOFLSH = 0x80 constant OCRNL (line 983) | OCRNL = 0x8 constant OFDEL (line 984) | OFDEL = 0x80 constant OFILL (line 985) | OFILL = 0x40 constant OLCUC (line 986) | OLCUC = 0x2 constant ONLCR (line 987) | ONLCR = 0x4 constant ONLRET (line 988) | ONLRET = 0x20 constant ONOCR (line 989) | ONOCR = 0x10 constant OPOST (line 990) | OPOST = 0x1 constant O_ACCMODE (line 991) | O_ACCMODE = 0x3 constant O_APPEND (line 992) | O_APPEND = 0x400 constant O_ASYNC (line 993) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 994) | O_CLOEXEC = 0x80000 constant O_CREAT (line 995) | O_CREAT = 0x40 constant O_DIRECT (line 996) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 997) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 998) | O_DSYNC = 0x1000 constant O_EXCL (line 999) | O_EXCL = 0x80 constant O_FSYNC (line 1000) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 1001) | O_LARGEFILE = 0x0 constant O_NDELAY (line 1002) | O_NDELAY = 0x800 constant O_NOATIME (line 1003) | O_NOATIME = 0x40000 constant O_NOCTTY (line 1004) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 1005) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 1006) | O_NONBLOCK = 0x800 constant O_PATH (line 1007) | O_PATH = 0x200000 constant O_RDONLY (line 1008) | O_RDONLY = 0x0 constant O_RDWR (line 1009) | O_RDWR = 0x2 constant O_RSYNC (line 1010) | O_RSYNC = 0x101000 constant O_SYNC (line 1011) | O_SYNC = 0x101000 constant O_TMPFILE (line 1012) | O_TMPFILE = 0x410000 constant O_TRUNC (line 1013) | O_TRUNC = 0x200 constant O_WRONLY (line 1014) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1015) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1016) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1017) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1018) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1019) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1020) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1021) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1022) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1023) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1024) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1025) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1026) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 1027) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1028) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1029) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1030) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1031) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1032) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1033) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1034) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 1035) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1036) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1037) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1038) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1039) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1040) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1041) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1042) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1043) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1044) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1045) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1046) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1047) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1048) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1049) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1050) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1051) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1052) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1053) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1054) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1055) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1056) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1057) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1058) | PACKET_VNET_HDR = 0xf constant PARENB (line 1059) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 1060) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1061) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1062) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1063) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1064) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1065) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1066) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1067) | PARITY_NONE = 0x1 constant PARMRK (line 1068) | PARMRK = 0x8 constant PARODD (line 1069) | PARODD = 0x200 constant PENDIN (line 1070) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 1071) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 1072) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 1073) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 1074) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 1075) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_REFRESH (line 1076) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 1077) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 1078) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 1079) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 1080) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PRIO_PGRP (line 1081) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1082) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1083) | PRIO_USER = 0x2 constant PROT_EXEC (line 1084) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1085) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1086) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1087) | PROT_NONE = 0x0 constant PROT_READ (line 1088) | PROT_READ = 0x1 constant PROT_WRITE (line 1089) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1090) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1091) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1092) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1093) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1094) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1095) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1096) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1097) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1098) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1099) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1100) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1101) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1102) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1103) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1104) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1105) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1106) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1107) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1108) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1109) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1110) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1111) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1112) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1113) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1114) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1115) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1116) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1117) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1118) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1119) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1120) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1121) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1122) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1123) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1124) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1125) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1126) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1127) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1128) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1129) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1130) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1131) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1132) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1133) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1134) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1135) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1136) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1137) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1138) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1139) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1140) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1141) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1142) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1143) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1144) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1145) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1146) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1147) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1148) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1149) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1150) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1151) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1152) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1153) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1154) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1155) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1156) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1157) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1158) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1159) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1160) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1161) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1162) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1163) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1164) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1165) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1166) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1167) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1168) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1169) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1170) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1171) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1172) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1173) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1174) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1175) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1176) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1177) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1178) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1179) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1180) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1181) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1182) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1183) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1184) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1185) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1186) | PTRACE_DETACH = 0x11 constant PTRACE_DISABLE_TE (line 1187) | PTRACE_DISABLE_TE = 0x5010 constant PTRACE_ENABLE_TE (line 1188) | PTRACE_ENABLE_TE = 0x5009 constant PTRACE_EVENT_CLONE (line 1189) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1190) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1191) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1192) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1193) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1194) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1195) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1196) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1197) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETREGS (line 1198) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1199) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1200) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1201) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_LAST_BREAK (line 1202) | PTRACE_GET_LAST_BREAK = 0x5006 constant PTRACE_INTERRUPT (line 1203) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1204) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1205) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1206) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1207) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1208) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1209) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1210) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1211) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1212) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1213) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1214) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1215) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1216) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1217) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1218) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_AREA (line 1219) | PTRACE_PEEKDATA_AREA = 0x5003 constant PTRACE_PEEKSIGINFO (line 1220) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1221) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1222) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_AREA (line 1223) | PTRACE_PEEKTEXT_AREA = 0x5002 constant PTRACE_PEEKUSR (line 1224) | PTRACE_PEEKUSR = 0x3 constant PTRACE_PEEKUSR_AREA (line 1225) | PTRACE_PEEKUSR_AREA = 0x5000 constant PTRACE_PEEK_SYSTEM_CALL (line 1226) | PTRACE_PEEK_SYSTEM_CALL = 0x5007 constant PTRACE_POKEDATA (line 1227) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_AREA (line 1228) | PTRACE_POKEDATA_AREA = 0x5005 constant PTRACE_POKETEXT (line 1229) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_AREA (line 1230) | PTRACE_POKETEXT_AREA = 0x5004 constant PTRACE_POKEUSR (line 1231) | PTRACE_POKEUSR = 0x6 constant PTRACE_POKEUSR_AREA (line 1232) | PTRACE_POKEUSR_AREA = 0x5001 constant PTRACE_POKE_SYSTEM_CALL (line 1233) | PTRACE_POKE_SYSTEM_CALL = 0x5008 constant PTRACE_PROT (line 1234) | PTRACE_PROT = 0x15 constant PTRACE_SECCOMP_GET_FILTER (line 1235) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1236) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETOPTIONS (line 1237) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1238) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1239) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1240) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1241) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLEBLOCK (line 1242) | PTRACE_SINGLEBLOCK = 0xc constant PTRACE_SINGLESTEP (line 1243) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1244) | PTRACE_SYSCALL = 0x18 constant PTRACE_TE_ABORT_RAND (line 1245) | PTRACE_TE_ABORT_RAND = 0x5011 constant PTRACE_TRACEME (line 1246) | PTRACE_TRACEME = 0x0 constant PT_ACR0 (line 1247) | PT_ACR0 = 0x90 constant PT_ACR1 (line 1248) | PT_ACR1 = 0x94 constant PT_ACR10 (line 1249) | PT_ACR10 = 0xb8 constant PT_ACR11 (line 1250) | PT_ACR11 = 0xbc constant PT_ACR12 (line 1251) | PT_ACR12 = 0xc0 constant PT_ACR13 (line 1252) | PT_ACR13 = 0xc4 constant PT_ACR14 (line 1253) | PT_ACR14 = 0xc8 constant PT_ACR15 (line 1254) | PT_ACR15 = 0xcc constant PT_ACR2 (line 1255) | PT_ACR2 = 0x98 constant PT_ACR3 (line 1256) | PT_ACR3 = 0x9c constant PT_ACR4 (line 1257) | PT_ACR4 = 0xa0 constant PT_ACR5 (line 1258) | PT_ACR5 = 0xa4 constant PT_ACR6 (line 1259) | PT_ACR6 = 0xa8 constant PT_ACR7 (line 1260) | PT_ACR7 = 0xac constant PT_ACR8 (line 1261) | PT_ACR8 = 0xb0 constant PT_ACR9 (line 1262) | PT_ACR9 = 0xb4 constant PT_CR_10 (line 1263) | PT_CR_10 = 0x168 constant PT_CR_11 (line 1264) | PT_CR_11 = 0x170 constant PT_CR_9 (line 1265) | PT_CR_9 = 0x160 constant PT_ENDREGS (line 1266) | PT_ENDREGS = 0x1af constant PT_FPC (line 1267) | PT_FPC = 0xd8 constant PT_FPR0 (line 1268) | PT_FPR0 = 0xe0 constant PT_FPR1 (line 1269) | PT_FPR1 = 0xe8 constant PT_FPR10 (line 1270) | PT_FPR10 = 0x130 constant PT_FPR11 (line 1271) | PT_FPR11 = 0x138 constant PT_FPR12 (line 1272) | PT_FPR12 = 0x140 constant PT_FPR13 (line 1273) | PT_FPR13 = 0x148 constant PT_FPR14 (line 1274) | PT_FPR14 = 0x150 constant PT_FPR15 (line 1275) | PT_FPR15 = 0x158 constant PT_FPR2 (line 1276) | PT_FPR2 = 0xf0 constant PT_FPR3 (line 1277) | PT_FPR3 = 0xf8 constant PT_FPR4 (line 1278) | PT_FPR4 = 0x100 constant PT_FPR5 (line 1279) | PT_FPR5 = 0x108 constant PT_FPR6 (line 1280) | PT_FPR6 = 0x110 constant PT_FPR7 (line 1281) | PT_FPR7 = 0x118 constant PT_FPR8 (line 1282) | PT_FPR8 = 0x120 constant PT_FPR9 (line 1283) | PT_FPR9 = 0x128 constant PT_GPR0 (line 1284) | PT_GPR0 = 0x10 constant PT_GPR1 (line 1285) | PT_GPR1 = 0x18 constant PT_GPR10 (line 1286) | PT_GPR10 = 0x60 constant PT_GPR11 (line 1287) | PT_GPR11 = 0x68 constant PT_GPR12 (line 1288) | PT_GPR12 = 0x70 constant PT_GPR13 (line 1289) | PT_GPR13 = 0x78 constant PT_GPR14 (line 1290) | PT_GPR14 = 0x80 constant PT_GPR15 (line 1291) | PT_GPR15 = 0x88 constant PT_GPR2 (line 1292) | PT_GPR2 = 0x20 constant PT_GPR3 (line 1293) | PT_GPR3 = 0x28 constant PT_GPR4 (line 1294) | PT_GPR4 = 0x30 constant PT_GPR5 (line 1295) | PT_GPR5 = 0x38 constant PT_GPR6 (line 1296) | PT_GPR6 = 0x40 constant PT_GPR7 (line 1297) | PT_GPR7 = 0x48 constant PT_GPR8 (line 1298) | PT_GPR8 = 0x50 constant PT_GPR9 (line 1299) | PT_GPR9 = 0x58 constant PT_IEEE_IP (line 1300) | PT_IEEE_IP = 0x1a8 constant PT_LASTOFF (line 1301) | PT_LASTOFF = 0x1a8 constant PT_ORIGGPR2 (line 1302) | PT_ORIGGPR2 = 0xd0 constant PT_PSWADDR (line 1303) | PT_PSWADDR = 0x8 constant PT_PSWMASK (line 1304) | PT_PSWMASK = 0x0 constant RLIMIT_AS (line 1305) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1306) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1307) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1308) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1309) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 1310) | RLIMIT_LOCKS = 0xa constant RLIMIT_MEMLOCK (line 1311) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_MSGQUEUE (line 1312) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 1313) | RLIMIT_NICE = 0xd constant RLIMIT_NOFILE (line 1314) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 1315) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 1316) | RLIMIT_RSS = 0x5 constant RLIMIT_RTPRIO (line 1317) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 1318) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 1319) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 1320) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1321) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1322) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1323) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1324) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1325) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1326) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1327) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1328) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1329) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1330) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1331) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1332) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1333) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1334) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1335) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1336) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1337) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1338) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1339) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1340) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1341) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1342) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1343) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1344) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1345) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1346) | RTA_MAX = 0x19 constant RTCF_DIRECTSRC (line 1347) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1348) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1349) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1350) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1351) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1352) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1353) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1354) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1355) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1356) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1357) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1358) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1359) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1360) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1361) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1362) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1363) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1364) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1365) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1366) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1367) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1368) | RTF_MSS = 0x40 constant RTF_MTU (line 1369) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1370) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1371) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1372) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1373) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1374) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1375) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1376) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1377) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1378) | RTF_STATIC = 0x400 constant RTF_THROW (line 1379) | RTF_THROW = 0x2000 constant RTF_UP (line 1380) | RTF_UP = 0x1 constant RTF_WINDOW (line 1381) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1382) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1383) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1384) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1385) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1386) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1387) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1388) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1389) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1390) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1391) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1392) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1393) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1394) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1395) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1396) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1397) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1398) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1399) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1400) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1401) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1402) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1403) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1404) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1405) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1406) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1407) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1408) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1409) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1410) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1411) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1412) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1413) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1414) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1415) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1416) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1417) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1418) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1419) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1420) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1421) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1422) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1423) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1424) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1425) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1426) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1427) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1428) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1429) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1430) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1431) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1432) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1433) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1434) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1435) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1436) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1437) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1438) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1439) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1440) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1441) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1442) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1443) | RTNH_COMPARE_MASK = 0x19 constant RTNH_F_DEAD (line 1444) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1445) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1446) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1447) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1448) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1449) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1450) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1451) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1452) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1453) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1454) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1455) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1456) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1457) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1458) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1459) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1460) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1461) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1462) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1463) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1464) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1465) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1466) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1467) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1468) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1469) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1470) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1471) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1472) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1473) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1474) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1475) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1476) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1477) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 1478) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPNS (line 1479) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1480) | SCM_WIFI_STATUS = 0x29 constant SECCOMP_MODE_DISABLED (line 1481) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 1482) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 1483) | SECCOMP_MODE_STRICT = 0x1 constant SHUT_RD (line 1484) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1485) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1486) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1487) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1488) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1489) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1490) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1491) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1492) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1493) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1494) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1495) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1496) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1497) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1498) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1499) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1500) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1501) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1502) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1503) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1504) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1505) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1506) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1507) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1508) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1509) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1510) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1511) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1512) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1513) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1514) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1515) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1516) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1517) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1518) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1519) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1520) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1521) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1522) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1523) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1524) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1525) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1526) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1527) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1528) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1529) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1530) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1531) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1532) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1533) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1534) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 1535) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 1536) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1537) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1538) | SIOCINQ = 0x541b constant SIOCOUTQ (line 1539) | SIOCOUTQ = 0x5411 constant SIOCOUTQNSD (line 1540) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1541) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1542) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1543) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1544) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1545) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1546) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1547) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1548) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1549) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1550) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1551) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1552) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1553) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1554) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1555) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1556) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1557) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1558) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1559) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1560) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1561) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1562) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1563) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1564) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1565) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1566) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1567) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1568) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1569) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1570) | SOCK_DGRAM = 0x2 constant SOCK_IOC_TYPE (line 1571) | SOCK_IOC_TYPE = 0x89 constant SOCK_NONBLOCK (line 1572) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1573) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1574) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1575) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1576) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1577) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1578) | SOL_AAL = 0x109 constant SOL_ALG (line 1579) | SOL_ALG = 0x117 constant SOL_ATM (line 1580) | SOL_ATM = 0x108 constant SOL_CAIF (line 1581) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1582) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1583) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1584) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1585) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1586) | SOL_IP = 0x0 constant SOL_IPV6 (line 1587) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1588) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1589) | SOL_IUCV = 0x115 constant SOL_KCM (line 1590) | SOL_KCM = 0x119 constant SOL_LLC (line 1591) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1592) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1593) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1594) | SOL_NFC = 0x118 constant SOL_PACKET (line 1595) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1596) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1597) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1598) | SOL_RAW = 0xff constant SOL_RDS (line 1599) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1600) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1601) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1602) | SOL_TCP = 0x6 constant SOL_TIPC (line 1603) | SOL_TIPC = 0x10f constant SOL_X25 (line 1604) | SOL_X25 = 0x106 constant SOMAXCONN (line 1605) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1606) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1607) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1608) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1609) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1610) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1611) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1612) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1613) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1614) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1615) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1616) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1617) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1618) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1619) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1620) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1621) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1622) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1623) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1624) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1625) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1626) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1627) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1628) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1629) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1630) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1631) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1632) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1633) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1634) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1635) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1636) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1637) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1638) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1639) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1640) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1641) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1642) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1643) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1644) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1645) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1646) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1647) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1648) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1649) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1650) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1651) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1652) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1653) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1654) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1655) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1656) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1657) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1658) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1659) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1660) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1661) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1662) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1663) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1664) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1665) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1666) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1667) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1668) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1669) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1670) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1671) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1672) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1673) | S_IEXEC = 0x40 constant S_IFBLK (line 1674) | S_IFBLK = 0x6000 constant S_IFCHR (line 1675) | S_IFCHR = 0x2000 constant S_IFDIR (line 1676) | S_IFDIR = 0x4000 constant S_IFIFO (line 1677) | S_IFIFO = 0x1000 constant S_IFLNK (line 1678) | S_IFLNK = 0xa000 constant S_IFMT (line 1679) | S_IFMT = 0xf000 constant S_IFREG (line 1680) | S_IFREG = 0x8000 constant S_IFSOCK (line 1681) | S_IFSOCK = 0xc000 constant S_IREAD (line 1682) | S_IREAD = 0x100 constant S_IRGRP (line 1683) | S_IRGRP = 0x20 constant S_IROTH (line 1684) | S_IROTH = 0x4 constant S_IRUSR (line 1685) | S_IRUSR = 0x100 constant S_IRWXG (line 1686) | S_IRWXG = 0x38 constant S_IRWXO (line 1687) | S_IRWXO = 0x7 constant S_IRWXU (line 1688) | S_IRWXU = 0x1c0 constant S_ISGID (line 1689) | S_ISGID = 0x400 constant S_ISUID (line 1690) | S_ISUID = 0x800 constant S_ISVTX (line 1691) | S_ISVTX = 0x200 constant S_IWGRP (line 1692) | S_IWGRP = 0x10 constant S_IWOTH (line 1693) | S_IWOTH = 0x2 constant S_IWRITE (line 1694) | S_IWRITE = 0x80 constant S_IWUSR (line 1695) | S_IWUSR = 0x80 constant S_IXGRP (line 1696) | S_IXGRP = 0x8 constant S_IXOTH (line 1697) | S_IXOTH = 0x1 constant S_IXUSR (line 1698) | S_IXUSR = 0x40 constant TAB0 (line 1699) | TAB0 = 0x0 constant TAB1 (line 1700) | TAB1 = 0x800 constant TAB2 (line 1701) | TAB2 = 0x1000 constant TAB3 (line 1702) | TAB3 = 0x1800 constant TABDLY (line 1703) | TABDLY = 0x1800 constant TASKSTATS_CMD_ATTR_MAX (line 1704) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 1705) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 1706) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 1707) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 1708) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 1709) | TASKSTATS_VERSION = 0x8 constant TCFLSH (line 1710) | TCFLSH = 0x540b constant TCGETA (line 1711) | TCGETA = 0x5405 constant TCGETS (line 1712) | TCGETS = 0x5401 constant TCGETS2 (line 1713) | TCGETS2 = 0x802c542a constant TCGETX (line 1714) | TCGETX = 0x5432 constant TCIFLUSH (line 1715) | TCIFLUSH = 0x0 constant TCIOFF (line 1716) | TCIOFF = 0x2 constant TCIOFLUSH (line 1717) | TCIOFLUSH = 0x2 constant TCION (line 1718) | TCION = 0x3 constant TCOFLUSH (line 1719) | TCOFLUSH = 0x1 constant TCOOFF (line 1720) | TCOOFF = 0x0 constant TCOON (line 1721) | TCOON = 0x1 constant TCP_CC_INFO (line 1722) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1723) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1724) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1725) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1726) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1727) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1728) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1729) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1730) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1731) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1732) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1733) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1734) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1735) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1736) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1737) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1738) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1739) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1740) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1741) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1742) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1743) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1744) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1745) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1746) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1747) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1748) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1749) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1750) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1751) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1752) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 1753) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 1754) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1755) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1756) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1757) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1758) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1759) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1760) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1761) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1762) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1763) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1764) | TCSAFLUSH = 0x2 constant TCSBRK (line 1765) | TCSBRK = 0x5409 constant TCSBRKP (line 1766) | TCSBRKP = 0x5425 constant TCSETA (line 1767) | TCSETA = 0x5406 constant TCSETAF (line 1768) | TCSETAF = 0x5408 constant TCSETAW (line 1769) | TCSETAW = 0x5407 constant TCSETS (line 1770) | TCSETS = 0x5402 constant TCSETS2 (line 1771) | TCSETS2 = 0x402c542b constant TCSETSF (line 1772) | TCSETSF = 0x5404 constant TCSETSF2 (line 1773) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1774) | TCSETSW = 0x5403 constant TCSETSW2 (line 1775) | TCSETSW2 = 0x402c542c constant TCSETX (line 1776) | TCSETX = 0x5433 constant TCSETXF (line 1777) | TCSETXF = 0x5434 constant TCSETXW (line 1778) | TCSETXW = 0x5435 constant TCXONC (line 1779) | TCXONC = 0x540a constant TIOCCBRK (line 1780) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1781) | TIOCCONS = 0x541d constant TIOCEXCL (line 1782) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1783) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1784) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1785) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1786) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1787) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1788) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1789) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1790) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1791) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1792) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1793) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1794) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1795) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1796) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1797) | TIOCINQ = 0x541b constant TIOCLINUX (line 1798) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1799) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1800) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1801) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1802) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1803) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1804) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1805) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1806) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1807) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1808) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1809) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1810) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1811) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1812) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1813) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1814) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1815) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1816) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1817) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1818) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1819) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1820) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1821) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1822) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1823) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1824) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1825) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1826) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1827) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1828) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1829) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1830) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1831) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1832) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1833) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1834) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1835) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1836) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1837) | TIOCSETD = 0x5423 constant TIOCSIG (line 1838) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1839) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1840) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1841) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1842) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1843) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1844) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1845) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1846) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1847) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1848) | TOSTOP = 0x100 constant TS_COMM_LEN (line 1849) | TS_COMM_LEN = 0x20 constant TUNATTACHFILTER (line 1850) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 1851) | TUNDETACHFILTER = 0x401054d6 constant TUNGETFEATURES (line 1852) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1853) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 1854) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1855) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 1856) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 1857) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 1858) | TUNGETVNETLE = 0x800454dd constant TUNSETDEBUG (line 1859) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1860) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1861) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1862) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1863) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1864) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1865) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1866) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1867) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1868) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1869) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1870) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 1871) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 1872) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 1873) | TUNSETVNETLE = 0x400454dc constant UMOUNT_NOFOLLOW (line 1874) | UMOUNT_NOFOLLOW = 0x8 constant VDISCARD (line 1875) | VDISCARD = 0xd constant VEOF (line 1876) | VEOF = 0x4 constant VEOL (line 1877) | VEOL = 0xb constant VEOL2 (line 1878) | VEOL2 = 0x10 constant VERASE (line 1879) | VERASE = 0x2 constant VINTR (line 1880) | VINTR = 0x0 constant VKILL (line 1881) | VKILL = 0x3 constant VLNEXT (line 1882) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1883) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1884) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1885) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1886) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1887) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1888) | VMIN = 0x6 constant VM_SOCKETS_INVALID_VERSION (line 1889) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1890) | VQUIT = 0x1 constant VREPRINT (line 1891) | VREPRINT = 0xc constant VSTART (line 1892) | VSTART = 0x8 constant VSTOP (line 1893) | VSTOP = 0x9 constant VSUSP (line 1894) | VSUSP = 0xa constant VSWTC (line 1895) | VSWTC = 0x7 constant VT0 (line 1896) | VT0 = 0x0 constant VT1 (line 1897) | VT1 = 0x4000 constant VTDLY (line 1898) | VTDLY = 0x4000 constant VTIME (line 1899) | VTIME = 0x5 constant VWERASE (line 1900) | VWERASE = 0xe constant WALL (line 1901) | WALL = 0x40000000 constant WCLONE (line 1902) | WCLONE = 0x80000000 constant WCONTINUED (line 1903) | WCONTINUED = 0x8 constant WEXITED (line 1904) | WEXITED = 0x4 constant WNOHANG (line 1905) | WNOHANG = 0x1 constant WNOTHREAD (line 1906) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1907) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1908) | WORDSIZE = 0x40 constant WSTOPPED (line 1909) | WSTOPPED = 0x2 constant WUNTRACED (line 1910) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1911) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 1912) | XATTR_REPLACE = 0x2 constant XCASE (line 1913) | XCASE = 0x4 constant XTABS (line 1914) | XTABS = 0x1800 constant E2BIG (line 1919) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1920) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1921) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1922) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1923) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1924) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1925) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1926) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1927) | EBADE = syscall.Errno(0x34) constant EBADF (line 1928) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1929) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1930) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1931) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1932) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1933) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1934) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1935) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1936) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1937) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1938) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1939) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1940) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1941) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1942) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1943) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1944) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1945) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1946) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1947) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1948) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1949) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1950) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1951) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1952) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1953) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1954) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1955) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1956) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1957) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1958) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1959) | EINVAL = syscall.Errno(0x16) constant EIO (line 1960) | EIO = syscall.Errno(0x5) constant EISCONN (line 1961) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1962) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1963) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1964) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1965) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1966) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1967) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1968) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1969) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1970) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1971) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1972) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1973) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1974) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1975) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1976) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1977) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1978) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1979) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1980) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1981) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1982) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1983) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1984) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1985) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1986) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1987) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1988) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1989) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1990) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1991) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1992) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1993) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1994) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1995) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1996) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1997) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1998) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1999) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 2000) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 2001) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 2002) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 2003) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 2004) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 2005) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 2006) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 2007) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 2008) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 2009) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 2010) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 2011) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 2012) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 2013) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 2014) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 2015) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 2016) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 2017) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 2018) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 2019) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 2020) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 2021) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 2022) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 2023) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 2024) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 2025) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 2026) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 2027) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 2028) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 2029) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 2030) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 2031) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 2032) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 2033) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 2034) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 2035) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 2036) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 2037) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 2038) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 2039) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 2040) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 2041) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 2042) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 2043) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 2044) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 2045) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 2046) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 2047) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 2048) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 2049) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 2050) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 2051) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 2052) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 2057) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2058) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 2059) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 2060) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 2061) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 2062) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 2063) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2064) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2065) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2066) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 2067) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 2068) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2069) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2070) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 2071) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 2072) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 2073) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 2074) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2075) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 2076) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 2077) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 2078) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 2079) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2080) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 2081) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 2082) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 2083) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 2084) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 2085) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 2086) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 2087) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 2088) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 2089) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 2090) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 2091) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2a constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_RDS (line 48) | AF_RDS = 0x15 constant AF_ROSE (line 49) | AF_ROSE = 0xb constant AF_ROUTE (line 50) | AF_ROUTE = 0x10 constant AF_RXRPC (line 51) | AF_RXRPC = 0x21 constant AF_SECURITY (line 52) | AF_SECURITY = 0xe constant AF_SNA (line 53) | AF_SNA = 0x16 constant AF_TIPC (line 54) | AF_TIPC = 0x1e constant AF_UNIX (line 55) | AF_UNIX = 0x1 constant AF_UNSPEC (line 56) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 57) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 58) | AF_WANPIPE = 0x19 constant AF_X25 (line 59) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 60) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 61) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 62) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 63) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 64) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 65) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 66) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 67) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 68) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 69) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 70) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 71) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 72) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 73) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 74) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 75) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 76) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 77) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 78) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 79) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 80) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 81) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 82) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 83) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 84) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 85) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 86) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 87) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 88) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 89) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 90) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 91) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 92) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 93) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 94) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 95) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 96) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 97) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 98) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 99) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 100) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 101) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 102) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 103) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 104) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 105) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 106) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 107) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 108) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 109) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 110) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 111) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 112) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 113) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 114) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 115) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 116) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 117) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 118) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 119) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 120) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 121) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 122) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 123) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 124) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 125) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 126) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 127) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 128) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 129) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 130) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 131) | ARPHRD_X25 = 0x10f constant ASI_LEON_DFLUSH (line 132) | ASI_LEON_DFLUSH = 0x11 constant ASI_LEON_IFLUSH (line 133) | ASI_LEON_IFLUSH = 0x10 constant ASI_LEON_MMUFLUSH (line 134) | ASI_LEON_MMUFLUSH = 0x18 constant B0 (line 135) | B0 = 0x0 constant B1000000 (line 136) | B1000000 = 0x100c constant B110 (line 137) | B110 = 0x3 constant B115200 (line 138) | B115200 = 0x1002 constant B1152000 (line 139) | B1152000 = 0x100d constant B1200 (line 140) | B1200 = 0x9 constant B134 (line 141) | B134 = 0x4 constant B150 (line 142) | B150 = 0x5 constant B1500000 (line 143) | B1500000 = 0x100e constant B153600 (line 144) | B153600 = 0x1006 constant B1800 (line 145) | B1800 = 0xa constant B19200 (line 146) | B19200 = 0xe constant B200 (line 147) | B200 = 0x6 constant B2000000 (line 148) | B2000000 = 0x100f constant B230400 (line 149) | B230400 = 0x1003 constant B2400 (line 150) | B2400 = 0xb constant B300 (line 151) | B300 = 0x7 constant B307200 (line 152) | B307200 = 0x1007 constant B38400 (line 153) | B38400 = 0xf constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x100a constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x100b constant B600 (line 160) | B600 = 0x8 constant B614400 (line 161) | B614400 = 0x1008 constant B75 (line 162) | B75 = 0x2 constant B76800 (line 163) | B76800 = 0x1005 constant B921600 (line 164) | B921600 = 0x1009 constant B9600 (line 165) | B9600 = 0xd constant BLKBSZGET (line 166) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 167) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 168) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 169) | BLKFRAGET = 0x1265 constant BLKFRASET (line 170) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 171) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 172) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 173) | BLKRAGET = 0x1263 constant BLKRASET (line 174) | BLKRASET = 0x1262 constant BLKROGET (line 175) | BLKROGET = 0x125e constant BLKROSET (line 176) | BLKROSET = 0x125d constant BLKRRPART (line 177) | BLKRRPART = 0x125f constant BLKSECTGET (line 178) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 179) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 180) | BLKSSZGET = 0x1268 constant BOTHER (line 181) | BOTHER = 0x1000 constant BPF_A (line 182) | BPF_A = 0x10 constant BPF_ABS (line 183) | BPF_ABS = 0x20 constant BPF_ADD (line 184) | BPF_ADD = 0x0 constant BPF_ALU (line 185) | BPF_ALU = 0x4 constant BPF_AND (line 186) | BPF_AND = 0x50 constant BPF_B (line 187) | BPF_B = 0x10 constant BPF_DIV (line 188) | BPF_DIV = 0x30 constant BPF_H (line 189) | BPF_H = 0x8 constant BPF_IMM (line 190) | BPF_IMM = 0x0 constant BPF_IND (line 191) | BPF_IND = 0x40 constant BPF_JA (line 192) | BPF_JA = 0x0 constant BPF_JEQ (line 193) | BPF_JEQ = 0x10 constant BPF_JGE (line 194) | BPF_JGE = 0x30 constant BPF_JGT (line 195) | BPF_JGT = 0x20 constant BPF_JMP (line 196) | BPF_JMP = 0x5 constant BPF_JSET (line 197) | BPF_JSET = 0x40 constant BPF_K (line 198) | BPF_K = 0x0 constant BPF_LD (line 199) | BPF_LD = 0x0 constant BPF_LDX (line 200) | BPF_LDX = 0x1 constant BPF_LEN (line 201) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 202) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 203) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 204) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 205) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 206) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 207) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 208) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 209) | BPF_MISC = 0x7 constant BPF_MOD (line 210) | BPF_MOD = 0x90 constant BPF_MSH (line 211) | BPF_MSH = 0xa0 constant BPF_MUL (line 212) | BPF_MUL = 0x20 constant BPF_NEG (line 213) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 214) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 215) | BPF_OR = 0x40 constant BPF_RET (line 216) | BPF_RET = 0x6 constant BPF_RSH (line 217) | BPF_RSH = 0x70 constant BPF_ST (line 218) | BPF_ST = 0x2 constant BPF_STX (line 219) | BPF_STX = 0x3 constant BPF_SUB (line 220) | BPF_SUB = 0x10 constant BPF_TAX (line 221) | BPF_TAX = 0x0 constant BPF_TXA (line 222) | BPF_TXA = 0x80 constant BPF_W (line 223) | BPF_W = 0x0 constant BPF_X (line 224) | BPF_X = 0x8 constant BPF_XOR (line 225) | BPF_XOR = 0xa0 constant BRKINT (line 226) | BRKINT = 0x2 constant BS0 (line 227) | BS0 = 0x0 constant BS1 (line 228) | BS1 = 0x2000 constant BSDLY (line 229) | BSDLY = 0x2000 constant CAN_BCM (line 230) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 231) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 232) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 233) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 234) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 235) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 236) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 237) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 238) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 239) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 240) | CAN_MCNET = 0x5 constant CAN_MTU (line 241) | CAN_MTU = 0x10 constant CAN_NPROTO (line 242) | CAN_NPROTO = 0x7 constant CAN_RAW (line 243) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EMT_TAGOVF (line 328) | EMT_TAGOVF = 0x1 constant ENCODING_DEFAULT (line 329) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 330) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 331) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 332) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 333) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 334) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 335) | EPOLLERR = 0x8 constant EPOLLET (line 336) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 337) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 338) | EPOLLHUP = 0x10 constant EPOLLIN (line 339) | EPOLLIN = 0x1 constant EPOLLMSG (line 340) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 341) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 342) | EPOLLOUT = 0x4 constant EPOLLPRI (line 343) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 344) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 345) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 346) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 347) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 348) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 349) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 350) | EPOLL_CLOEXEC = 0x400000 constant EPOLL_CTL_ADD (line 351) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 352) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 353) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 354) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 355) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 356) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 357) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 358) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 359) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 360) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 361) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 362) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 363) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 364) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 365) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 366) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 367) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 368) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 369) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 370) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 371) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 372) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 373) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 374) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 375) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 376) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 377) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 378) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 379) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 380) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 381) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 382) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 383) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 384) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 385) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 386) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 387) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 388) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 389) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 390) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 391) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 392) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 393) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 394) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 395) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 396) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 397) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 398) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 399) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 400) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 401) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 402) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 403) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 404) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 405) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 406) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 407) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 408) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 409) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 410) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 411) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 412) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 413) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 414) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 415) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 416) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 417) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 418) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 419) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 420) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 421) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 422) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 423) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 424) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 425) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 426) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 427) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 428) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 429) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 430) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 431) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 432) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 433) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 434) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 435) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 436) | ETH_P_XDSA = 0xf8 constant EXTA (line 437) | EXTA = 0xe constant EXTB (line 438) | EXTB = 0xf constant EXTPROC (line 439) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 440) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 441) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 442) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 443) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 444) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 445) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 446) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 447) | FD_SETSIZE = 0x400 constant FF0 (line 448) | FF0 = 0x0 constant FF1 (line 449) | FF1 = 0x8000 constant FFDLY (line 450) | FFDLY = 0x8000 constant FLUSHO (line 451) | FLUSHO = 0x2000 constant F_DUPFD (line 452) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 453) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 454) | F_EXLCK = 0x4 constant F_GETFD (line 455) | F_GETFD = 0x1 constant F_GETFL (line 456) | F_GETFL = 0x3 constant F_GETLEASE (line 457) | F_GETLEASE = 0x401 constant F_GETLK (line 458) | F_GETLK = 0x7 constant F_GETLK64 (line 459) | F_GETLK64 = 0x7 constant F_GETOWN (line 460) | F_GETOWN = 0x5 constant F_GETOWN_EX (line 461) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 462) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 463) | F_GETSIG = 0xb constant F_LOCK (line 464) | F_LOCK = 0x1 constant F_NOTIFY (line 465) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 466) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 467) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 468) | F_OFD_SETLKW = 0x26 constant F_OK (line 469) | F_OK = 0x0 constant F_RDLCK (line 470) | F_RDLCK = 0x1 constant F_SETFD (line 471) | F_SETFD = 0x2 constant F_SETFL (line 472) | F_SETFL = 0x4 constant F_SETLEASE (line 473) | F_SETLEASE = 0x400 constant F_SETLK (line 474) | F_SETLK = 0x8 constant F_SETLK64 (line 475) | F_SETLK64 = 0x8 constant F_SETLKW (line 476) | F_SETLKW = 0x9 constant F_SETLKW64 (line 477) | F_SETLKW64 = 0x9 constant F_SETOWN (line 478) | F_SETOWN = 0x6 constant F_SETOWN_EX (line 479) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 480) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 481) | F_SETSIG = 0xa constant F_SHLCK (line 482) | F_SHLCK = 0x8 constant F_TEST (line 483) | F_TEST = 0x3 constant F_TLOCK (line 484) | F_TLOCK = 0x2 constant F_ULOCK (line 485) | F_ULOCK = 0x0 constant F_UNLCK (line 486) | F_UNLCK = 0x3 constant F_WRLCK (line 487) | F_WRLCK = 0x2 constant GRND_NONBLOCK (line 488) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 489) | GRND_RANDOM = 0x2 constant HUPCL (line 490) | HUPCL = 0x400 constant IBSHIFT (line 491) | IBSHIFT = 0x10 constant ICANON (line 492) | ICANON = 0x2 constant ICMPV6_FILTER (line 493) | ICMPV6_FILTER = 0x1 constant ICRNL (line 494) | ICRNL = 0x100 constant IEXTEN (line 495) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 496) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 497) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 498) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 499) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 500) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 501) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 502) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 503) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 504) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 505) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 506) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 507) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 508) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 509) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 510) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 511) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 512) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 513) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 514) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 515) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 516) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 517) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 518) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 519) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 520) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 521) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 522) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 523) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 524) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 525) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 526) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 527) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 528) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 529) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 530) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 531) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 532) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 533) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 534) | IFF_SLAVE = 0x800 constant IFF_TAP (line 535) | IFF_TAP = 0x2 constant IFF_TUN (line 536) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 537) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 538) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 539) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 540) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 541) | IFNAMSIZ = 0x10 constant IGNBRK (line 542) | IGNBRK = 0x1 constant IGNCR (line 543) | IGNCR = 0x80 constant IGNPAR (line 544) | IGNPAR = 0x4 constant IMAXBEL (line 545) | IMAXBEL = 0x2000 constant INLCR (line 546) | INLCR = 0x40 constant INPCK (line 547) | INPCK = 0x10 constant IN_ACCESS (line 548) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 549) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 550) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 551) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 552) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 553) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 554) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 555) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 556) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 557) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 558) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 559) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 560) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 561) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 562) | IN_CLOEXEC = 0x400000 constant IN_CLOSE (line 563) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 564) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 565) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 566) | IN_CREATE = 0x100 constant IN_DELETE (line 567) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 568) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 569) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 570) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 571) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 572) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 573) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 574) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 575) | IN_MODIFY = 0x2 constant IN_MOVE (line 576) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 577) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 578) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 579) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 580) | IN_NONBLOCK = 0x4000 constant IN_ONESHOT (line 581) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 582) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 583) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 584) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 585) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 586) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 587) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 588) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 589) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 590) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 591) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 592) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 593) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 594) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 595) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 596) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 597) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 598) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 599) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 600) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 601) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 602) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 603) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 604) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 605) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 606) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 607) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 608) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 609) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 610) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 611) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 612) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 613) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 614) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 615) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 616) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 617) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 618) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 619) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 620) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 621) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 622) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 623) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 624) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 625) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 626) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 627) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 628) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 629) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 630) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 631) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 632) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 633) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 634) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 635) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 636) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 637) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 638) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 639) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 640) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 641) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 642) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 643) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 644) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 645) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 646) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 647) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 648) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 649) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 650) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 651) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 652) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 653) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 654) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 655) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 656) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 657) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 658) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 659) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 660) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 661) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 662) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 663) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 664) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 665) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 666) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 667) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 668) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 669) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 670) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 671) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 672) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 673) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 674) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 675) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 676) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 677) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 678) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 679) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 680) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 681) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 682) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 683) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 684) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 685) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 686) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 687) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 688) | IP_MF = 0x2000 constant IP_MINTTL (line 689) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 690) | IP_MSFILTER = 0x29 constant IP_MSS (line 691) | IP_MSS = 0x240 constant IP_MTU (line 692) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 693) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 694) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 695) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 696) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 697) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 698) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 699) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 700) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 701) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 702) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 703) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 704) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 705) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 706) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 707) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 708) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 709) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 710) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 711) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 712) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 713) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 714) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 715) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 716) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 717) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 718) | IP_RETOPTS = 0x7 constant IP_RF (line 719) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 720) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 721) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 722) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 723) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 724) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 725) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 726) | IP_XFRM_POLICY = 0x11 constant ISIG (line 727) | ISIG = 0x1 constant ISTRIP (line 728) | ISTRIP = 0x20 constant IUCLC (line 729) | IUCLC = 0x200 constant IUTF8 (line 730) | IUTF8 = 0x4000 constant IXANY (line 731) | IXANY = 0x800 constant IXOFF (line 732) | IXOFF = 0x1000 constant IXON (line 733) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 734) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 735) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 736) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 737) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 738) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 739) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 740) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 741) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 742) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 743) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 744) | LOCK_EX = 0x2 constant LOCK_NB (line 745) | LOCK_NB = 0x4 constant LOCK_SH (line 746) | LOCK_SH = 0x1 constant LOCK_UN (line 747) | LOCK_UN = 0x8 constant MADV_DODUMP (line 748) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 749) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 750) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 751) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 752) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 753) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 754) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 755) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 756) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 757) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 758) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 759) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 760) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 761) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 762) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 763) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 764) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 765) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 766) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 767) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 768) | MAP_FILE = 0x0 constant MAP_FIXED (line 769) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 770) | MAP_GROWSDOWN = 0x200 constant MAP_HUGETLB (line 771) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 772) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 773) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 774) | MAP_LOCKED = 0x100 constant MAP_NONBLOCK (line 775) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 776) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 777) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 778) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 779) | MAP_RENAME = 0x20 constant MAP_SHARED (line 780) | MAP_SHARED = 0x1 constant MAP_STACK (line 781) | MAP_STACK = 0x20000 constant MAP_TYPE (line 782) | MAP_TYPE = 0xf constant MCL_CURRENT (line 783) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 784) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 785) | MCL_ONFAULT = 0x8000 constant MNT_DETACH (line 786) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 787) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 788) | MNT_FORCE = 0x1 constant MSG_BATCH (line 789) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 790) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 791) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 792) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 793) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 794) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 795) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 796) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 797) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 798) | MSG_FIN = 0x200 constant MSG_MORE (line 799) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 800) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 801) | MSG_OOB = 0x1 constant MSG_PEEK (line 802) | MSG_PEEK = 0x2 constant MSG_PROXY (line 803) | MSG_PROXY = 0x10 constant MSG_RST (line 804) | MSG_RST = 0x1000 constant MSG_SYN (line 805) | MSG_SYN = 0x400 constant MSG_TRUNC (line 806) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 807) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 808) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 809) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 810) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 811) | MS_ASYNC = 0x1 constant MS_BIND (line 812) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 813) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 814) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 815) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 816) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 817) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 818) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 819) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 820) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 821) | MS_MOVE = 0x2000 constant MS_NOATIME (line 822) | MS_NOATIME = 0x400 constant MS_NODEV (line 823) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 824) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 825) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 826) | MS_NOSUID = 0x2 constant MS_NOUSER (line 827) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 828) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 829) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 830) | MS_RDONLY = 0x1 constant MS_REC (line 831) | MS_REC = 0x4000 constant MS_RELATIME (line 832) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 833) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 834) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 835) | MS_SHARED = 0x100000 constant MS_SILENT (line 836) | MS_SILENT = 0x8000 constant MS_SLAVE (line 837) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 838) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 839) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 840) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 841) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 842) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 843) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 844) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 845) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 846) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 847) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 848) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 849) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 850) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 851) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 852) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 853) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 854) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 855) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 856) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 857) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 858) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 859) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 860) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 861) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 862) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 863) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 864) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 865) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 866) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 867) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 868) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 869) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 870) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 871) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 872) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 873) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 874) | NETLINK_XFRM = 0x6 constant NL0 (line 875) | NL0 = 0x0 constant NL1 (line 876) | NL1 = 0x100 constant NLA_ALIGNTO (line 877) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 878) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 879) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 880) | NLA_HDRLEN = 0x4 constant NLDLY (line 881) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 882) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 883) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 884) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 885) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 886) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 887) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 888) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 889) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 890) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 891) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 892) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 893) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 894) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 895) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 896) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 897) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 898) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 899) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 900) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 901) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 902) | NLM_F_ROOT = 0x100 constant NOFLSH (line 903) | NOFLSH = 0x80 constant OCRNL (line 904) | OCRNL = 0x8 constant OFDEL (line 905) | OFDEL = 0x80 constant OFILL (line 906) | OFILL = 0x40 constant OLCUC (line 907) | OLCUC = 0x2 constant ONLCR (line 908) | ONLCR = 0x4 constant ONLRET (line 909) | ONLRET = 0x20 constant ONOCR (line 910) | ONOCR = 0x10 constant OPOST (line 911) | OPOST = 0x1 constant O_ACCMODE (line 912) | O_ACCMODE = 0x3 constant O_APPEND (line 913) | O_APPEND = 0x8 constant O_ASYNC (line 914) | O_ASYNC = 0x40 constant O_CLOEXEC (line 915) | O_CLOEXEC = 0x400000 constant O_CREAT (line 916) | O_CREAT = 0x200 constant O_DIRECT (line 917) | O_DIRECT = 0x100000 constant O_DIRECTORY (line 918) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 919) | O_DSYNC = 0x2000 constant O_EXCL (line 920) | O_EXCL = 0x800 constant O_FSYNC (line 921) | O_FSYNC = 0x802000 constant O_LARGEFILE (line 922) | O_LARGEFILE = 0x0 constant O_NDELAY (line 923) | O_NDELAY = 0x4004 constant O_NOATIME (line 924) | O_NOATIME = 0x200000 constant O_NOCTTY (line 925) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 926) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 927) | O_NONBLOCK = 0x4000 constant O_PATH (line 928) | O_PATH = 0x1000000 constant O_RDONLY (line 929) | O_RDONLY = 0x0 constant O_RDWR (line 930) | O_RDWR = 0x2 constant O_RSYNC (line 931) | O_RSYNC = 0x802000 constant O_SYNC (line 932) | O_SYNC = 0x802000 constant O_TMPFILE (line 933) | O_TMPFILE = 0x2010000 constant O_TRUNC (line 934) | O_TRUNC = 0x400 constant O_WRONLY (line 935) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 936) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 937) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 938) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 939) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 940) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 941) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 942) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 943) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 944) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 945) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 946) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 947) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 948) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 949) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 950) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 951) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 952) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 953) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 954) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 955) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 956) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 957) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 958) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 959) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 960) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 961) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 962) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 963) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 964) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 965) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 966) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 967) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 968) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 969) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 970) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 971) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 972) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 973) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 974) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 975) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 976) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 977) | PACKET_USER = 0x6 constant PACKET_VERSION (line 978) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 979) | PACKET_VNET_HDR = 0xf constant PARENB (line 980) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 981) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 982) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 983) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 984) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 985) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 986) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 987) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 988) | PARITY_NONE = 0x1 constant PARMRK (line 989) | PARMRK = 0x8 constant PARODD (line 990) | PARODD = 0x200 constant PENDIN (line 991) | PENDIN = 0x4000 constant PRIO_PGRP (line 992) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 993) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 994) | PRIO_USER = 0x2 constant PROT_EXEC (line 995) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 996) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 997) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 998) | PROT_NONE = 0x0 constant PROT_READ (line 999) | PROT_READ = 0x1 constant PROT_WRITE (line 1000) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1001) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1002) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1003) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1004) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1005) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1006) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1007) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1008) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1009) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1010) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1011) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1012) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1013) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1014) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1015) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1016) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1017) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1018) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1019) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1020) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1021) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1022) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1023) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1024) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1025) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1026) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1027) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1028) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1029) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1030) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1031) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1032) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1033) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1034) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1035) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1036) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1037) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1038) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1039) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1040) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1041) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1042) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1043) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1044) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1045) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1046) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1047) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1048) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1049) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1050) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1051) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1052) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1053) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1054) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1055) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1056) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1057) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1058) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1059) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1060) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1061) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1062) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1063) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1064) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1065) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1066) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1067) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1068) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1069) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1070) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1071) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1072) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1073) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1074) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1075) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1076) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1077) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1078) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1079) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1080) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1081) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1082) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1083) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1084) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1085) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1086) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1087) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1088) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1089) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1090) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1091) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1092) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1093) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1094) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1095) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1096) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1097) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1098) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1099) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1100) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1101) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1102) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1103) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1104) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1105) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1106) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPAREGS (line 1107) | PTRACE_GETFPAREGS = 0x14 constant PTRACE_GETFPREGS (line 1108) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPREGS64 (line 1109) | PTRACE_GETFPREGS64 = 0x19 constant PTRACE_GETREGS (line 1110) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGS64 (line 1111) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETREGSET (line 1112) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1113) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1114) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_INTERRUPT (line 1115) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1116) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1117) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1118) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1119) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1120) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1121) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1122) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1123) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1124) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1125) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1126) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1127) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1128) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1129) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1130) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1131) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1132) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1133) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1134) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1135) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1136) | PTRACE_POKEUSR = 0x6 constant PTRACE_READDATA (line 1137) | PTRACE_READDATA = 0x10 constant PTRACE_READTEXT (line 1138) | PTRACE_READTEXT = 0x12 constant PTRACE_SECCOMP_GET_FILTER (line 1139) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1140) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPAREGS (line 1141) | PTRACE_SETFPAREGS = 0x15 constant PTRACE_SETFPREGS (line 1142) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPREGS64 (line 1143) | PTRACE_SETFPREGS64 = 0x1a constant PTRACE_SETOPTIONS (line 1144) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1145) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGS64 (line 1146) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETREGSET (line 1147) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1148) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1149) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLESTEP (line 1150) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SPARC_DETACH (line 1151) | PTRACE_SPARC_DETACH = 0xb constant PTRACE_SYSCALL (line 1152) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1153) | PTRACE_TRACEME = 0x0 constant PTRACE_WRITEDATA (line 1154) | PTRACE_WRITEDATA = 0x11 constant PTRACE_WRITETEXT (line 1155) | PTRACE_WRITETEXT = 0x13 constant PT_FP (line 1156) | PT_FP = 0x48 constant PT_G0 (line 1157) | PT_G0 = 0x10 constant PT_G1 (line 1158) | PT_G1 = 0x14 constant PT_G2 (line 1159) | PT_G2 = 0x18 constant PT_G3 (line 1160) | PT_G3 = 0x1c constant PT_G4 (line 1161) | PT_G4 = 0x20 constant PT_G5 (line 1162) | PT_G5 = 0x24 constant PT_G6 (line 1163) | PT_G6 = 0x28 constant PT_G7 (line 1164) | PT_G7 = 0x2c constant PT_I0 (line 1165) | PT_I0 = 0x30 constant PT_I1 (line 1166) | PT_I1 = 0x34 constant PT_I2 (line 1167) | PT_I2 = 0x38 constant PT_I3 (line 1168) | PT_I3 = 0x3c constant PT_I4 (line 1169) | PT_I4 = 0x40 constant PT_I5 (line 1170) | PT_I5 = 0x44 constant PT_I6 (line 1171) | PT_I6 = 0x48 constant PT_I7 (line 1172) | PT_I7 = 0x4c constant PT_NPC (line 1173) | PT_NPC = 0x8 constant PT_PC (line 1174) | PT_PC = 0x4 constant PT_PSR (line 1175) | PT_PSR = 0x0 constant PT_REGS_MAGIC (line 1176) | PT_REGS_MAGIC = 0x57ac6c00 constant PT_TNPC (line 1177) | PT_TNPC = 0x90 constant PT_TPC (line 1178) | PT_TPC = 0x88 constant PT_TSTATE (line 1179) | PT_TSTATE = 0x80 constant PT_V9_FP (line 1180) | PT_V9_FP = 0x70 constant PT_V9_G0 (line 1181) | PT_V9_G0 = 0x0 constant PT_V9_G1 (line 1182) | PT_V9_G1 = 0x8 constant PT_V9_G2 (line 1183) | PT_V9_G2 = 0x10 constant PT_V9_G3 (line 1184) | PT_V9_G3 = 0x18 constant PT_V9_G4 (line 1185) | PT_V9_G4 = 0x20 constant PT_V9_G5 (line 1186) | PT_V9_G5 = 0x28 constant PT_V9_G6 (line 1187) | PT_V9_G6 = 0x30 constant PT_V9_G7 (line 1188) | PT_V9_G7 = 0x38 constant PT_V9_I0 (line 1189) | PT_V9_I0 = 0x40 constant PT_V9_I1 (line 1190) | PT_V9_I1 = 0x48 constant PT_V9_I2 (line 1191) | PT_V9_I2 = 0x50 constant PT_V9_I3 (line 1192) | PT_V9_I3 = 0x58 constant PT_V9_I4 (line 1193) | PT_V9_I4 = 0x60 constant PT_V9_I5 (line 1194) | PT_V9_I5 = 0x68 constant PT_V9_I6 (line 1195) | PT_V9_I6 = 0x70 constant PT_V9_I7 (line 1196) | PT_V9_I7 = 0x78 constant PT_V9_MAGIC (line 1197) | PT_V9_MAGIC = 0x9c constant PT_V9_TNPC (line 1198) | PT_V9_TNPC = 0x90 constant PT_V9_TPC (line 1199) | PT_V9_TPC = 0x88 constant PT_V9_TSTATE (line 1200) | PT_V9_TSTATE = 0x80 constant PT_V9_Y (line 1201) | PT_V9_Y = 0x98 constant PT_WIM (line 1202) | PT_WIM = 0x10 constant PT_Y (line 1203) | PT_Y = 0xc constant RLIMIT_AS (line 1204) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1205) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1206) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1207) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1208) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1209) | RLIMIT_NOFILE = 0x6 constant RLIMIT_STACK (line 1210) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1211) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1212) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1213) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1214) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1215) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1216) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1217) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1218) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1219) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1220) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1221) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1222) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1223) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1224) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1225) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1226) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1227) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1228) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1229) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1230) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1231) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1232) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1233) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1234) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1235) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1236) | RTA_MAX = 0x18 constant RTCF_DIRECTSRC (line 1237) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1238) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1239) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1240) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1241) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1242) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1243) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1244) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1245) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1246) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1247) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1248) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1249) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1250) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1251) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1252) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1253) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1254) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1255) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1256) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1257) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1258) | RTF_MSS = 0x40 constant RTF_MTU (line 1259) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1260) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1261) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1262) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1263) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1264) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1265) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1266) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1267) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1268) | RTF_STATIC = 0x400 constant RTF_THROW (line 1269) | RTF_THROW = 0x2000 constant RTF_UP (line 1270) | RTF_UP = 0x1 constant RTF_WINDOW (line 1271) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1272) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1273) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1274) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1275) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1276) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1277) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1278) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1279) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1280) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1281) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1282) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1283) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1284) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1285) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1286) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1287) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1288) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1289) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1290) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1291) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1292) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1293) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1294) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1295) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1296) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1297) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1298) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1299) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1300) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1301) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1302) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1303) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1304) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1305) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1306) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1307) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1308) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1309) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1310) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1311) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1312) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1313) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1314) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1315) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1316) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1317) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1318) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1319) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1320) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1321) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1322) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1323) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1324) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1325) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1326) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1327) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1328) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1329) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1330) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1331) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1332) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1333) | RTNH_COMPARE_MASK = 0x11 constant RTNH_F_DEAD (line 1334) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1335) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1336) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1337) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1338) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1339) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1340) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1341) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1342) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1343) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1344) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1345) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1346) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1347) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1348) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1349) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1350) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1351) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1352) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1353) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1354) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1355) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1356) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1357) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1358) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1359) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1360) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1361) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1362) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1363) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1364) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1365) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1366) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1367) | SCM_TIMESTAMPING = 0x23 constant SCM_TIMESTAMPNS (line 1368) | SCM_TIMESTAMPNS = 0x21 constant SCM_WIFI_STATUS (line 1369) | SCM_WIFI_STATUS = 0x25 constant SHUT_RD (line 1370) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1371) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1372) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1373) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1374) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1375) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1376) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1377) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1378) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1379) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1380) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1381) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1382) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1383) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1384) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1385) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1386) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1387) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1388) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1389) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1390) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1391) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1392) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1393) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1394) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1395) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1396) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1397) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1398) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1399) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1400) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1401) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1402) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1403) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1404) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1405) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1406) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1407) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1408) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1409) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1410) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1411) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1412) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1413) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1414) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1415) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1416) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1417) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1418) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1419) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1420) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1421) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1422) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1423) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 1424) | SIOCOUTQ = 0x40047473 constant SIOCOUTQNSD (line 1425) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1426) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1427) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1428) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1429) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1430) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1431) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1432) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1433) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1434) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1435) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1436) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1437) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1438) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1439) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1440) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1441) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1442) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1443) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1444) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1445) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1446) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1447) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1448) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1449) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1450) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1451) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1452) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1453) | SOCK_CLOEXEC = 0x400000 constant SOCK_DCCP (line 1454) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1455) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1456) | SOCK_NONBLOCK = 0x4000 constant SOCK_PACKET (line 1457) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1458) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1459) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1460) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1461) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1462) | SOL_AAL = 0x109 constant SOL_ALG (line 1463) | SOL_ALG = 0x117 constant SOL_ATM (line 1464) | SOL_ATM = 0x108 constant SOL_CAIF (line 1465) | SOL_CAIF = 0x116 constant SOL_DCCP (line 1466) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1467) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1468) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1469) | SOL_IP = 0x0 constant SOL_IPV6 (line 1470) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1471) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1472) | SOL_IUCV = 0x115 constant SOL_KCM (line 1473) | SOL_KCM = 0x119 constant SOL_LLC (line 1474) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1475) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1476) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1477) | SOL_NFC = 0x118 constant SOL_PACKET (line 1478) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1479) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1480) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1481) | SOL_RAW = 0xff constant SOL_RDS (line 1482) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1483) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1484) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1485) | SOL_TCP = 0x6 constant SOL_TIPC (line 1486) | SOL_TIPC = 0x10f constant SOL_X25 (line 1487) | SOL_X25 = 0x106 constant SOMAXCONN (line 1488) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1489) | SO_ACCEPTCONN = 0x8000 constant SO_ATTACH_BPF (line 1490) | SO_ATTACH_BPF = 0x34 constant SO_ATTACH_FILTER (line 1491) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1492) | SO_ATTACH_REUSEPORT_CBPF = 0x35 constant SO_ATTACH_REUSEPORT_EBPF (line 1493) | SO_ATTACH_REUSEPORT_EBPF = 0x36 constant SO_BINDTODEVICE (line 1494) | SO_BINDTODEVICE = 0xd constant SO_BPF_EXTENSIONS (line 1495) | SO_BPF_EXTENSIONS = 0x32 constant SO_BROADCAST (line 1496) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1497) | SO_BSDCOMPAT = 0x400 constant SO_BUSY_POLL (line 1498) | SO_BUSY_POLL = 0x30 constant SO_CNX_ADVICE (line 1499) | SO_CNX_ADVICE = 0x37 constant SO_DEBUG (line 1500) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1501) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1502) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1503) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1504) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1505) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1506) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1507) | SO_INCOMING_CPU = 0x33 constant SO_KEEPALIVE (line 1508) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1509) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1510) | SO_LOCK_FILTER = 0x28 constant SO_MARK (line 1511) | SO_MARK = 0x22 constant SO_MAX_PACING_RATE (line 1512) | SO_MAX_PACING_RATE = 0x31 constant SO_NOFCS (line 1513) | SO_NOFCS = 0x27 constant SO_NO_CHECK (line 1514) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1515) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1516) | SO_PASSCRED = 0x2 constant SO_PASSSEC (line 1517) | SO_PASSSEC = 0x1f constant SO_PEEK_OFF (line 1518) | SO_PEEK_OFF = 0x26 constant SO_PEERCRED (line 1519) | SO_PEERCRED = 0x40 constant SO_PEERNAME (line 1520) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1521) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1522) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1523) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1524) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1525) | SO_RCVBUFFORCE = 0x100b constant SO_RCVLOWAT (line 1526) | SO_RCVLOWAT = 0x800 constant SO_RCVTIMEO (line 1527) | SO_RCVTIMEO = 0x2000 constant SO_REUSEADDR (line 1528) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1529) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1530) | SO_RXQ_OVFL = 0x24 constant SO_SECURITY_AUTHENTICATION (line 1531) | SO_SECURITY_AUTHENTICATION = 0x5001 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1532) | SO_SECURITY_ENCRYPTION_NETWORK = 0x5004 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1533) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x5002 constant SO_SELECT_ERR_QUEUE (line 1534) | SO_SELECT_ERR_QUEUE = 0x29 constant SO_SNDBUF (line 1535) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1536) | SO_SNDBUFFORCE = 0x100a constant SO_SNDLOWAT (line 1537) | SO_SNDLOWAT = 0x1000 constant SO_SNDTIMEO (line 1538) | SO_SNDTIMEO = 0x4000 constant SO_TIMESTAMP (line 1539) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1540) | SO_TIMESTAMPING = 0x23 constant SO_TIMESTAMPNS (line 1541) | SO_TIMESTAMPNS = 0x21 constant SO_TYPE (line 1542) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1543) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1544) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1545) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1546) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1547) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1548) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1549) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1550) | SO_WIFI_STATUS = 0x25 constant SPLICE_F_GIFT (line 1551) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1552) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1553) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1554) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1555) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1556) | S_IEXEC = 0x40 constant S_IFBLK (line 1557) | S_IFBLK = 0x6000 constant S_IFCHR (line 1558) | S_IFCHR = 0x2000 constant S_IFDIR (line 1559) | S_IFDIR = 0x4000 constant S_IFIFO (line 1560) | S_IFIFO = 0x1000 constant S_IFLNK (line 1561) | S_IFLNK = 0xa000 constant S_IFMT (line 1562) | S_IFMT = 0xf000 constant S_IFREG (line 1563) | S_IFREG = 0x8000 constant S_IFSOCK (line 1564) | S_IFSOCK = 0xc000 constant S_IREAD (line 1565) | S_IREAD = 0x100 constant S_IRGRP (line 1566) | S_IRGRP = 0x20 constant S_IROTH (line 1567) | S_IROTH = 0x4 constant S_IRUSR (line 1568) | S_IRUSR = 0x100 constant S_IRWXG (line 1569) | S_IRWXG = 0x38 constant S_IRWXO (line 1570) | S_IRWXO = 0x7 constant S_IRWXU (line 1571) | S_IRWXU = 0x1c0 constant S_ISGID (line 1572) | S_ISGID = 0x400 constant S_ISUID (line 1573) | S_ISUID = 0x800 constant S_ISVTX (line 1574) | S_ISVTX = 0x200 constant S_IWGRP (line 1575) | S_IWGRP = 0x10 constant S_IWOTH (line 1576) | S_IWOTH = 0x2 constant S_IWRITE (line 1577) | S_IWRITE = 0x80 constant S_IWUSR (line 1578) | S_IWUSR = 0x80 constant S_IXGRP (line 1579) | S_IXGRP = 0x8 constant S_IXOTH (line 1580) | S_IXOTH = 0x1 constant S_IXUSR (line 1581) | S_IXUSR = 0x40 constant TAB0 (line 1582) | TAB0 = 0x0 constant TAB1 (line 1583) | TAB1 = 0x800 constant TAB2 (line 1584) | TAB2 = 0x1000 constant TAB3 (line 1585) | TAB3 = 0x1800 constant TABDLY (line 1586) | TABDLY = 0x1800 constant TCFLSH (line 1587) | TCFLSH = 0x20005407 constant TCGETA (line 1588) | TCGETA = 0x40125401 constant TCGETS (line 1589) | TCGETS = 0x40245408 constant TCGETS2 (line 1590) | TCGETS2 = 0x402c540c constant TCIFLUSH (line 1591) | TCIFLUSH = 0x0 constant TCIOFF (line 1592) | TCIOFF = 0x2 constant TCIOFLUSH (line 1593) | TCIOFLUSH = 0x2 constant TCION (line 1594) | TCION = 0x3 constant TCOFLUSH (line 1595) | TCOFLUSH = 0x1 constant TCOOFF (line 1596) | TCOOFF = 0x0 constant TCOON (line 1597) | TCOON = 0x1 constant TCP_CC_INFO (line 1598) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1599) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1600) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1601) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1602) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1603) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1604) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1605) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1606) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1607) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1608) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1609) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1610) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1611) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1612) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1613) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1614) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1615) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1616) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1617) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1618) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1619) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1620) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1621) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1622) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1623) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1624) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1625) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1626) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1627) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1628) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SAVED_SYN (line 1629) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1630) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1631) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1632) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1633) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1634) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1635) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1636) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1637) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1638) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1639) | TCSAFLUSH = 0x2 constant TCSBRK (line 1640) | TCSBRK = 0x20005405 constant TCSBRKP (line 1641) | TCSBRKP = 0x5425 constant TCSETA (line 1642) | TCSETA = 0x80125402 constant TCSETAF (line 1643) | TCSETAF = 0x80125404 constant TCSETAW (line 1644) | TCSETAW = 0x80125403 constant TCSETS (line 1645) | TCSETS = 0x80245409 constant TCSETS2 (line 1646) | TCSETS2 = 0x802c540d constant TCSETSF (line 1647) | TCSETSF = 0x8024540b constant TCSETSF2 (line 1648) | TCSETSF2 = 0x802c540f constant TCSETSW (line 1649) | TCSETSW = 0x8024540a constant TCSETSW2 (line 1650) | TCSETSW2 = 0x802c540e constant TCXONC (line 1651) | TCXONC = 0x20005406 constant TIOCCBRK (line 1652) | TIOCCBRK = 0x2000747a constant TIOCCONS (line 1653) | TIOCCONS = 0x20007424 constant TIOCEXCL (line 1654) | TIOCEXCL = 0x2000740d constant TIOCGDEV (line 1655) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1656) | TIOCGETD = 0x40047400 constant TIOCGEXCL (line 1657) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1658) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1659) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1660) | TIOCGPGRP = 0x40047483 constant TIOCGPKT (line 1661) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1662) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1663) | TIOCGPTN = 0x40047486 constant TIOCGRS485 (line 1664) | TIOCGRS485 = 0x40205441 constant TIOCGSERIAL (line 1665) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1666) | TIOCGSID = 0x40047485 constant TIOCGSOFTCAR (line 1667) | TIOCGSOFTCAR = 0x40047464 constant TIOCGWINSZ (line 1668) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1669) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 1670) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1671) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1672) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1673) | TIOCMGET = 0x4004746a constant TIOCMIWAIT (line 1674) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1675) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1676) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1677) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1678) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1679) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1680) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1681) | TIOCM_LE = 0x1 constant TIOCM_LOOP (line 1682) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 1683) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 1684) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 1685) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1686) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1687) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1688) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1689) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1690) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1691) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1692) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1693) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1694) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1695) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1696) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1697) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1698) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1699) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1700) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1701) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1702) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1703) | TIOCSCTTY = 0x20007484 constant TIOCSERCONFIG (line 1704) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1705) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1706) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1707) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1708) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1709) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1710) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1711) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1712) | TIOCSETD = 0x80047401 constant TIOCSIG (line 1713) | TIOCSIG = 0x80047488 constant TIOCSLCKTRMIOS (line 1714) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1715) | TIOCSPGRP = 0x80047482 constant TIOCSPTLCK (line 1716) | TIOCSPTLCK = 0x80047487 constant TIOCSRS485 (line 1717) | TIOCSRS485 = 0xc0205442 constant TIOCSSERIAL (line 1718) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1719) | TIOCSSOFTCAR = 0x80047465 constant TIOCSTART (line 1720) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1721) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1722) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1723) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1724) | TIOCVHANGUP = 0x20005437 constant TOSTOP (line 1725) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1726) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1727) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1728) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1729) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1730) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1731) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1732) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1733) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1734) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1735) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1736) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1737) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1738) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1739) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1740) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1741) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1742) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1743) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1744) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1745) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1746) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1747) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1748) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1749) | TUNSETVNETLE = 0x800454dc constant VDISCARD (line 1750) | VDISCARD = 0xd constant VDSUSP (line 1751) | VDSUSP = 0xb constant VEOF (line 1752) | VEOF = 0x4 constant VEOL (line 1753) | VEOL = 0x5 constant VEOL2 (line 1754) | VEOL2 = 0x6 constant VERASE (line 1755) | VERASE = 0x2 constant VINTR (line 1756) | VINTR = 0x0 constant VKILL (line 1757) | VKILL = 0x3 constant VLNEXT (line 1758) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1759) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1760) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1761) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1762) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1763) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1764) | VMIN = 0x4 constant VQUIT (line 1765) | VQUIT = 0x1 constant VREPRINT (line 1766) | VREPRINT = 0xc constant VSTART (line 1767) | VSTART = 0x8 constant VSTOP (line 1768) | VSTOP = 0x9 constant VSUSP (line 1769) | VSUSP = 0xa constant VSWTC (line 1770) | VSWTC = 0x7 constant VT0 (line 1771) | VT0 = 0x0 constant VT1 (line 1772) | VT1 = 0x4000 constant VTDLY (line 1773) | VTDLY = 0x4000 constant VTIME (line 1774) | VTIME = 0x5 constant VWERASE (line 1775) | VWERASE = 0xe constant WALL (line 1776) | WALL = 0x40000000 constant WCLONE (line 1777) | WCLONE = 0x80000000 constant WCONTINUED (line 1778) | WCONTINUED = 0x8 constant WEXITED (line 1779) | WEXITED = 0x4 constant WNOHANG (line 1780) | WNOHANG = 0x1 constant WNOTHREAD (line 1781) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1782) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1783) | WORDSIZE = 0x40 constant WRAP (line 1784) | WRAP = 0x20000 constant WSTOPPED (line 1785) | WSTOPPED = 0x2 constant WUNTRACED (line 1786) | WUNTRACED = 0x2 constant XCASE (line 1787) | XCASE = 0x4 constant XTABS (line 1788) | XTABS = 0x1800 constant __TIOCFLUSH (line 1789) | __TIOCFLUSH = 0x80047410 constant E2BIG (line 1794) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1795) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1796) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1797) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EADV (line 1798) | EADV = syscall.Errno(0x53) constant EAFNOSUPPORT (line 1799) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1800) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1801) | EALREADY = syscall.Errno(0x25) constant EBADE (line 1802) | EBADE = syscall.Errno(0x66) constant EBADF (line 1803) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1804) | EBADFD = syscall.Errno(0x5d) constant EBADMSG (line 1805) | EBADMSG = syscall.Errno(0x4c) constant EBADR (line 1806) | EBADR = syscall.Errno(0x67) constant EBADRQC (line 1807) | EBADRQC = syscall.Errno(0x6a) constant EBADSLT (line 1808) | EBADSLT = syscall.Errno(0x6b) constant EBFONT (line 1809) | EBFONT = syscall.Errno(0x6d) constant EBUSY (line 1810) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1811) | ECANCELED = syscall.Errno(0x7f) constant ECHILD (line 1812) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1813) | ECHRNG = syscall.Errno(0x5e) constant ECOMM (line 1814) | ECOMM = syscall.Errno(0x55) constant ECONNABORTED (line 1815) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1816) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1817) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1818) | EDEADLK = syscall.Errno(0x4e) constant EDEADLOCK (line 1819) | EDEADLOCK = syscall.Errno(0x6c) constant EDESTADDRREQ (line 1820) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1821) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1822) | EDOTDOT = syscall.Errno(0x58) constant EDQUOT (line 1823) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1824) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1825) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1826) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1827) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1828) | EHOSTUNREACH = syscall.Errno(0x41) constant EHWPOISON (line 1829) | EHWPOISON = syscall.Errno(0x87) constant EIDRM (line 1830) | EIDRM = syscall.Errno(0x4d) constant EILSEQ (line 1831) | EILSEQ = syscall.Errno(0x7a) constant EINPROGRESS (line 1832) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1833) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1834) | EINVAL = syscall.Errno(0x16) constant EIO (line 1835) | EIO = syscall.Errno(0x5) constant EISCONN (line 1836) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1837) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1838) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1839) | EKEYEXPIRED = syscall.Errno(0x81) constant EKEYREJECTED (line 1840) | EKEYREJECTED = syscall.Errno(0x83) constant EKEYREVOKED (line 1841) | EKEYREVOKED = syscall.Errno(0x82) constant EL2HLT (line 1842) | EL2HLT = syscall.Errno(0x65) constant EL2NSYNC (line 1843) | EL2NSYNC = syscall.Errno(0x5f) constant EL3HLT (line 1844) | EL3HLT = syscall.Errno(0x60) constant EL3RST (line 1845) | EL3RST = syscall.Errno(0x61) constant ELIBACC (line 1846) | ELIBACC = syscall.Errno(0x72) constant ELIBBAD (line 1847) | ELIBBAD = syscall.Errno(0x70) constant ELIBEXEC (line 1848) | ELIBEXEC = syscall.Errno(0x6e) constant ELIBMAX (line 1849) | ELIBMAX = syscall.Errno(0x7b) constant ELIBSCN (line 1850) | ELIBSCN = syscall.Errno(0x7c) constant ELNRNG (line 1851) | ELNRNG = syscall.Errno(0x62) constant ELOOP (line 1852) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1853) | EMEDIUMTYPE = syscall.Errno(0x7e) constant EMFILE (line 1854) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1855) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1856) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1857) | EMULTIHOP = syscall.Errno(0x57) constant ENAMETOOLONG (line 1858) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENAVAIL (line 1859) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1860) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1861) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1862) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1863) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1864) | ENOANO = syscall.Errno(0x69) constant ENOBUFS (line 1865) | ENOBUFS = syscall.Errno(0x37) constant ENOCSI (line 1866) | ENOCSI = syscall.Errno(0x64) constant ENODATA (line 1867) | ENODATA = syscall.Errno(0x6f) constant ENODEV (line 1868) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1869) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1870) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1871) | ENOKEY = syscall.Errno(0x80) constant ENOLCK (line 1872) | ENOLCK = syscall.Errno(0x4f) constant ENOLINK (line 1873) | ENOLINK = syscall.Errno(0x52) constant ENOMEDIUM (line 1874) | ENOMEDIUM = syscall.Errno(0x7d) constant ENOMEM (line 1875) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1876) | ENOMSG = syscall.Errno(0x4b) constant ENONET (line 1877) | ENONET = syscall.Errno(0x50) constant ENOPKG (line 1878) | ENOPKG = syscall.Errno(0x71) constant ENOPROTOOPT (line 1879) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1880) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1881) | ENOSR = syscall.Errno(0x4a) constant ENOSTR (line 1882) | ENOSTR = syscall.Errno(0x48) constant ENOSYS (line 1883) | ENOSYS = syscall.Errno(0x5a) constant ENOTBLK (line 1884) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1885) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1886) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1887) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTNAM (line 1888) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1889) | ENOTRECOVERABLE = syscall.Errno(0x85) constant ENOTSOCK (line 1890) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1891) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1892) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1893) | ENOTUNIQ = syscall.Errno(0x73) constant ENXIO (line 1894) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1895) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1896) | EOVERFLOW = syscall.Errno(0x5c) constant EOWNERDEAD (line 1897) | EOWNERDEAD = syscall.Errno(0x84) constant EPERM (line 1898) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1899) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1900) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1901) | EPROCLIM = syscall.Errno(0x43) constant EPROTO (line 1902) | EPROTO = syscall.Errno(0x56) constant EPROTONOSUPPORT (line 1903) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1904) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1905) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1906) | EREMCHG = syscall.Errno(0x59) constant EREMOTE (line 1907) | EREMOTE = syscall.Errno(0x47) constant EREMOTEIO (line 1908) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1909) | ERESTART = syscall.Errno(0x74) constant ERFKILL (line 1910) | ERFKILL = syscall.Errno(0x86) constant EROFS (line 1911) | EROFS = syscall.Errno(0x1e) constant ERREMOTE (line 1912) | ERREMOTE = syscall.Errno(0x51) constant ESHUTDOWN (line 1913) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1914) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1915) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1916) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1917) | ESRMNT = syscall.Errno(0x54) constant ESTALE (line 1918) | ESTALE = syscall.Errno(0x46) constant ESTRPIPE (line 1919) | ESTRPIPE = syscall.Errno(0x5b) constant ETIME (line 1920) | ETIME = syscall.Errno(0x49) constant ETIMEDOUT (line 1921) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1922) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1923) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1924) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1925) | EUNATCH = syscall.Errno(0x63) constant EUSERS (line 1926) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1927) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1928) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1929) | EXFULL = syscall.Errno(0x68) constant SIGABRT (line 1934) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1935) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1936) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1937) | SIGCHLD = syscall.Signal(0x14) constant SIGCLD (line 1938) | SIGCLD = syscall.Signal(0x14) constant SIGCONT (line 1939) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1940) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1941) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1942) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1943) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1944) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1945) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1946) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1947) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1948) | SIGLOST = syscall.Signal(0x1d) constant SIGPIPE (line 1949) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1950) | SIGPOLL = syscall.Signal(0x17) constant SIGPROF (line 1951) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1952) | SIGPWR = syscall.Signal(0x1d) constant SIGQUIT (line 1953) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1954) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1955) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1956) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1957) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1958) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1959) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1960) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1961) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1962) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1963) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1964) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1965) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1966) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1967) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1968) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x1f constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x20 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x18 constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x23 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OROUTE (line 41) | AF_OROUTE = 0x11 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x22 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ARCNET (line 48) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 49) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 50) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 51) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 52) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 53) | ARPHRD_STRIP = 0x17 constant B0 (line 54) | B0 = 0x0 constant B110 (line 55) | B110 = 0x6e constant B115200 (line 56) | B115200 = 0x1c200 constant B1200 (line 57) | B1200 = 0x4b0 constant B134 (line 58) | B134 = 0x86 constant B14400 (line 59) | B14400 = 0x3840 constant B150 (line 60) | B150 = 0x96 constant B1800 (line 61) | B1800 = 0x708 constant B19200 (line 62) | B19200 = 0x4b00 constant B200 (line 63) | B200 = 0xc8 constant B230400 (line 64) | B230400 = 0x38400 constant B2400 (line 65) | B2400 = 0x960 constant B28800 (line 66) | B28800 = 0x7080 constant B300 (line 67) | B300 = 0x12c constant B38400 (line 68) | B38400 = 0x9600 constant B460800 (line 69) | B460800 = 0x70800 constant B4800 (line 70) | B4800 = 0x12c0 constant B50 (line 71) | B50 = 0x32 constant B57600 (line 72) | B57600 = 0xe100 constant B600 (line 73) | B600 = 0x258 constant B7200 (line 74) | B7200 = 0x1c20 constant B75 (line 75) | B75 = 0x4b constant B76800 (line 76) | B76800 = 0x12c00 constant B921600 (line 77) | B921600 = 0xe1000 constant B9600 (line 78) | B9600 = 0x2580 constant BIOCFEEDBACK (line 79) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 80) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 81) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 82) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 83) | BIOCGDLTLIST = 0xc0084277 constant BIOCGETIF (line 84) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 85) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 86) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 87) | BIOCGRTIMEOUT = 0x400c427b constant BIOCGSEESENT (line 88) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 89) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 90) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 91) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 92) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 93) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 94) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 95) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 96) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 97) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x800c427a constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 101) | BIOCSTCPF = 0x80084272 constant BIOCSUDPF (line 102) | BIOCSUDPF = 0x80084273 constant BIOCVERSION (line 103) | BIOCVERSION = 0x40044271 constant BPF_A (line 104) | BPF_A = 0x10 constant BPF_ABS (line 105) | BPF_ABS = 0x20 constant BPF_ADD (line 106) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 107) | BPF_ALIGNMENT = 0x4 constant BPF_ALIGNMENT32 (line 108) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 109) | BPF_ALU = 0x4 constant BPF_AND (line 110) | BPF_AND = 0x50 constant BPF_B (line 111) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 112) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 113) | BPF_DIV = 0x30 constant BPF_H (line 114) | BPF_H = 0x8 constant BPF_IMM (line 115) | BPF_IMM = 0x0 constant BPF_IND (line 116) | BPF_IND = 0x40 constant BPF_JA (line 117) | BPF_JA = 0x0 constant BPF_JEQ (line 118) | BPF_JEQ = 0x10 constant BPF_JGE (line 119) | BPF_JGE = 0x30 constant BPF_JGT (line 120) | BPF_JGT = 0x20 constant BPF_JMP (line 121) | BPF_JMP = 0x5 constant BPF_JSET (line 122) | BPF_JSET = 0x40 constant BPF_K (line 123) | BPF_K = 0x0 constant BPF_LD (line 124) | BPF_LD = 0x0 constant BPF_LDX (line 125) | BPF_LDX = 0x1 constant BPF_LEN (line 126) | BPF_LEN = 0x80 constant BPF_LSH (line 127) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 128) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 129) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 130) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 131) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 132) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 133) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 134) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 135) | BPF_MISC = 0x7 constant BPF_MSH (line 136) | BPF_MSH = 0xa0 constant BPF_MUL (line 137) | BPF_MUL = 0x20 constant BPF_NEG (line 138) | BPF_NEG = 0x80 constant BPF_OR (line 139) | BPF_OR = 0x40 constant BPF_RELEASE (line 140) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 141) | BPF_RET = 0x6 constant BPF_RSH (line 142) | BPF_RSH = 0x70 constant BPF_ST (line 143) | BPF_ST = 0x2 constant BPF_STX (line 144) | BPF_STX = 0x3 constant BPF_SUB (line 145) | BPF_SUB = 0x10 constant BPF_TAX (line 146) | BPF_TAX = 0x0 constant BPF_TXA (line 147) | BPF_TXA = 0x80 constant BPF_W (line 148) | BPF_W = 0x0 constant BPF_X (line 149) | BPF_X = 0x8 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 153) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 154) | CLONE_FILES = 0x400 constant CLONE_FS (line 155) | CLONE_FS = 0x200 constant CLONE_PID (line 156) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 157) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 158) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 159) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 160) | CLONE_VM = 0x100 constant CREAD (line 161) | CREAD = 0x800 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant CTL_QUERY (line 174) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 175) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 176) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 177) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 178) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 179) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 180) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 181) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 182) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 183) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 184) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 185) | DLT_AURORA = 0x7e constant DLT_AX25 (line 186) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 187) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 188) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 189) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 190) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 191) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 192) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 193) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 194) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 195) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 196) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 199) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 200) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 201) | DLT_EN3MB = 0x2 constant DLT_ENC (line 202) | DLT_ENC = 0x6d constant DLT_ERF (line 203) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 204) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 205) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 206) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 207) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 208) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 209) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 210) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 211) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 212) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 213) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 214) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 215) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 216) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 217) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 218) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 219) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 221) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 222) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 223) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 224) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 225) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 226) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 227) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 228) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 229) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 233) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 234) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 235) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 236) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 237) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 238) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 239) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 240) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 241) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 242) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 243) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 244) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 245) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 246) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 247) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 248) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 249) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 250) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 251) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 252) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 253) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 254) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 255) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 256) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 257) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 258) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 259) | DLT_LAPD = 0xcb constant DLT_LIN (line 260) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 261) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 262) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 263) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 264) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 265) | DLT_LOOP = 0x6c constant DLT_LTALK (line 266) | DLT_LTALK = 0x72 constant DLT_MFR (line 267) | DLT_MFR = 0xb6 constant DLT_MOST (line 268) | DLT_MOST = 0xd3 constant DLT_MPLS (line 269) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 270) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 271) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 272) | DLT_MTP3 = 0x8d constant DLT_NULL (line 273) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 274) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 275) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 276) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 277) | DLT_PPI = 0xc0 constant DLT_PPP (line 278) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 279) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 280) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 281) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 282) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 283) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 284) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 285) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 286) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 287) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 288) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 289) | DLT_RIO = 0x7c constant DLT_SCCP (line 290) | DLT_SCCP = 0x8e constant DLT_SITA (line 291) | DLT_SITA = 0xc4 constant DLT_SLIP (line 292) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 293) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 294) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 295) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 296) | DLT_TZSP = 0x80 constant DLT_USB (line 297) | DLT_USB = 0xba constant DLT_USB_LINUX (line 298) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 299) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 300) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 301) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 302) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 303) | DT_BLK = 0x6 constant DT_CHR (line 304) | DT_CHR = 0x2 constant DT_DIR (line 305) | DT_DIR = 0x4 constant DT_FIFO (line 306) | DT_FIFO = 0x1 constant DT_LNK (line 307) | DT_LNK = 0xa constant DT_REG (line 308) | DT_REG = 0x8 constant DT_SOCK (line 309) | DT_SOCK = 0xc constant DT_UNKNOWN (line 310) | DT_UNKNOWN = 0x0 constant DT_WHT (line 311) | DT_WHT = 0xe constant ECHO (line 312) | ECHO = 0x8 constant ECHOCTL (line 313) | ECHOCTL = 0x40 constant ECHOE (line 314) | ECHOE = 0x2 constant ECHOK (line 315) | ECHOK = 0x4 constant ECHOKE (line 316) | ECHOKE = 0x1 constant ECHONL (line 317) | ECHONL = 0x10 constant ECHOPRT (line 318) | ECHOPRT = 0x20 constant EMUL_LINUX (line 319) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 320) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 321) | EMUL_MAXID = 0x6 constant EN_SW_CTL_INF (line 322) | EN_SW_CTL_INF = 0x1000 constant EN_SW_CTL_PREC (line 323) | EN_SW_CTL_PREC = 0x300 constant EN_SW_CTL_ROUND (line 324) | EN_SW_CTL_ROUND = 0xc00 constant EN_SW_DATACHAIN (line 325) | EN_SW_DATACHAIN = 0x80 constant EN_SW_DENORM (line 326) | EN_SW_DENORM = 0x2 constant EN_SW_INVOP (line 327) | EN_SW_INVOP = 0x1 constant EN_SW_OVERFLOW (line 328) | EN_SW_OVERFLOW = 0x8 constant EN_SW_PRECLOSS (line 329) | EN_SW_PRECLOSS = 0x20 constant EN_SW_UNDERFLOW (line 330) | EN_SW_UNDERFLOW = 0x10 constant EN_SW_ZERODIV (line 331) | EN_SW_ZERODIV = 0x4 constant ETHERCAP_JUMBO_MTU (line 332) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 333) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 334) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 335) | ETHERMIN = 0x2e constant ETHERMTU (line 336) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 337) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 338) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 339) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 340) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 341) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 342) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 343) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 344) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 345) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 346) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 347) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 348) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 349) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 350) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 351) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 352) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 353) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 354) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 355) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 356) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 357) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 358) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 359) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 360) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 361) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 362) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 363) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 364) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 365) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 366) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 367) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 368) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 369) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 370) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 371) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 372) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 373) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 374) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 375) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 376) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 377) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 378) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 379) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 380) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 381) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 382) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 383) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 384) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 385) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 386) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 387) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 388) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 389) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 390) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 391) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 392) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 393) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 394) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 395) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 396) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 397) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 398) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 399) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 400) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 401) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 402) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 403) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 404) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 405) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 406) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 407) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 408) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 409) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 410) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 411) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 412) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 413) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 414) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 415) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 416) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 417) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 418) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 419) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 420) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 421) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 422) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 423) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 424) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 425) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 426) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 427) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 428) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 429) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 430) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 431) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 432) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 433) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 434) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 435) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 436) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 437) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 438) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 439) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 440) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 441) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 442) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 443) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 444) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 445) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 446) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 447) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 448) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 449) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 450) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 451) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 452) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 453) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 454) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 455) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 456) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 457) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 458) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 459) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 460) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 461) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 462) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 463) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 464) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 465) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 466) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 467) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 468) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 469) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 470) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 471) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 472) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 473) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 474) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 475) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 476) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 477) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 478) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 479) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 480) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 481) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 482) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 483) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 484) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 485) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 486) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 487) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 488) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 489) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 490) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 491) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 492) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 493) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 494) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 495) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 496) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 497) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 498) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 499) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 500) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 501) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 502) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 503) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 504) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 505) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 506) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 507) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 508) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 509) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 510) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 511) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 512) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 513) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 514) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 515) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 516) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 517) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 518) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 519) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 520) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 521) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 522) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 523) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 524) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 525) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 526) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 527) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 528) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 529) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 530) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 531) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 532) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 533) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 534) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 535) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 536) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 537) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 538) | EVFILT_WRITE = 0x1 constant EV_ADD (line 539) | EV_ADD = 0x1 constant EV_CLEAR (line 540) | EV_CLEAR = 0x20 constant EV_DELETE (line 541) | EV_DELETE = 0x2 constant EV_DISABLE (line 542) | EV_DISABLE = 0x8 constant EV_ENABLE (line 543) | EV_ENABLE = 0x4 constant EV_EOF (line 544) | EV_EOF = 0x8000 constant EV_ERROR (line 545) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 546) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 547) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 548) | EV_SYSFLAGS = 0xf000 constant EXTA (line 549) | EXTA = 0x4b00 constant EXTB (line 550) | EXTB = 0x9600 constant EXTPROC (line 551) | EXTPROC = 0x800 constant FD_CLOEXEC (line 552) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 553) | FD_SETSIZE = 0x100 constant FLUSHO (line 554) | FLUSHO = 0x800000 constant F_CLOSEM (line 555) | F_CLOSEM = 0xa constant F_DUPFD (line 556) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 557) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 558) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 559) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 560) | F_FSIN = 0x10000000 constant F_FSINOUT (line 561) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 562) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 563) | F_FSPRIV = 0x8000 constant F_FSVOID (line 564) | F_FSVOID = 0x40000000 constant F_GETFD (line 565) | F_GETFD = 0x1 constant F_GETFL (line 566) | F_GETFL = 0x3 constant F_GETLK (line 567) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 568) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 569) | F_GETOWN = 0x5 constant F_MAXFD (line 570) | F_MAXFD = 0xb constant F_OK (line 571) | F_OK = 0x0 constant F_PARAM_MASK (line 572) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 573) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 574) | F_RDLCK = 0x1 constant F_SETFD (line 575) | F_SETFD = 0x2 constant F_SETFL (line 576) | F_SETFL = 0x4 constant F_SETLK (line 577) | F_SETLK = 0x8 constant F_SETLKW (line 578) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 579) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 580) | F_SETOWN = 0x6 constant F_UNLCK (line 581) | F_UNLCK = 0x2 constant F_WRLCK (line 582) | F_WRLCK = 0x3 constant HUPCL (line 583) | HUPCL = 0x4000 constant ICANON (line 584) | ICANON = 0x100 constant ICMP6_FILTER (line 585) | ICMP6_FILTER = 0x12 constant ICRNL (line 586) | ICRNL = 0x100 constant IEXTEN (line 587) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 588) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 589) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 590) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 591) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 592) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 593) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 594) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 595) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 596) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 597) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 598) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 599) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 600) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 601) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 602) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 603) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 604) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 605) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 606) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 607) | IFF_UP = 0x1 constant IFNAMSIZ (line 608) | IFNAMSIZ = 0x10 constant IFT_1822 (line 609) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 610) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 611) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 612) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 613) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 614) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 615) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 616) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 617) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 618) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 619) | IFT_ASYNC = 0x54 constant IFT_ATM (line 620) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 621) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 622) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 623) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 624) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 625) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 626) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 627) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 628) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 629) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 630) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 631) | IFT_BSC = 0x53 constant IFT_CARP (line 632) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 633) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 634) | IFT_CEPT = 0x13 constant IFT_CES (line 635) | IFT_CES = 0x85 constant IFT_CHANNEL (line 636) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 637) | IFT_CNR = 0x55 constant IFT_COFFEE (line 638) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 639) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 640) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 641) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 642) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 643) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 644) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 645) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 646) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 647) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 648) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 649) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 650) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 651) | IFT_DS3 = 0x1e constant IFT_DTM (line 652) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 653) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 654) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 655) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 656) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 657) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 658) | IFT_ECONET = 0xce constant IFT_EON (line 659) | IFT_EON = 0x19 constant IFT_EPLRS (line 660) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 661) | IFT_ESCON = 0x49 constant IFT_ETHER (line 662) | IFT_ETHER = 0x6 constant IFT_FAITH (line 663) | IFT_FAITH = 0xf2 constant IFT_FAST (line 664) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 665) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 666) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 667) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 668) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 669) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 670) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 671) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 672) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 673) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 674) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 675) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 676) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 677) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 678) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 679) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 680) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 681) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 682) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 683) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 684) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 685) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 686) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 687) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 688) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 689) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 690) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 691) | IFT_HSSI = 0x2e constant IFT_HY (line 692) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 693) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 694) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 695) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 696) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 697) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 698) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 699) | IFT_IFGSN = 0x91 constant IFT_IMT (line 700) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 701) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 702) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 703) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 704) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 705) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 706) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 707) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 708) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 709) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 710) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 711) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 712) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 713) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 714) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 715) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 716) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 717) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 718) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 719) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 720) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 721) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 722) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 723) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 724) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 725) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 726) | IFT_LAPB = 0x10 constant IFT_LAPD (line 727) | IFT_LAPD = 0x4d constant IFT_LAPF (line 728) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 729) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 730) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 731) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 732) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 733) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 734) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 735) | IFT_MODEM = 0x30 constant IFT_MPC (line 736) | IFT_MPC = 0x71 constant IFT_MPLS (line 737) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 738) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 739) | IFT_MSDSL = 0x8f constant IFT_MVL (line 740) | IFT_MVL = 0xbf constant IFT_MYRINET (line 741) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 742) | IFT_NFAS = 0xaf constant IFT_NSIP (line 743) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 744) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 745) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 746) | IFT_OTHER = 0x1 constant IFT_P10 (line 747) | IFT_P10 = 0xc constant IFT_P80 (line 748) | IFT_P80 = 0xd constant IFT_PARA (line 749) | IFT_PARA = 0x22 constant IFT_PFLOG (line 750) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 751) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 752) | IFT_PLC = 0xae constant IFT_PON155 (line 753) | IFT_PON155 = 0xcf constant IFT_PON622 (line 754) | IFT_PON622 = 0xd0 constant IFT_POS (line 755) | IFT_POS = 0xab constant IFT_PPP (line 756) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 757) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 758) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 759) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 760) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 761) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 762) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 763) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 764) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 765) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 766) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 767) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 768) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 769) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 770) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 771) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 772) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 773) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 774) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 775) | IFT_RS232 = 0x21 constant IFT_RSRB (line 776) | IFT_RSRB = 0x4f constant IFT_SDLC (line 777) | IFT_SDLC = 0x11 constant IFT_SDSL (line 778) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 779) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 780) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 781) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 782) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 783) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 784) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 785) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 786) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 787) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 788) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 789) | IFT_SONETVT = 0x33 constant IFT_SRP (line 790) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 791) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 792) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 793) | IFT_STARLAN = 0xb constant IFT_STF (line 794) | IFT_STF = 0xd7 constant IFT_T1 (line 795) | IFT_T1 = 0x12 constant IFT_TDLC (line 796) | IFT_TDLC = 0x74 constant IFT_TELINK (line 797) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 798) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 799) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 800) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 801) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 802) | IFT_ULTRA = 0x1d constant IFT_USB (line 803) | IFT_USB = 0xa0 constant IFT_V11 (line 804) | IFT_V11 = 0x40 constant IFT_V35 (line 805) | IFT_V35 = 0x2d constant IFT_V36 (line 806) | IFT_V36 = 0x41 constant IFT_V37 (line 807) | IFT_V37 = 0x78 constant IFT_VDSL (line 808) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 809) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 810) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 811) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 812) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 813) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 814) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 815) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 816) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 817) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 818) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 819) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 820) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 821) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 822) | IFT_X213 = 0x5d constant IFT_X25 (line 823) | IFT_X25 = 0x5 constant IFT_X25DDN (line 824) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 825) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 826) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 827) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 828) | IFT_XETHER = 0x1a constant IGNBRK (line 829) | IGNBRK = 0x1 constant IGNCR (line 830) | IGNCR = 0x80 constant IGNPAR (line 831) | IGNPAR = 0x4 constant IMAXBEL (line 832) | IMAXBEL = 0x2000 constant INLCR (line 833) | INLCR = 0x40 constant INPCK (line 834) | INPCK = 0x10 constant IN_CLASSA_HOST (line 835) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 836) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 837) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 838) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 839) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 840) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 841) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 842) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 843) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 844) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 845) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 846) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 847) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 848) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 849) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 850) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 851) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 852) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 853) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 854) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 855) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 856) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 857) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 858) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 859) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 860) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 861) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 862) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 863) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 864) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 865) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 866) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 867) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 868) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 869) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 870) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 871) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 872) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 873) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 874) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 875) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 876) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 877) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 878) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 879) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 880) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 881) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 882) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 883) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 884) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 885) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 886) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 887) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 888) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 889) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 890) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 891) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 892) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 893) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 894) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 895) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 896) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 897) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 898) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 899) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 900) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 901) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 902) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 903) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 904) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 905) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 906) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 907) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 908) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 909) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 910) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 911) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 912) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 913) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 914) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 915) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 916) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 917) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 918) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 919) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 920) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 921) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 922) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 923) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 924) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 925) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 926) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 927) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 928) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 929) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 930) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 931) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 932) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 933) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 934) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 935) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 936) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 937) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 938) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 939) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 940) | IP_EF = 0x8000 constant IP_ERRORMTU (line 941) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 942) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 943) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 944) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 945) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 946) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 947) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 948) | IP_MINTTL = 0x18 constant IP_MSS (line 949) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 950) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 951) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 952) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 953) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 954) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 955) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 956) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 957) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 958) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 959) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 960) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 961) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 962) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 963) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 964) | IP_RETOPTS = 0x8 constant IP_RF (line 965) | IP_RF = 0x8000 constant IP_TOS (line 966) | IP_TOS = 0x3 constant IP_TTL (line 967) | IP_TTL = 0x4 constant ISIG (line 968) | ISIG = 0x80 constant ISTRIP (line 969) | ISTRIP = 0x20 constant IXANY (line 970) | IXANY = 0x800 constant IXOFF (line 971) | IXOFF = 0x400 constant IXON (line 972) | IXON = 0x200 constant LOCK_EX (line 973) | LOCK_EX = 0x2 constant LOCK_NB (line 974) | LOCK_NB = 0x4 constant LOCK_SH (line 975) | LOCK_SH = 0x1 constant LOCK_UN (line 976) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 977) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 978) | MADV_FREE = 0x6 constant MADV_NORMAL (line 979) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 980) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 981) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 982) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 983) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 984) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 985) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 986) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 987) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 988) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 989) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 990) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 991) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 992) | MAP_ANON = 0x1000 constant MAP_FILE (line 993) | MAP_FILE = 0x0 constant MAP_FIXED (line 994) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 995) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 996) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 997) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 998) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 999) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 1000) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1001) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 1002) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 1003) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1004) | MAP_RENAME = 0x20 constant MAP_SHARED (line 1005) | MAP_SHARED = 0x1 constant MAP_STACK (line 1006) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 1007) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 1008) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 1009) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1010) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 1011) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1012) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1013) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1014) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1015) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1016) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1017) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1018) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1019) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1020) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1021) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1022) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1023) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1024) | MSG_OOB = 0x1 constant MSG_PEEK (line 1025) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1026) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1027) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1028) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1029) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1030) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1031) | MS_SYNC = 0x4 constant NAME_MAX (line 1032) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1033) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1034) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1035) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1036) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1037) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1038) | NET_RT_OOIFLIST = 0x3 constant NOFLSH (line 1039) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1040) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1041) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1042) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1043) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1044) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1045) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1046) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1047) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1048) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1049) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1050) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1051) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1052) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1053) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1054) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1055) | NOTE_WRITE = 0x2 constant OCRNL (line 1056) | OCRNL = 0x10 constant OFIOGETBMAP (line 1057) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1058) | ONLCR = 0x2 constant ONLRET (line 1059) | ONLRET = 0x40 constant ONOCR (line 1060) | ONOCR = 0x20 constant ONOEOT (line 1061) | ONOEOT = 0x8 constant OPOST (line 1062) | OPOST = 0x1 constant O_ACCMODE (line 1063) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1064) | O_ALT_IO = 0x40000 constant O_APPEND (line 1065) | O_APPEND = 0x8 constant O_ASYNC (line 1066) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1067) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1068) | O_CREAT = 0x200 constant O_DIRECT (line 1069) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1070) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1071) | O_DSYNC = 0x10000 constant O_EXCL (line 1072) | O_EXCL = 0x800 constant O_EXLOCK (line 1073) | O_EXLOCK = 0x20 constant O_FSYNC (line 1074) | O_FSYNC = 0x80 constant O_NDELAY (line 1075) | O_NDELAY = 0x4 constant O_NOCTTY (line 1076) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1077) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1078) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1079) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1080) | O_RDONLY = 0x0 constant O_RDWR (line 1081) | O_RDWR = 0x2 constant O_RSYNC (line 1082) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1083) | O_SHLOCK = 0x10 constant O_SYNC (line 1084) | O_SYNC = 0x80 constant O_TRUNC (line 1085) | O_TRUNC = 0x400 constant O_WRONLY (line 1086) | O_WRONLY = 0x1 constant PARENB (line 1087) | PARENB = 0x1000 constant PARMRK (line 1088) | PARMRK = 0x8 constant PARODD (line 1089) | PARODD = 0x2000 constant PENDIN (line 1090) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1091) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1092) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1093) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1094) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1095) | PROT_EXEC = 0x4 constant PROT_NONE (line 1096) | PROT_NONE = 0x0 constant PROT_READ (line 1097) | PROT_READ = 0x1 constant PROT_WRITE (line 1098) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1099) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1100) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1101) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1102) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1103) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1104) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1105) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1106) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1107) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1108) | RTAX_BRD = 0x7 constant RTAX_DST (line 1109) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1110) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1111) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1112) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1113) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1114) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1115) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1116) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1117) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1118) | RTA_BRD = 0x80 constant RTA_DST (line 1119) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1120) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1121) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1122) | RTA_IFA = 0x20 constant RTA_IFP (line 1123) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1124) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1125) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1126) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1127) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1128) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1129) | RTF_CLONING = 0x100 constant RTF_DONE (line 1130) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1131) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1132) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1133) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1134) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1135) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1136) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1137) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1138) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1139) | RTF_REJECT = 0x8 constant RTF_SRC (line 1140) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1141) | RTF_STATIC = 0x800 constant RTF_UP (line 1142) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1143) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1144) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1145) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1146) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1147) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1148) | RTM_DELETE = 0x2 constant RTM_GET (line 1149) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1150) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1151) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1152) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1153) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1154) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1155) | RTM_LOSING = 0x5 constant RTM_MISS (line 1156) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1157) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1158) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1159) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1160) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1161) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1162) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1163) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1164) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1165) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1166) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1167) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1168) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1169) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1170) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1171) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1172) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1173) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1174) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1175) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1176) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1177) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1178) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1179) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1180) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1181) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1182) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1183) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1184) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1185) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1186) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1187) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1188) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1189) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1190) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1191) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1192) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1193) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETPFSYNC (line 1194) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1195) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1196) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGHIWAT (line 1197) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1198) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1199) | SIOCGIFADDRPREF = 0xc0946920 constant SIOCGIFALIAS (line 1200) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1201) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1202) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1203) | SIOCGIFCONF = 0xc0086926 constant SIOCGIFDATA (line 1204) | SIOCGIFDATA = 0xc0946985 constant SIOCGIFDLT (line 1205) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1206) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1207) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1208) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1209) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1210) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1211) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1212) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1213) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1214) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1215) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1216) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1217) | SIOCGLINKSTR = 0xc01c6987 constant SIOCGLOWAT (line 1218) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1219) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1220) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1221) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1222) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1223) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCINITIFADDR (line 1224) | SIOCINITIFADDR = 0xc0446984 constant SIOCSDRVSPEC (line 1225) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETPFSYNC (line 1226) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1227) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1228) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1229) | SIOCSIFADDRPREF = 0x8094691f constant SIOCSIFBRDADDR (line 1230) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1231) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1232) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1233) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1234) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1235) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1236) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1237) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1238) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1239) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1240) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1241) | SIOCSLINKSTR = 0x801c6988 constant SIOCSLOWAT (line 1242) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1243) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1244) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1245) | SIOCZIFDATA = 0xc0946986 constant SOCK_CLOEXEC (line 1246) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1247) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1248) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1249) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1250) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1251) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1252) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1253) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1254) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1255) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1256) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1257) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1258) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1259) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1260) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1261) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1262) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1263) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1264) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1265) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1266) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1267) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1268) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1269) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1270) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1271) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1272) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1273) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1274) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1275) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1276) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1277) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1278) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1279) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1280) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1281) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1282) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1283) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1284) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1285) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1286) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1287) | S_IEXEC = 0x40 constant S_IFBLK (line 1288) | S_IFBLK = 0x6000 constant S_IFCHR (line 1289) | S_IFCHR = 0x2000 constant S_IFDIR (line 1290) | S_IFDIR = 0x4000 constant S_IFIFO (line 1291) | S_IFIFO = 0x1000 constant S_IFLNK (line 1292) | S_IFLNK = 0xa000 constant S_IFMT (line 1293) | S_IFMT = 0xf000 constant S_IFREG (line 1294) | S_IFREG = 0x8000 constant S_IFSOCK (line 1295) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1296) | S_IFWHT = 0xe000 constant S_IREAD (line 1297) | S_IREAD = 0x100 constant S_IRGRP (line 1298) | S_IRGRP = 0x20 constant S_IROTH (line 1299) | S_IROTH = 0x4 constant S_IRUSR (line 1300) | S_IRUSR = 0x100 constant S_IRWXG (line 1301) | S_IRWXG = 0x38 constant S_IRWXO (line 1302) | S_IRWXO = 0x7 constant S_IRWXU (line 1303) | S_IRWXU = 0x1c0 constant S_ISGID (line 1304) | S_ISGID = 0x400 constant S_ISTXT (line 1305) | S_ISTXT = 0x200 constant S_ISUID (line 1306) | S_ISUID = 0x800 constant S_ISVTX (line 1307) | S_ISVTX = 0x200 constant S_IWGRP (line 1308) | S_IWGRP = 0x10 constant S_IWOTH (line 1309) | S_IWOTH = 0x2 constant S_IWRITE (line 1310) | S_IWRITE = 0x80 constant S_IWUSR (line 1311) | S_IWUSR = 0x80 constant S_IXGRP (line 1312) | S_IXGRP = 0x8 constant S_IXOTH (line 1313) | S_IXOTH = 0x1 constant S_IXUSR (line 1314) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1315) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1316) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1317) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1318) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1319) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1320) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1321) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1322) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1323) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1324) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1325) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1326) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1327) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1328) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1329) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1330) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1331) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1332) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1333) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1334) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1335) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1336) | TIOCDCDTIMESTAMP = 0x400c7458 constant TIOCDRAIN (line 1337) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1338) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1339) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1340) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1341) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1342) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1343) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1344) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1345) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1346) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1347) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1348) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1349) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1350) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1351) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1352) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1353) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1354) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1355) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1356) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1357) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1358) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1359) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1360) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1361) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1362) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1363) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1364) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1365) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1366) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1367) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1368) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1369) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1370) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1371) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1372) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1373) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1374) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1375) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1376) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1377) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1378) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1379) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1380) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1381) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1382) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1383) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1384) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1385) | TIOCRCVFRAME = 0x80047445 constant TIOCREMOTE (line 1386) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1387) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1388) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1389) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1390) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1391) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1392) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1393) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1394) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1395) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1396) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1397) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1398) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1399) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1400) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1401) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1402) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1403) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1404) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1405) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1406) | TIOCXMTFRAME = 0x80047444 constant TOSTOP (line 1407) | TOSTOP = 0x400000 constant VDISCARD (line 1408) | VDISCARD = 0xf constant VDSUSP (line 1409) | VDSUSP = 0xb constant VEOF (line 1410) | VEOF = 0x0 constant VEOL (line 1411) | VEOL = 0x1 constant VEOL2 (line 1412) | VEOL2 = 0x2 constant VERASE (line 1413) | VERASE = 0x3 constant VINTR (line 1414) | VINTR = 0x8 constant VKILL (line 1415) | VKILL = 0x5 constant VLNEXT (line 1416) | VLNEXT = 0xe constant VMIN (line 1417) | VMIN = 0x10 constant VQUIT (line 1418) | VQUIT = 0x9 constant VREPRINT (line 1419) | VREPRINT = 0x6 constant VSTART (line 1420) | VSTART = 0xc constant VSTATUS (line 1421) | VSTATUS = 0x12 constant VSTOP (line 1422) | VSTOP = 0xd constant VSUSP (line 1423) | VSUSP = 0xa constant VTIME (line 1424) | VTIME = 0x11 constant VWERASE (line 1425) | VWERASE = 0x4 constant WALL (line 1426) | WALL = 0x8 constant WALLSIG (line 1427) | WALLSIG = 0x8 constant WALTSIG (line 1428) | WALTSIG = 0x4 constant WCLONE (line 1429) | WCLONE = 0x4 constant WCOREFLAG (line 1430) | WCOREFLAG = 0x80 constant WNOHANG (line 1431) | WNOHANG = 0x1 constant WNOWAIT (line 1432) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1433) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1434) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1435) | WSTOPPED = 0x7f constant WUNTRACED (line 1436) | WUNTRACED = 0x2 constant E2BIG (line 1441) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1442) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1443) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1444) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1445) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1446) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1447) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1448) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1449) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1450) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1451) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1452) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1453) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1454) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1455) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1456) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1457) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1458) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1459) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1460) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1461) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1462) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1463) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1464) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1465) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1466) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1467) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1468) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1469) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1470) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1471) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1472) | EINVAL = syscall.Errno(0x16) constant EIO (line 1473) | EIO = syscall.Errno(0x5) constant EISCONN (line 1474) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1475) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1476) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1477) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1478) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1479) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1480) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1481) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1482) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1483) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1484) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1485) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1486) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1487) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1488) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1489) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1490) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1491) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1492) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1493) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1494) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1495) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1496) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1497) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1498) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1499) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1500) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1501) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1502) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1503) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1504) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1505) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1506) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1507) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1508) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1509) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1510) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1511) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1512) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1513) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1514) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1515) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1516) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1517) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1518) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1519) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1520) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1521) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1522) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1523) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1524) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1525) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1526) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1527) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1528) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1529) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1530) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1531) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1532) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1533) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1534) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1535) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1536) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1537) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1538) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1543) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1544) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1545) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1546) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1547) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1548) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1549) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1550) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1551) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1552) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1553) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1554) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1555) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1556) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1557) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1558) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1559) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1560) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1561) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1562) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1563) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1564) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1565) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1566) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1567) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1568) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1569) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1570) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1571) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1572) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1573) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1574) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1575) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x1f constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x20 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x18 constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x23 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OROUTE (line 41) | AF_OROUTE = 0x11 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x22 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ARCNET (line 48) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 49) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 50) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 51) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 52) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 53) | ARPHRD_STRIP = 0x17 constant B0 (line 54) | B0 = 0x0 constant B110 (line 55) | B110 = 0x6e constant B115200 (line 56) | B115200 = 0x1c200 constant B1200 (line 57) | B1200 = 0x4b0 constant B134 (line 58) | B134 = 0x86 constant B14400 (line 59) | B14400 = 0x3840 constant B150 (line 60) | B150 = 0x96 constant B1800 (line 61) | B1800 = 0x708 constant B19200 (line 62) | B19200 = 0x4b00 constant B200 (line 63) | B200 = 0xc8 constant B230400 (line 64) | B230400 = 0x38400 constant B2400 (line 65) | B2400 = 0x960 constant B28800 (line 66) | B28800 = 0x7080 constant B300 (line 67) | B300 = 0x12c constant B38400 (line 68) | B38400 = 0x9600 constant B460800 (line 69) | B460800 = 0x70800 constant B4800 (line 70) | B4800 = 0x12c0 constant B50 (line 71) | B50 = 0x32 constant B57600 (line 72) | B57600 = 0xe100 constant B600 (line 73) | B600 = 0x258 constant B7200 (line 74) | B7200 = 0x1c20 constant B75 (line 75) | B75 = 0x4b constant B76800 (line 76) | B76800 = 0x12c00 constant B921600 (line 77) | B921600 = 0xe1000 constant B9600 (line 78) | B9600 = 0x2580 constant BIOCFEEDBACK (line 79) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 80) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 81) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 82) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 83) | BIOCGDLTLIST = 0xc0104277 constant BIOCGETIF (line 84) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 85) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 86) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 87) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGSEESENT (line 88) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 89) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 90) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 91) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 92) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 93) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 94) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 95) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 96) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 97) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x8010427a constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 101) | BIOCSTCPF = 0x80104272 constant BIOCSUDPF (line 102) | BIOCSUDPF = 0x80104273 constant BIOCVERSION (line 103) | BIOCVERSION = 0x40044271 constant BPF_A (line 104) | BPF_A = 0x10 constant BPF_ABS (line 105) | BPF_ABS = 0x20 constant BPF_ADD (line 106) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 107) | BPF_ALIGNMENT = 0x8 constant BPF_ALIGNMENT32 (line 108) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 109) | BPF_ALU = 0x4 constant BPF_AND (line 110) | BPF_AND = 0x50 constant BPF_B (line 111) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 112) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 113) | BPF_DIV = 0x30 constant BPF_H (line 114) | BPF_H = 0x8 constant BPF_IMM (line 115) | BPF_IMM = 0x0 constant BPF_IND (line 116) | BPF_IND = 0x40 constant BPF_JA (line 117) | BPF_JA = 0x0 constant BPF_JEQ (line 118) | BPF_JEQ = 0x10 constant BPF_JGE (line 119) | BPF_JGE = 0x30 constant BPF_JGT (line 120) | BPF_JGT = 0x20 constant BPF_JMP (line 121) | BPF_JMP = 0x5 constant BPF_JSET (line 122) | BPF_JSET = 0x40 constant BPF_K (line 123) | BPF_K = 0x0 constant BPF_LD (line 124) | BPF_LD = 0x0 constant BPF_LDX (line 125) | BPF_LDX = 0x1 constant BPF_LEN (line 126) | BPF_LEN = 0x80 constant BPF_LSH (line 127) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 128) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 129) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 130) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 131) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 132) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 133) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 134) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 135) | BPF_MISC = 0x7 constant BPF_MSH (line 136) | BPF_MSH = 0xa0 constant BPF_MUL (line 137) | BPF_MUL = 0x20 constant BPF_NEG (line 138) | BPF_NEG = 0x80 constant BPF_OR (line 139) | BPF_OR = 0x40 constant BPF_RELEASE (line 140) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 141) | BPF_RET = 0x6 constant BPF_RSH (line 142) | BPF_RSH = 0x70 constant BPF_ST (line 143) | BPF_ST = 0x2 constant BPF_STX (line 144) | BPF_STX = 0x3 constant BPF_SUB (line 145) | BPF_SUB = 0x10 constant BPF_TAX (line 146) | BPF_TAX = 0x0 constant BPF_TXA (line 147) | BPF_TXA = 0x80 constant BPF_W (line 148) | BPF_W = 0x0 constant BPF_X (line 149) | BPF_X = 0x8 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 153) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 154) | CLONE_FILES = 0x400 constant CLONE_FS (line 155) | CLONE_FS = 0x200 constant CLONE_PID (line 156) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 157) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 158) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 159) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 160) | CLONE_VM = 0x100 constant CREAD (line 161) | CREAD = 0x800 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant CTL_QUERY (line 174) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 175) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 176) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 177) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 178) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 179) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 180) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 181) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 182) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 183) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 184) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 185) | DLT_AURORA = 0x7e constant DLT_AX25 (line 186) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 187) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 188) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 189) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 190) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 191) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 192) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 193) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 194) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 195) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 196) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 199) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 200) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 201) | DLT_EN3MB = 0x2 constant DLT_ENC (line 202) | DLT_ENC = 0x6d constant DLT_ERF (line 203) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 204) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 205) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 206) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 207) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 208) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 209) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 210) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 211) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 212) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 213) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 214) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 215) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 216) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 217) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 218) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 219) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 221) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 222) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 223) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 224) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 225) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 226) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 227) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 228) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 229) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 233) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 234) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 235) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 236) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 237) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 238) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 239) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 240) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 241) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 242) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 243) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 244) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 245) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 246) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 247) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 248) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 249) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 250) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 251) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 252) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 253) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 254) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 255) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 256) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 257) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 258) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 259) | DLT_LAPD = 0xcb constant DLT_LIN (line 260) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 261) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 262) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 263) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 264) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 265) | DLT_LOOP = 0x6c constant DLT_LTALK (line 266) | DLT_LTALK = 0x72 constant DLT_MFR (line 267) | DLT_MFR = 0xb6 constant DLT_MOST (line 268) | DLT_MOST = 0xd3 constant DLT_MPLS (line 269) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 270) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 271) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 272) | DLT_MTP3 = 0x8d constant DLT_NULL (line 273) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 274) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 275) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 276) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 277) | DLT_PPI = 0xc0 constant DLT_PPP (line 278) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 279) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 280) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 281) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 282) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 283) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 284) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 285) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 286) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 287) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 288) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 289) | DLT_RIO = 0x7c constant DLT_SCCP (line 290) | DLT_SCCP = 0x8e constant DLT_SITA (line 291) | DLT_SITA = 0xc4 constant DLT_SLIP (line 292) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 293) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 294) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 295) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 296) | DLT_TZSP = 0x80 constant DLT_USB (line 297) | DLT_USB = 0xba constant DLT_USB_LINUX (line 298) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 299) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 300) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 301) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 302) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 303) | DT_BLK = 0x6 constant DT_CHR (line 304) | DT_CHR = 0x2 constant DT_DIR (line 305) | DT_DIR = 0x4 constant DT_FIFO (line 306) | DT_FIFO = 0x1 constant DT_LNK (line 307) | DT_LNK = 0xa constant DT_REG (line 308) | DT_REG = 0x8 constant DT_SOCK (line 309) | DT_SOCK = 0xc constant DT_UNKNOWN (line 310) | DT_UNKNOWN = 0x0 constant DT_WHT (line 311) | DT_WHT = 0xe constant ECHO (line 312) | ECHO = 0x8 constant ECHOCTL (line 313) | ECHOCTL = 0x40 constant ECHOE (line 314) | ECHOE = 0x2 constant ECHOK (line 315) | ECHOK = 0x4 constant ECHOKE (line 316) | ECHOKE = 0x1 constant ECHONL (line 317) | ECHONL = 0x10 constant ECHOPRT (line 318) | ECHOPRT = 0x20 constant EMUL_LINUX (line 319) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 320) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 321) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 322) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 323) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 324) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 325) | ETHERMIN = 0x2e constant ETHERMTU (line 326) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 327) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 328) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 329) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 330) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 331) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 332) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 333) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 334) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 335) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 336) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 337) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 338) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 339) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 340) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 341) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 342) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 343) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 344) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 345) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 346) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 347) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 348) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 349) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 350) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 351) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 352) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 353) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 354) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 355) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 356) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 357) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 358) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 359) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 360) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 361) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 362) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 363) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 364) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 365) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 366) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 367) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 368) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 369) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 370) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 371) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 372) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 373) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 374) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 375) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 376) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 377) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 378) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 379) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 380) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 381) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 382) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 383) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 384) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 385) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 386) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 387) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 388) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 389) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 390) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 391) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 392) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 393) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 394) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 395) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 396) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 397) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 398) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 399) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 400) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 401) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 402) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 403) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 404) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 405) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 406) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 407) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 408) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 409) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 410) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 411) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 412) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 413) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 414) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 415) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 416) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 417) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 418) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 419) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 420) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 421) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 422) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 423) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 424) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 425) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 426) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 427) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 428) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 429) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 430) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 431) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 432) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 433) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 434) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 435) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 436) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 437) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 438) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 439) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 440) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 441) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 442) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 443) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 444) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 445) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 446) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 447) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 448) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 449) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 450) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 451) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 452) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 453) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 454) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 455) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 456) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 457) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 458) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 459) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 460) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 461) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 462) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 463) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 464) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 465) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 466) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 467) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 468) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 469) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 470) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 471) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 472) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 473) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 474) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 475) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 476) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 477) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 478) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 479) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 480) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 481) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 482) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 483) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 484) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 485) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 486) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 487) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 488) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 489) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 490) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 491) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 492) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 493) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 494) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 495) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 496) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 497) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 498) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 499) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 500) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 501) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 502) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 503) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 504) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 505) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 506) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 507) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 508) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 509) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 510) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 511) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 512) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 513) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 514) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 515) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 516) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 517) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 518) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 519) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 520) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 521) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 522) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 523) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 524) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 525) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 526) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 527) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 528) | EVFILT_WRITE = 0x1 constant EV_ADD (line 529) | EV_ADD = 0x1 constant EV_CLEAR (line 530) | EV_CLEAR = 0x20 constant EV_DELETE (line 531) | EV_DELETE = 0x2 constant EV_DISABLE (line 532) | EV_DISABLE = 0x8 constant EV_ENABLE (line 533) | EV_ENABLE = 0x4 constant EV_EOF (line 534) | EV_EOF = 0x8000 constant EV_ERROR (line 535) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 536) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 537) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 538) | EV_SYSFLAGS = 0xf000 constant EXTA (line 539) | EXTA = 0x4b00 constant EXTB (line 540) | EXTB = 0x9600 constant EXTPROC (line 541) | EXTPROC = 0x800 constant FD_CLOEXEC (line 542) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 543) | FD_SETSIZE = 0x100 constant FLUSHO (line 544) | FLUSHO = 0x800000 constant F_CLOSEM (line 545) | F_CLOSEM = 0xa constant F_DUPFD (line 546) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 547) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 548) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 549) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 550) | F_FSIN = 0x10000000 constant F_FSINOUT (line 551) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 552) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 553) | F_FSPRIV = 0x8000 constant F_FSVOID (line 554) | F_FSVOID = 0x40000000 constant F_GETFD (line 555) | F_GETFD = 0x1 constant F_GETFL (line 556) | F_GETFL = 0x3 constant F_GETLK (line 557) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 558) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 559) | F_GETOWN = 0x5 constant F_MAXFD (line 560) | F_MAXFD = 0xb constant F_OK (line 561) | F_OK = 0x0 constant F_PARAM_MASK (line 562) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 563) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 564) | F_RDLCK = 0x1 constant F_SETFD (line 565) | F_SETFD = 0x2 constant F_SETFL (line 566) | F_SETFL = 0x4 constant F_SETLK (line 567) | F_SETLK = 0x8 constant F_SETLKW (line 568) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 569) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 570) | F_SETOWN = 0x6 constant F_UNLCK (line 571) | F_UNLCK = 0x2 constant F_WRLCK (line 572) | F_WRLCK = 0x3 constant HUPCL (line 573) | HUPCL = 0x4000 constant ICANON (line 574) | ICANON = 0x100 constant ICMP6_FILTER (line 575) | ICMP6_FILTER = 0x12 constant ICRNL (line 576) | ICRNL = 0x100 constant IEXTEN (line 577) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 578) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 579) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 580) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 581) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 582) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 583) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 584) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 585) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 586) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 587) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 588) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 589) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 590) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 591) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 592) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 593) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 594) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 595) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 596) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 597) | IFF_UP = 0x1 constant IFNAMSIZ (line 598) | IFNAMSIZ = 0x10 constant IFT_1822 (line 599) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 600) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 601) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 602) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 603) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 604) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 605) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 606) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 607) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 608) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 609) | IFT_ASYNC = 0x54 constant IFT_ATM (line 610) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 611) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 612) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 613) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 614) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 615) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 616) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 617) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 618) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 619) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 620) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 621) | IFT_BSC = 0x53 constant IFT_CARP (line 622) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 623) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 624) | IFT_CEPT = 0x13 constant IFT_CES (line 625) | IFT_CES = 0x85 constant IFT_CHANNEL (line 626) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 627) | IFT_CNR = 0x55 constant IFT_COFFEE (line 628) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 629) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 630) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 631) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 632) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 633) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 634) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 635) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 636) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 637) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 638) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 639) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 640) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 641) | IFT_DS3 = 0x1e constant IFT_DTM (line 642) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 643) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 644) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 645) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 646) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 647) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 648) | IFT_ECONET = 0xce constant IFT_EON (line 649) | IFT_EON = 0x19 constant IFT_EPLRS (line 650) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 651) | IFT_ESCON = 0x49 constant IFT_ETHER (line 652) | IFT_ETHER = 0x6 constant IFT_FAITH (line 653) | IFT_FAITH = 0xf2 constant IFT_FAST (line 654) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 655) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 656) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 657) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 658) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 659) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 660) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 661) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 662) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 663) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 664) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 665) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 666) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 667) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 668) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 669) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 670) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 671) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 672) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 673) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 674) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 675) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 676) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 677) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 678) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 679) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 680) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 681) | IFT_HSSI = 0x2e constant IFT_HY (line 682) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 683) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 684) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 685) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 686) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 687) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 688) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 689) | IFT_IFGSN = 0x91 constant IFT_IMT (line 690) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 691) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 692) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 693) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 694) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 695) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 696) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 697) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 698) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 699) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 700) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 701) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 702) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 703) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 704) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 705) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 706) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 707) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 708) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 709) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 710) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 711) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 712) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 713) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 714) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 715) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 716) | IFT_LAPB = 0x10 constant IFT_LAPD (line 717) | IFT_LAPD = 0x4d constant IFT_LAPF (line 718) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 719) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 720) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 721) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 722) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 723) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 724) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 725) | IFT_MODEM = 0x30 constant IFT_MPC (line 726) | IFT_MPC = 0x71 constant IFT_MPLS (line 727) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 728) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 729) | IFT_MSDSL = 0x8f constant IFT_MVL (line 730) | IFT_MVL = 0xbf constant IFT_MYRINET (line 731) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 732) | IFT_NFAS = 0xaf constant IFT_NSIP (line 733) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 734) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 735) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 736) | IFT_OTHER = 0x1 constant IFT_P10 (line 737) | IFT_P10 = 0xc constant IFT_P80 (line 738) | IFT_P80 = 0xd constant IFT_PARA (line 739) | IFT_PARA = 0x22 constant IFT_PFLOG (line 740) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 741) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 742) | IFT_PLC = 0xae constant IFT_PON155 (line 743) | IFT_PON155 = 0xcf constant IFT_PON622 (line 744) | IFT_PON622 = 0xd0 constant IFT_POS (line 745) | IFT_POS = 0xab constant IFT_PPP (line 746) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 747) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 748) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 749) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 750) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 751) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 752) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 753) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 754) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 755) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 756) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 757) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 758) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 759) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 760) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 761) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 762) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 763) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 764) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 765) | IFT_RS232 = 0x21 constant IFT_RSRB (line 766) | IFT_RSRB = 0x4f constant IFT_SDLC (line 767) | IFT_SDLC = 0x11 constant IFT_SDSL (line 768) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 769) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 770) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 771) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 772) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 773) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 774) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 775) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 776) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 777) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 778) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 779) | IFT_SONETVT = 0x33 constant IFT_SRP (line 780) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 781) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 782) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 783) | IFT_STARLAN = 0xb constant IFT_STF (line 784) | IFT_STF = 0xd7 constant IFT_T1 (line 785) | IFT_T1 = 0x12 constant IFT_TDLC (line 786) | IFT_TDLC = 0x74 constant IFT_TELINK (line 787) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 788) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 789) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 790) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 791) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 792) | IFT_ULTRA = 0x1d constant IFT_USB (line 793) | IFT_USB = 0xa0 constant IFT_V11 (line 794) | IFT_V11 = 0x40 constant IFT_V35 (line 795) | IFT_V35 = 0x2d constant IFT_V36 (line 796) | IFT_V36 = 0x41 constant IFT_V37 (line 797) | IFT_V37 = 0x78 constant IFT_VDSL (line 798) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 799) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 800) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 801) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 802) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 803) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 804) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 805) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 806) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 807) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 808) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 809) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 810) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 811) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 812) | IFT_X213 = 0x5d constant IFT_X25 (line 813) | IFT_X25 = 0x5 constant IFT_X25DDN (line 814) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 815) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 816) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 817) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 818) | IFT_XETHER = 0x1a constant IGNBRK (line 819) | IGNBRK = 0x1 constant IGNCR (line 820) | IGNCR = 0x80 constant IGNPAR (line 821) | IGNPAR = 0x4 constant IMAXBEL (line 822) | IMAXBEL = 0x2000 constant INLCR (line 823) | INLCR = 0x40 constant INPCK (line 824) | INPCK = 0x10 constant IN_CLASSA_HOST (line 825) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 826) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 827) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 828) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 829) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 830) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 831) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 832) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 833) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 834) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 835) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 836) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 837) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 838) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 839) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 840) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 841) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 842) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 843) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 844) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 845) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 846) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 847) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 848) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 849) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 850) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 851) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 852) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 853) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 854) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 855) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 856) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 857) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 858) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 859) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 860) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 861) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 862) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 863) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 864) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 865) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 866) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 867) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 868) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 869) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 870) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 871) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 872) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 873) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 874) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 875) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 876) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 877) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 878) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 879) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 880) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 881) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 882) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 883) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 884) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 885) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 886) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 887) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 888) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 889) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 890) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 891) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 892) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 893) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 894) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 895) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 896) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 897) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 898) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 899) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 900) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 901) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 902) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 903) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 904) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 905) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 906) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 907) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 908) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 909) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 910) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 911) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 912) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 913) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 914) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 915) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 916) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 917) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 918) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 919) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 920) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 921) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 922) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 923) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 924) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 925) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 926) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 927) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 928) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 929) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 930) | IP_EF = 0x8000 constant IP_ERRORMTU (line 931) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 932) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 933) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 934) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 935) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 936) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 937) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 938) | IP_MINTTL = 0x18 constant IP_MSS (line 939) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 940) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 941) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 942) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 943) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 944) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 945) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 946) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 947) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 948) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 949) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 950) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 951) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 952) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 953) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 954) | IP_RETOPTS = 0x8 constant IP_RF (line 955) | IP_RF = 0x8000 constant IP_TOS (line 956) | IP_TOS = 0x3 constant IP_TTL (line 957) | IP_TTL = 0x4 constant ISIG (line 958) | ISIG = 0x80 constant ISTRIP (line 959) | ISTRIP = 0x20 constant IXANY (line 960) | IXANY = 0x800 constant IXOFF (line 961) | IXOFF = 0x400 constant IXON (line 962) | IXON = 0x200 constant LOCK_EX (line 963) | LOCK_EX = 0x2 constant LOCK_NB (line 964) | LOCK_NB = 0x4 constant LOCK_SH (line 965) | LOCK_SH = 0x1 constant LOCK_UN (line 966) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 967) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 968) | MADV_FREE = 0x6 constant MADV_NORMAL (line 969) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 970) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 971) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 972) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 973) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 974) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 975) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 976) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 977) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 978) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 979) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 980) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 981) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 982) | MAP_ANON = 0x1000 constant MAP_FILE (line 983) | MAP_FILE = 0x0 constant MAP_FIXED (line 984) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 985) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 986) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 987) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 988) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 989) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 990) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 991) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 992) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 993) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 994) | MAP_RENAME = 0x20 constant MAP_SHARED (line 995) | MAP_SHARED = 0x1 constant MAP_STACK (line 996) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 997) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 998) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 999) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1000) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 1001) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1002) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1003) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1004) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1005) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1006) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1007) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1008) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1009) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1010) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1011) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1012) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1013) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1014) | MSG_OOB = 0x1 constant MSG_PEEK (line 1015) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1016) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1017) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1018) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1019) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1020) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1021) | MS_SYNC = 0x4 constant NAME_MAX (line 1022) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1023) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1024) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1025) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1026) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1027) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1028) | NET_RT_OOIFLIST = 0x3 constant NOFLSH (line 1029) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1030) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1031) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1032) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1033) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1034) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1035) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1036) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1037) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1038) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1039) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1040) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1041) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1042) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1043) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1044) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1045) | NOTE_WRITE = 0x2 constant OCRNL (line 1046) | OCRNL = 0x10 constant OFIOGETBMAP (line 1047) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1048) | ONLCR = 0x2 constant ONLRET (line 1049) | ONLRET = 0x40 constant ONOCR (line 1050) | ONOCR = 0x20 constant ONOEOT (line 1051) | ONOEOT = 0x8 constant OPOST (line 1052) | OPOST = 0x1 constant O_ACCMODE (line 1053) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1054) | O_ALT_IO = 0x40000 constant O_APPEND (line 1055) | O_APPEND = 0x8 constant O_ASYNC (line 1056) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1057) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1058) | O_CREAT = 0x200 constant O_DIRECT (line 1059) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1060) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1061) | O_DSYNC = 0x10000 constant O_EXCL (line 1062) | O_EXCL = 0x800 constant O_EXLOCK (line 1063) | O_EXLOCK = 0x20 constant O_FSYNC (line 1064) | O_FSYNC = 0x80 constant O_NDELAY (line 1065) | O_NDELAY = 0x4 constant O_NOCTTY (line 1066) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1067) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1068) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1069) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1070) | O_RDONLY = 0x0 constant O_RDWR (line 1071) | O_RDWR = 0x2 constant O_RSYNC (line 1072) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1073) | O_SHLOCK = 0x10 constant O_SYNC (line 1074) | O_SYNC = 0x80 constant O_TRUNC (line 1075) | O_TRUNC = 0x400 constant O_WRONLY (line 1076) | O_WRONLY = 0x1 constant PARENB (line 1077) | PARENB = 0x1000 constant PARMRK (line 1078) | PARMRK = 0x8 constant PARODD (line 1079) | PARODD = 0x2000 constant PENDIN (line 1080) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1081) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1082) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1083) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1084) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_NONE (line 1086) | PROT_NONE = 0x0 constant PROT_READ (line 1087) | PROT_READ = 0x1 constant PROT_WRITE (line 1088) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1089) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1090) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1091) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1092) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1093) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1094) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1095) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1096) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1097) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1098) | RTAX_BRD = 0x7 constant RTAX_DST (line 1099) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1100) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1101) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1102) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1103) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1104) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1105) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1106) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1107) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1108) | RTA_BRD = 0x80 constant RTA_DST (line 1109) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1110) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1111) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1112) | RTA_IFA = 0x20 constant RTA_IFP (line 1113) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1114) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1115) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1116) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1117) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1118) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1119) | RTF_CLONING = 0x100 constant RTF_DONE (line 1120) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1121) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1122) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1123) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1124) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1125) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1126) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1127) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1128) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1129) | RTF_REJECT = 0x8 constant RTF_SRC (line 1130) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1131) | RTF_STATIC = 0x800 constant RTF_UP (line 1132) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1133) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1134) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1135) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1136) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1137) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1138) | RTM_DELETE = 0x2 constant RTM_GET (line 1139) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1140) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1141) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1142) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1143) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1144) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1145) | RTM_LOSING = 0x5 constant RTM_MISS (line 1146) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1147) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1148) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1149) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1150) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1151) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1152) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1153) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1154) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1155) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1156) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1157) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1158) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1159) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1160) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1161) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1162) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1163) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1164) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1165) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1166) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1167) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1168) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1169) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1170) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1171) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1172) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1173) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1174) | SIOCADDRT = 0x8038720a constant SIOCAIFADDR (line 1175) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1176) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1177) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1178) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1179) | SIOCDELRT = 0x8038720b constant SIOCDIFADDR (line 1180) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1181) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1182) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1183) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETPFSYNC (line 1184) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1185) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1186) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGHIWAT (line 1187) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1188) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1189) | SIOCGIFADDRPREF = 0xc0986920 constant SIOCGIFALIAS (line 1190) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1191) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1192) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1193) | SIOCGIFCONF = 0xc0106926 constant SIOCGIFDATA (line 1194) | SIOCGIFDATA = 0xc0986985 constant SIOCGIFDLT (line 1195) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1196) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1197) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1198) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1199) | SIOCGIFMEDIA = 0xc0306936 constant SIOCGIFMETRIC (line 1200) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1201) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1202) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1203) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1204) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1205) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1206) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1207) | SIOCGLINKSTR = 0xc0286987 constant SIOCGLOWAT (line 1208) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1209) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1210) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1211) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1212) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1213) | SIOCIFGCLONERS = 0xc0106978 constant SIOCINITIFADDR (line 1214) | SIOCINITIFADDR = 0xc0706984 constant SIOCSDRVSPEC (line 1215) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETPFSYNC (line 1216) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1217) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1218) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1219) | SIOCSIFADDRPREF = 0x8098691f constant SIOCSIFBRDADDR (line 1220) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1221) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1222) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1223) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1224) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1225) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1226) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1227) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1228) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1229) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1230) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1231) | SIOCSLINKSTR = 0x80286988 constant SIOCSLOWAT (line 1232) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1233) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1234) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1235) | SIOCZIFDATA = 0xc0986986 constant SOCK_CLOEXEC (line 1236) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1237) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1238) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1239) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1240) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1241) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1242) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1243) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1244) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1245) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1246) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1247) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1248) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1249) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1250) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1251) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1252) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1253) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1254) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1255) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1256) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1257) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1258) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1259) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1260) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1261) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1262) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1263) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1264) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1265) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1266) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1267) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1268) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1269) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1270) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1271) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1272) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1273) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1274) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1275) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1276) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1277) | S_IEXEC = 0x40 constant S_IFBLK (line 1278) | S_IFBLK = 0x6000 constant S_IFCHR (line 1279) | S_IFCHR = 0x2000 constant S_IFDIR (line 1280) | S_IFDIR = 0x4000 constant S_IFIFO (line 1281) | S_IFIFO = 0x1000 constant S_IFLNK (line 1282) | S_IFLNK = 0xa000 constant S_IFMT (line 1283) | S_IFMT = 0xf000 constant S_IFREG (line 1284) | S_IFREG = 0x8000 constant S_IFSOCK (line 1285) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1286) | S_IFWHT = 0xe000 constant S_IREAD (line 1287) | S_IREAD = 0x100 constant S_IRGRP (line 1288) | S_IRGRP = 0x20 constant S_IROTH (line 1289) | S_IROTH = 0x4 constant S_IRUSR (line 1290) | S_IRUSR = 0x100 constant S_IRWXG (line 1291) | S_IRWXG = 0x38 constant S_IRWXO (line 1292) | S_IRWXO = 0x7 constant S_IRWXU (line 1293) | S_IRWXU = 0x1c0 constant S_ISGID (line 1294) | S_ISGID = 0x400 constant S_ISTXT (line 1295) | S_ISTXT = 0x200 constant S_ISUID (line 1296) | S_ISUID = 0x800 constant S_ISVTX (line 1297) | S_ISVTX = 0x200 constant S_IWGRP (line 1298) | S_IWGRP = 0x10 constant S_IWOTH (line 1299) | S_IWOTH = 0x2 constant S_IWRITE (line 1300) | S_IWRITE = 0x80 constant S_IWUSR (line 1301) | S_IWUSR = 0x80 constant S_IXGRP (line 1302) | S_IXGRP = 0x8 constant S_IXOTH (line 1303) | S_IXOTH = 0x1 constant S_IXUSR (line 1304) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1305) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1306) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1307) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1308) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1309) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1310) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1311) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1312) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1313) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1314) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1315) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1316) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1317) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1318) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1319) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1320) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1321) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1322) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1323) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1324) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1325) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1326) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1327) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1328) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1329) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1330) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1331) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1332) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1333) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1334) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1335) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1336) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1337) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1338) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1339) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1340) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1341) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1342) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1343) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1344) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1345) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1346) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1347) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1348) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1349) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1350) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1351) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1352) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1353) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1354) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1355) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1356) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1357) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1358) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1359) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1360) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1361) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1362) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1363) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1364) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1365) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1366) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1367) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1368) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1369) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1370) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1371) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1372) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1373) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1374) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1375) | TIOCRCVFRAME = 0x80087445 constant TIOCREMOTE (line 1376) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1377) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1378) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1379) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1380) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1381) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1382) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1383) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1384) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1385) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1386) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1387) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1388) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1389) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1390) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1391) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1392) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1393) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1394) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1395) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1396) | TIOCXMTFRAME = 0x80087444 constant TOSTOP (line 1397) | TOSTOP = 0x400000 constant VDISCARD (line 1398) | VDISCARD = 0xf constant VDSUSP (line 1399) | VDSUSP = 0xb constant VEOF (line 1400) | VEOF = 0x0 constant VEOL (line 1401) | VEOL = 0x1 constant VEOL2 (line 1402) | VEOL2 = 0x2 constant VERASE (line 1403) | VERASE = 0x3 constant VINTR (line 1404) | VINTR = 0x8 constant VKILL (line 1405) | VKILL = 0x5 constant VLNEXT (line 1406) | VLNEXT = 0xe constant VMIN (line 1407) | VMIN = 0x10 constant VQUIT (line 1408) | VQUIT = 0x9 constant VREPRINT (line 1409) | VREPRINT = 0x6 constant VSTART (line 1410) | VSTART = 0xc constant VSTATUS (line 1411) | VSTATUS = 0x12 constant VSTOP (line 1412) | VSTOP = 0xd constant VSUSP (line 1413) | VSUSP = 0xa constant VTIME (line 1414) | VTIME = 0x11 constant VWERASE (line 1415) | VWERASE = 0x4 constant WALL (line 1416) | WALL = 0x8 constant WALLSIG (line 1417) | WALLSIG = 0x8 constant WALTSIG (line 1418) | WALTSIG = 0x4 constant WCLONE (line 1419) | WCLONE = 0x4 constant WCOREFLAG (line 1420) | WCOREFLAG = 0x80 constant WNOHANG (line 1421) | WNOHANG = 0x1 constant WNOWAIT (line 1422) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1423) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1424) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1425) | WSTOPPED = 0x7f constant WUNTRACED (line 1426) | WUNTRACED = 0x2 constant E2BIG (line 1431) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1432) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1433) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1434) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1435) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1436) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1437) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1438) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1439) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1440) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1441) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1442) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1443) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1444) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1445) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1446) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1447) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1448) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1449) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1450) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1451) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1452) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1453) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1454) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1455) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1456) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1457) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1458) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1459) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1460) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1461) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1462) | EINVAL = syscall.Errno(0x16) constant EIO (line 1463) | EIO = syscall.Errno(0x5) constant EISCONN (line 1464) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1465) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1466) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1467) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1468) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1469) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1470) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1471) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1472) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1473) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1474) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1475) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1476) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1477) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1478) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1479) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1480) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1481) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1482) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1483) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1484) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1485) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1486) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1487) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1488) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1489) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1490) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1491) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1492) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1493) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1494) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1495) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1496) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1497) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1498) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1499) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1500) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1501) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1502) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1503) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1504) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1505) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1506) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1507) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1508) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1509) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1510) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1511) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1512) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1513) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1514) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1515) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1516) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1517) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1518) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1519) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1520) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1521) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1522) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1523) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1524) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1525) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1526) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1527) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1528) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1533) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1534) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1535) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1536) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1537) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1538) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1539) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1540) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1541) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1542) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1543) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1544) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1545) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1546) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1547) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1548) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1549) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1550) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1551) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1552) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1553) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1554) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1555) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1556) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1557) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1558) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1559) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1560) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1561) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1562) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1563) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1564) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1565) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x1f constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x20 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x18 constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x23 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OROUTE (line 41) | AF_OROUTE = 0x11 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x22 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ARCNET (line 48) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 49) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 50) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 51) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 52) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 53) | ARPHRD_STRIP = 0x17 constant B0 (line 54) | B0 = 0x0 constant B110 (line 55) | B110 = 0x6e constant B115200 (line 56) | B115200 = 0x1c200 constant B1200 (line 57) | B1200 = 0x4b0 constant B134 (line 58) | B134 = 0x86 constant B14400 (line 59) | B14400 = 0x3840 constant B150 (line 60) | B150 = 0x96 constant B1800 (line 61) | B1800 = 0x708 constant B19200 (line 62) | B19200 = 0x4b00 constant B200 (line 63) | B200 = 0xc8 constant B230400 (line 64) | B230400 = 0x38400 constant B2400 (line 65) | B2400 = 0x960 constant B28800 (line 66) | B28800 = 0x7080 constant B300 (line 67) | B300 = 0x12c constant B38400 (line 68) | B38400 = 0x9600 constant B460800 (line 69) | B460800 = 0x70800 constant B4800 (line 70) | B4800 = 0x12c0 constant B50 (line 71) | B50 = 0x32 constant B57600 (line 72) | B57600 = 0xe100 constant B600 (line 73) | B600 = 0x258 constant B7200 (line 74) | B7200 = 0x1c20 constant B75 (line 75) | B75 = 0x4b constant B76800 (line 76) | B76800 = 0x12c00 constant B921600 (line 77) | B921600 = 0xe1000 constant B9600 (line 78) | B9600 = 0x2580 constant BIOCFEEDBACK (line 79) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 80) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 81) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 82) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 83) | BIOCGDLTLIST = 0xc0084277 constant BIOCGETIF (line 84) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 85) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 86) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 87) | BIOCGRTIMEOUT = 0x400c427b constant BIOCGSEESENT (line 88) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 89) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 90) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 91) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 92) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 93) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 94) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 95) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 96) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 97) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x800c427a constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 101) | BIOCSTCPF = 0x80084272 constant BIOCSUDPF (line 102) | BIOCSUDPF = 0x80084273 constant BIOCVERSION (line 103) | BIOCVERSION = 0x40044271 constant BPF_A (line 104) | BPF_A = 0x10 constant BPF_ABS (line 105) | BPF_ABS = 0x20 constant BPF_ADD (line 106) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 107) | BPF_ALIGNMENT = 0x4 constant BPF_ALIGNMENT32 (line 108) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 109) | BPF_ALU = 0x4 constant BPF_AND (line 110) | BPF_AND = 0x50 constant BPF_B (line 111) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 112) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 113) | BPF_DIV = 0x30 constant BPF_H (line 114) | BPF_H = 0x8 constant BPF_IMM (line 115) | BPF_IMM = 0x0 constant BPF_IND (line 116) | BPF_IND = 0x40 constant BPF_JA (line 117) | BPF_JA = 0x0 constant BPF_JEQ (line 118) | BPF_JEQ = 0x10 constant BPF_JGE (line 119) | BPF_JGE = 0x30 constant BPF_JGT (line 120) | BPF_JGT = 0x20 constant BPF_JMP (line 121) | BPF_JMP = 0x5 constant BPF_JSET (line 122) | BPF_JSET = 0x40 constant BPF_K (line 123) | BPF_K = 0x0 constant BPF_LD (line 124) | BPF_LD = 0x0 constant BPF_LDX (line 125) | BPF_LDX = 0x1 constant BPF_LEN (line 126) | BPF_LEN = 0x80 constant BPF_LSH (line 127) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 128) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 129) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 130) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 131) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 132) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 133) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 134) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 135) | BPF_MISC = 0x7 constant BPF_MSH (line 136) | BPF_MSH = 0xa0 constant BPF_MUL (line 137) | BPF_MUL = 0x20 constant BPF_NEG (line 138) | BPF_NEG = 0x80 constant BPF_OR (line 139) | BPF_OR = 0x40 constant BPF_RELEASE (line 140) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 141) | BPF_RET = 0x6 constant BPF_RSH (line 142) | BPF_RSH = 0x70 constant BPF_ST (line 143) | BPF_ST = 0x2 constant BPF_STX (line 144) | BPF_STX = 0x3 constant BPF_SUB (line 145) | BPF_SUB = 0x10 constant BPF_TAX (line 146) | BPF_TAX = 0x0 constant BPF_TXA (line 147) | BPF_TXA = 0x80 constant BPF_W (line 148) | BPF_W = 0x0 constant BPF_X (line 149) | BPF_X = 0x8 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CREAD (line 153) | CREAD = 0x800 constant CS5 (line 154) | CS5 = 0x0 constant CS6 (line 155) | CS6 = 0x100 constant CS7 (line 156) | CS7 = 0x200 constant CS8 (line 157) | CS8 = 0x300 constant CSIZE (line 158) | CSIZE = 0x300 constant CSTART (line 159) | CSTART = 0x11 constant CSTATUS (line 160) | CSTATUS = 0x14 constant CSTOP (line 161) | CSTOP = 0x13 constant CSTOPB (line 162) | CSTOPB = 0x400 constant CSUSP (line 163) | CSUSP = 0x1a constant CTL_MAXNAME (line 164) | CTL_MAXNAME = 0xc constant CTL_NET (line 165) | CTL_NET = 0x4 constant CTL_QUERY (line 166) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 167) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 168) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 169) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 170) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 171) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 172) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 173) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 174) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 175) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 176) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 177) | DLT_AURORA = 0x7e constant DLT_AX25 (line 178) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 179) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 180) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 181) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 182) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 183) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 184) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 185) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 186) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 187) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 188) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 189) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 190) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 191) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 192) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 193) | DLT_EN3MB = 0x2 constant DLT_ENC (line 194) | DLT_ENC = 0x6d constant DLT_ERF (line 195) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 196) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 197) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 198) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 199) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 200) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 201) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 202) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 203) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 204) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 205) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 206) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 207) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 208) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 209) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 210) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 211) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 212) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 213) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 214) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 215) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 216) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 217) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 218) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 219) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 220) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 221) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 222) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 223) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 224) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 225) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 226) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 227) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 228) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 229) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 230) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 231) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 232) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 233) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 234) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 235) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 236) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 237) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 238) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 239) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 240) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 241) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 242) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 243) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 244) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 245) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 246) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 247) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 248) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 249) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 250) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 251) | DLT_LAPD = 0xcb constant DLT_LIN (line 252) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 253) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 254) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 255) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 256) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 257) | DLT_LOOP = 0x6c constant DLT_LTALK (line 258) | DLT_LTALK = 0x72 constant DLT_MFR (line 259) | DLT_MFR = 0xb6 constant DLT_MOST (line 260) | DLT_MOST = 0xd3 constant DLT_MPLS (line 261) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 262) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 263) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 264) | DLT_MTP3 = 0x8d constant DLT_NULL (line 265) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 266) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 267) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 268) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 269) | DLT_PPI = 0xc0 constant DLT_PPP (line 270) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 271) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 272) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 273) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 274) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 275) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 276) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 277) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 278) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 279) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 280) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 281) | DLT_RIO = 0x7c constant DLT_SCCP (line 282) | DLT_SCCP = 0x8e constant DLT_SITA (line 283) | DLT_SITA = 0xc4 constant DLT_SLIP (line 284) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 285) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 286) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 287) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 288) | DLT_TZSP = 0x80 constant DLT_USB (line 289) | DLT_USB = 0xba constant DLT_USB_LINUX (line 290) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 291) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 292) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 293) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 294) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 295) | DT_BLK = 0x6 constant DT_CHR (line 296) | DT_CHR = 0x2 constant DT_DIR (line 297) | DT_DIR = 0x4 constant DT_FIFO (line 298) | DT_FIFO = 0x1 constant DT_LNK (line 299) | DT_LNK = 0xa constant DT_REG (line 300) | DT_REG = 0x8 constant DT_SOCK (line 301) | DT_SOCK = 0xc constant DT_UNKNOWN (line 302) | DT_UNKNOWN = 0x0 constant DT_WHT (line 303) | DT_WHT = 0xe constant ECHO (line 304) | ECHO = 0x8 constant ECHOCTL (line 305) | ECHOCTL = 0x40 constant ECHOE (line 306) | ECHOE = 0x2 constant ECHOK (line 307) | ECHOK = 0x4 constant ECHOKE (line 308) | ECHOKE = 0x1 constant ECHONL (line 309) | ECHONL = 0x10 constant ECHOPRT (line 310) | ECHOPRT = 0x20 constant EMUL_LINUX (line 311) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 312) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 313) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 314) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 315) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 316) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 317) | ETHERMIN = 0x2e constant ETHERMTU (line 318) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 319) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 320) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 321) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 322) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 323) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 324) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 325) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 326) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 327) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 328) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 329) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 330) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 331) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 332) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 333) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 334) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 335) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 336) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 337) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 338) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 339) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 340) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 341) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 342) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 343) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 344) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 345) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 346) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 347) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 348) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 349) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 350) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 351) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 352) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 353) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 354) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 355) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 356) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 357) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 358) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 359) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 360) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 361) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 362) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 363) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 364) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 365) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 366) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 367) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 368) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 369) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 370) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 371) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 372) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 373) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 374) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 375) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 376) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 377) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 378) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 379) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 380) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 381) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 382) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 383) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 384) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 385) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 386) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 387) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 388) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 389) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 390) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 391) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 392) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 393) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 394) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 395) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 396) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 397) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 398) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 399) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 400) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 401) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 402) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 403) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 404) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 405) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 406) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 407) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 408) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 409) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 410) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 411) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 412) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 413) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 414) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 415) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 416) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 417) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 418) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 419) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 420) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 421) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 422) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 423) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 424) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 425) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 426) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 427) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 428) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 429) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 430) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 431) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 432) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 433) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 434) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 435) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 436) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 437) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 438) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 439) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 440) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 441) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 442) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 443) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 444) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 445) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 446) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 447) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 448) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 449) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 450) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 451) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 452) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 453) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 454) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 455) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 456) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 457) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 458) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 459) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 460) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 461) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 462) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 463) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 464) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 465) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 466) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 467) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 468) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 469) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 470) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 471) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 472) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 473) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 474) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 475) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 476) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 477) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 478) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 479) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 480) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 481) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 482) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 483) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 484) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 485) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 486) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 487) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 488) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 489) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 490) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 491) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 492) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 493) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 494) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 495) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 496) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 497) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 498) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 499) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 500) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 501) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 502) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 503) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 504) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 505) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 506) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 507) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 508) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 509) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 510) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 511) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 512) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 513) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 514) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 515) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 516) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 517) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 518) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 519) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 520) | EVFILT_WRITE = 0x1 constant EV_ADD (line 521) | EV_ADD = 0x1 constant EV_CLEAR (line 522) | EV_CLEAR = 0x20 constant EV_DELETE (line 523) | EV_DELETE = 0x2 constant EV_DISABLE (line 524) | EV_DISABLE = 0x8 constant EV_ENABLE (line 525) | EV_ENABLE = 0x4 constant EV_EOF (line 526) | EV_EOF = 0x8000 constant EV_ERROR (line 527) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 528) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 529) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 530) | EV_SYSFLAGS = 0xf000 constant EXTA (line 531) | EXTA = 0x4b00 constant EXTB (line 532) | EXTB = 0x9600 constant EXTPROC (line 533) | EXTPROC = 0x800 constant FD_CLOEXEC (line 534) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 535) | FD_SETSIZE = 0x100 constant FLUSHO (line 536) | FLUSHO = 0x800000 constant F_CLOSEM (line 537) | F_CLOSEM = 0xa constant F_DUPFD (line 538) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 539) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 540) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 541) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 542) | F_FSIN = 0x10000000 constant F_FSINOUT (line 543) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 544) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 545) | F_FSPRIV = 0x8000 constant F_FSVOID (line 546) | F_FSVOID = 0x40000000 constant F_GETFD (line 547) | F_GETFD = 0x1 constant F_GETFL (line 548) | F_GETFL = 0x3 constant F_GETLK (line 549) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 550) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 551) | F_GETOWN = 0x5 constant F_MAXFD (line 552) | F_MAXFD = 0xb constant F_OK (line 553) | F_OK = 0x0 constant F_PARAM_MASK (line 554) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 555) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 556) | F_RDLCK = 0x1 constant F_SETFD (line 557) | F_SETFD = 0x2 constant F_SETFL (line 558) | F_SETFL = 0x4 constant F_SETLK (line 559) | F_SETLK = 0x8 constant F_SETLKW (line 560) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 561) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 562) | F_SETOWN = 0x6 constant F_UNLCK (line 563) | F_UNLCK = 0x2 constant F_WRLCK (line 564) | F_WRLCK = 0x3 constant HUPCL (line 565) | HUPCL = 0x4000 constant ICANON (line 566) | ICANON = 0x100 constant ICMP6_FILTER (line 567) | ICMP6_FILTER = 0x12 constant ICRNL (line 568) | ICRNL = 0x100 constant IEXTEN (line 569) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 570) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 571) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 572) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 573) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 574) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 575) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 576) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 577) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 578) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 579) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 580) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 581) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 582) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 583) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 584) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 585) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 586) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 587) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 588) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 589) | IFF_UP = 0x1 constant IFNAMSIZ (line 590) | IFNAMSIZ = 0x10 constant IFT_1822 (line 591) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 592) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 593) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 594) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 595) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 596) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 597) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 598) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 599) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 600) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 601) | IFT_ASYNC = 0x54 constant IFT_ATM (line 602) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 603) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 604) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 605) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 606) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 607) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 608) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 609) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 610) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 611) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 612) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 613) | IFT_BSC = 0x53 constant IFT_CARP (line 614) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 615) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 616) | IFT_CEPT = 0x13 constant IFT_CES (line 617) | IFT_CES = 0x85 constant IFT_CHANNEL (line 618) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 619) | IFT_CNR = 0x55 constant IFT_COFFEE (line 620) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 621) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 622) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 623) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 624) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 625) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 626) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 627) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 628) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 629) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 630) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 631) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 632) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 633) | IFT_DS3 = 0x1e constant IFT_DTM (line 634) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 635) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 636) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 637) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 638) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 639) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 640) | IFT_ECONET = 0xce constant IFT_EON (line 641) | IFT_EON = 0x19 constant IFT_EPLRS (line 642) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 643) | IFT_ESCON = 0x49 constant IFT_ETHER (line 644) | IFT_ETHER = 0x6 constant IFT_FAITH (line 645) | IFT_FAITH = 0xf2 constant IFT_FAST (line 646) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 647) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 648) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 649) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 650) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 651) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 652) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 653) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 654) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 655) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 656) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 657) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 658) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 659) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 660) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 661) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 662) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 663) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 664) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 665) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 666) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 667) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 668) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 669) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 670) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 671) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 672) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 673) | IFT_HSSI = 0x2e constant IFT_HY (line 674) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 675) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 676) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 677) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 678) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 679) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 680) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 681) | IFT_IFGSN = 0x91 constant IFT_IMT (line 682) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 683) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 684) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 685) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 686) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 687) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 688) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 689) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 690) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 691) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 692) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 693) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 694) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 695) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 696) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 697) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 698) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 699) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 700) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 701) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 702) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 703) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 704) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 705) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 706) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 707) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 708) | IFT_LAPB = 0x10 constant IFT_LAPD (line 709) | IFT_LAPD = 0x4d constant IFT_LAPF (line 710) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 711) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 712) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 713) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 714) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 715) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 716) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 717) | IFT_MODEM = 0x30 constant IFT_MPC (line 718) | IFT_MPC = 0x71 constant IFT_MPLS (line 719) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 720) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 721) | IFT_MSDSL = 0x8f constant IFT_MVL (line 722) | IFT_MVL = 0xbf constant IFT_MYRINET (line 723) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 724) | IFT_NFAS = 0xaf constant IFT_NSIP (line 725) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 726) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 727) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 728) | IFT_OTHER = 0x1 constant IFT_P10 (line 729) | IFT_P10 = 0xc constant IFT_P80 (line 730) | IFT_P80 = 0xd constant IFT_PARA (line 731) | IFT_PARA = 0x22 constant IFT_PFLOG (line 732) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 733) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 734) | IFT_PLC = 0xae constant IFT_PON155 (line 735) | IFT_PON155 = 0xcf constant IFT_PON622 (line 736) | IFT_PON622 = 0xd0 constant IFT_POS (line 737) | IFT_POS = 0xab constant IFT_PPP (line 738) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 739) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 740) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 741) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 742) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 743) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 744) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 745) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 746) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 747) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 748) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 749) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 750) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 751) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 752) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 753) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 754) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 755) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 756) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 757) | IFT_RS232 = 0x21 constant IFT_RSRB (line 758) | IFT_RSRB = 0x4f constant IFT_SDLC (line 759) | IFT_SDLC = 0x11 constant IFT_SDSL (line 760) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 761) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 762) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 763) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 764) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 765) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 766) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 767) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 768) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 769) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 770) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 771) | IFT_SONETVT = 0x33 constant IFT_SRP (line 772) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 773) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 774) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 775) | IFT_STARLAN = 0xb constant IFT_STF (line 776) | IFT_STF = 0xd7 constant IFT_T1 (line 777) | IFT_T1 = 0x12 constant IFT_TDLC (line 778) | IFT_TDLC = 0x74 constant IFT_TELINK (line 779) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 780) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 781) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 782) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 783) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 784) | IFT_ULTRA = 0x1d constant IFT_USB (line 785) | IFT_USB = 0xa0 constant IFT_V11 (line 786) | IFT_V11 = 0x40 constant IFT_V35 (line 787) | IFT_V35 = 0x2d constant IFT_V36 (line 788) | IFT_V36 = 0x41 constant IFT_V37 (line 789) | IFT_V37 = 0x78 constant IFT_VDSL (line 790) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 791) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 792) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 793) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 794) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 795) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 796) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 797) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 798) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 799) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 800) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 801) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 802) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 803) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 804) | IFT_X213 = 0x5d constant IFT_X25 (line 805) | IFT_X25 = 0x5 constant IFT_X25DDN (line 806) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 807) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 808) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 809) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 810) | IFT_XETHER = 0x1a constant IGNBRK (line 811) | IGNBRK = 0x1 constant IGNCR (line 812) | IGNCR = 0x80 constant IGNPAR (line 813) | IGNPAR = 0x4 constant IMAXBEL (line 814) | IMAXBEL = 0x2000 constant INLCR (line 815) | INLCR = 0x40 constant INPCK (line 816) | INPCK = 0x10 constant IN_CLASSA_HOST (line 817) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 818) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 819) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 820) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 821) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 822) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 823) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 824) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 825) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 826) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 827) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 828) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 829) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 830) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 831) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 832) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 833) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 834) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 835) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 836) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 837) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 838) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 839) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 840) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 841) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 842) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 843) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 844) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 845) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 846) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 847) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 848) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 849) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 850) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 851) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 852) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 853) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 854) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 855) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 856) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 857) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 858) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 859) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 860) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 861) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 862) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 863) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 864) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 865) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 866) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 867) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 868) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 869) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 870) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 871) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 872) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 873) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 874) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 875) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 876) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 877) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 878) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 879) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 880) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 881) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 882) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 883) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 884) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 885) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 886) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 887) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 888) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 889) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 890) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 891) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 892) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 893) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 894) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 895) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 896) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 897) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 898) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 899) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 900) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 901) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 902) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 903) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 904) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 905) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 906) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 907) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 908) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 909) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 910) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 911) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 912) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 913) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 914) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 915) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 916) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 917) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 918) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 919) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 920) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 921) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 922) | IP_EF = 0x8000 constant IP_ERRORMTU (line 923) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 924) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 925) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 926) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 927) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 928) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 929) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 930) | IP_MINTTL = 0x18 constant IP_MSS (line 931) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 932) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 933) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 934) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 935) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 936) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 937) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 938) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 939) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 940) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 941) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 942) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 943) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 944) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 945) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 946) | IP_RETOPTS = 0x8 constant IP_RF (line 947) | IP_RF = 0x8000 constant IP_TOS (line 948) | IP_TOS = 0x3 constant IP_TTL (line 949) | IP_TTL = 0x4 constant ISIG (line 950) | ISIG = 0x80 constant ISTRIP (line 951) | ISTRIP = 0x20 constant IXANY (line 952) | IXANY = 0x800 constant IXOFF (line 953) | IXOFF = 0x400 constant IXON (line 954) | IXON = 0x200 constant LOCK_EX (line 955) | LOCK_EX = 0x2 constant LOCK_NB (line 956) | LOCK_NB = 0x4 constant LOCK_SH (line 957) | LOCK_SH = 0x1 constant LOCK_UN (line 958) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 959) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 960) | MADV_FREE = 0x6 constant MADV_NORMAL (line 961) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 962) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 963) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 964) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 965) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 966) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 967) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 968) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 969) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 970) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 971) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 972) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 973) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 974) | MAP_ANON = 0x1000 constant MAP_FILE (line 975) | MAP_FILE = 0x0 constant MAP_FIXED (line 976) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 977) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 978) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 979) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 980) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 981) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 982) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 983) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 984) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 985) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 986) | MAP_RENAME = 0x20 constant MAP_SHARED (line 987) | MAP_SHARED = 0x1 constant MAP_STACK (line 988) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 989) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 990) | MAP_WIRED = 0x800 constant MSG_BCAST (line 991) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 992) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 993) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 994) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 995) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 996) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 997) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 998) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 999) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1000) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1001) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1002) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1003) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1004) | MSG_OOB = 0x1 constant MSG_PEEK (line 1005) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1006) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1007) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1008) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1009) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1010) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1011) | MS_SYNC = 0x4 constant NAME_MAX (line 1012) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1013) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1014) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1015) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1016) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1017) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1018) | NET_RT_OOIFLIST = 0x3 constant NOFLSH (line 1019) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1020) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1021) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1022) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1023) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1024) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1025) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1026) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1027) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1028) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1029) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1030) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1031) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1032) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1033) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1034) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1035) | NOTE_WRITE = 0x2 constant OCRNL (line 1036) | OCRNL = 0x10 constant OFIOGETBMAP (line 1037) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1038) | ONLCR = 0x2 constant ONLRET (line 1039) | ONLRET = 0x40 constant ONOCR (line 1040) | ONOCR = 0x20 constant ONOEOT (line 1041) | ONOEOT = 0x8 constant OPOST (line 1042) | OPOST = 0x1 constant O_ACCMODE (line 1043) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1044) | O_ALT_IO = 0x40000 constant O_APPEND (line 1045) | O_APPEND = 0x8 constant O_ASYNC (line 1046) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1047) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1048) | O_CREAT = 0x200 constant O_DIRECT (line 1049) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1050) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1051) | O_DSYNC = 0x10000 constant O_EXCL (line 1052) | O_EXCL = 0x800 constant O_EXLOCK (line 1053) | O_EXLOCK = 0x20 constant O_FSYNC (line 1054) | O_FSYNC = 0x80 constant O_NDELAY (line 1055) | O_NDELAY = 0x4 constant O_NOCTTY (line 1056) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1057) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1058) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1059) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1060) | O_RDONLY = 0x0 constant O_RDWR (line 1061) | O_RDWR = 0x2 constant O_RSYNC (line 1062) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1063) | O_SHLOCK = 0x10 constant O_SYNC (line 1064) | O_SYNC = 0x80 constant O_TRUNC (line 1065) | O_TRUNC = 0x400 constant O_WRONLY (line 1066) | O_WRONLY = 0x1 constant PARENB (line 1067) | PARENB = 0x1000 constant PARMRK (line 1068) | PARMRK = 0x8 constant PARODD (line 1069) | PARODD = 0x2000 constant PENDIN (line 1070) | PENDIN = 0x20000000 constant PROT_EXEC (line 1071) | PROT_EXEC = 0x4 constant PROT_NONE (line 1072) | PROT_NONE = 0x0 constant PROT_READ (line 1073) | PROT_READ = 0x1 constant PROT_WRITE (line 1074) | PROT_WRITE = 0x2 constant PRI_IOFLUSH (line 1075) | PRI_IOFLUSH = 0x7c constant PRIO_PGRP (line 1076) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1077) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1078) | PRIO_USER = 0x2 constant RLIMIT_AS (line 1079) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1080) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1081) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1082) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1083) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1084) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1085) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1086) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1087) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1088) | RTAX_BRD = 0x7 constant RTAX_DST (line 1089) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1090) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1091) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1092) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1093) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1094) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1095) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1096) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1097) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1098) | RTA_BRD = 0x80 constant RTA_DST (line 1099) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1100) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1101) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1102) | RTA_IFA = 0x20 constant RTA_IFP (line 1103) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1104) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1105) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1106) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1107) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1108) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1109) | RTF_CLONING = 0x100 constant RTF_DONE (line 1110) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1111) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1112) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1113) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1114) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1115) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1116) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1117) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1118) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1119) | RTF_REJECT = 0x8 constant RTF_SRC (line 1120) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1121) | RTF_STATIC = 0x800 constant RTF_UP (line 1122) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1123) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1124) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1125) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1126) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1127) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1128) | RTM_DELETE = 0x2 constant RTM_GET (line 1129) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1130) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1131) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1132) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1133) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1134) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1135) | RTM_LOSING = 0x5 constant RTM_MISS (line 1136) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1137) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1138) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1139) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1140) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1141) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1142) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1143) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1144) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1145) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1146) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1147) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1148) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1149) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1150) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1151) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1152) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1153) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1154) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1155) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1156) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1157) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1158) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1159) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1160) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1161) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1162) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1163) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1164) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1165) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1166) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1167) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1168) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1169) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1170) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1171) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1172) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1173) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETPFSYNC (line 1174) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1175) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1176) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGHIWAT (line 1177) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1178) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1179) | SIOCGIFADDRPREF = 0xc0946920 constant SIOCGIFALIAS (line 1180) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1181) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1182) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1183) | SIOCGIFCONF = 0xc0086926 constant SIOCGIFDATA (line 1184) | SIOCGIFDATA = 0xc0946985 constant SIOCGIFDLT (line 1185) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1186) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1187) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1188) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1189) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1190) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1191) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1192) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1193) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1194) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1195) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1196) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1197) | SIOCGLINKSTR = 0xc01c6987 constant SIOCGLOWAT (line 1198) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1199) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1200) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1201) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1202) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1203) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCINITIFADDR (line 1204) | SIOCINITIFADDR = 0xc0446984 constant SIOCSDRVSPEC (line 1205) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETPFSYNC (line 1206) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1207) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1208) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1209) | SIOCSIFADDRPREF = 0x8094691f constant SIOCSIFBRDADDR (line 1210) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1211) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1212) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1213) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1214) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1215) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1216) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1217) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1218) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1219) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1220) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1221) | SIOCSLINKSTR = 0x801c6988 constant SIOCSLOWAT (line 1222) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1223) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1224) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1225) | SIOCZIFDATA = 0xc0946986 constant SOCK_CLOEXEC (line 1226) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1227) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1228) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1229) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1230) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1231) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1232) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1233) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1234) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1235) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1236) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1237) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1238) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1239) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1240) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1241) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1242) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1243) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1244) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1245) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1246) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1247) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1248) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1249) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1250) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1251) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1252) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1253) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1254) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1255) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1256) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1257) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1258) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1259) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1260) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1261) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1262) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1263) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1264) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1265) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1266) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1267) | S_IEXEC = 0x40 constant S_IFBLK (line 1268) | S_IFBLK = 0x6000 constant S_IFCHR (line 1269) | S_IFCHR = 0x2000 constant S_IFDIR (line 1270) | S_IFDIR = 0x4000 constant S_IFIFO (line 1271) | S_IFIFO = 0x1000 constant S_IFLNK (line 1272) | S_IFLNK = 0xa000 constant S_IFMT (line 1273) | S_IFMT = 0xf000 constant S_IFREG (line 1274) | S_IFREG = 0x8000 constant S_IFSOCK (line 1275) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1276) | S_IFWHT = 0xe000 constant S_IREAD (line 1277) | S_IREAD = 0x100 constant S_IRGRP (line 1278) | S_IRGRP = 0x20 constant S_IROTH (line 1279) | S_IROTH = 0x4 constant S_IRUSR (line 1280) | S_IRUSR = 0x100 constant S_IRWXG (line 1281) | S_IRWXG = 0x38 constant S_IRWXO (line 1282) | S_IRWXO = 0x7 constant S_IRWXU (line 1283) | S_IRWXU = 0x1c0 constant S_ISGID (line 1284) | S_ISGID = 0x400 constant S_ISTXT (line 1285) | S_ISTXT = 0x200 constant S_ISUID (line 1286) | S_ISUID = 0x800 constant S_ISVTX (line 1287) | S_ISVTX = 0x200 constant S_IWGRP (line 1288) | S_IWGRP = 0x10 constant S_IWOTH (line 1289) | S_IWOTH = 0x2 constant S_IWRITE (line 1290) | S_IWRITE = 0x80 constant S_IWUSR (line 1291) | S_IWUSR = 0x80 constant S_IXGRP (line 1292) | S_IXGRP = 0x8 constant S_IXOTH (line 1293) | S_IXOTH = 0x1 constant S_IXUSR (line 1294) | S_IXUSR = 0x40 constant TCIFLUSH (line 1295) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1296) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1297) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1298) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1299) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1300) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1301) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1302) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1303) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1304) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1305) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1306) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1307) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1308) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1309) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1310) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1311) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1312) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1313) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1314) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1315) | TIOCDCDTIMESTAMP = 0x400c7458 constant TIOCDRAIN (line 1316) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1317) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1318) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1319) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1320) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1321) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1322) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1323) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1324) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1325) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1326) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1327) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1328) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1329) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1330) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1331) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1332) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1333) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1334) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1335) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1336) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1337) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1338) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1339) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1340) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1341) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1342) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1343) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1344) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1345) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1346) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1347) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1348) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1349) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1350) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1351) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1352) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1353) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1354) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1355) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1356) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1357) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1358) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1359) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1360) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1361) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1362) | TIOCPTMGET = 0x48087446 constant TIOCPTSNAME (line 1363) | TIOCPTSNAME = 0x48087448 constant TIOCRCVFRAME (line 1364) | TIOCRCVFRAME = 0x80047445 constant TIOCREMOTE (line 1365) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1366) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1367) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1368) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1369) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1370) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1371) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1372) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1373) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1374) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1375) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1376) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1377) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1378) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1379) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1380) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1381) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1382) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1383) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1384) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1385) | TIOCXMTFRAME = 0x80047444 constant TOSTOP (line 1386) | TOSTOP = 0x400000 constant VDISCARD (line 1387) | VDISCARD = 0xf constant VDSUSP (line 1388) | VDSUSP = 0xb constant VEOF (line 1389) | VEOF = 0x0 constant VEOL (line 1390) | VEOL = 0x1 constant VEOL2 (line 1391) | VEOL2 = 0x2 constant VERASE (line 1392) | VERASE = 0x3 constant VINTR (line 1393) | VINTR = 0x8 constant VKILL (line 1394) | VKILL = 0x5 constant VLNEXT (line 1395) | VLNEXT = 0xe constant VMIN (line 1396) | VMIN = 0x10 constant VQUIT (line 1397) | VQUIT = 0x9 constant VREPRINT (line 1398) | VREPRINT = 0x6 constant VSTART (line 1399) | VSTART = 0xc constant VSTATUS (line 1400) | VSTATUS = 0x12 constant VSTOP (line 1401) | VSTOP = 0xd constant VSUSP (line 1402) | VSUSP = 0xa constant VTIME (line 1403) | VTIME = 0x11 constant VWERASE (line 1404) | VWERASE = 0x4 constant WALL (line 1405) | WALL = 0x8 constant WALLSIG (line 1406) | WALLSIG = 0x8 constant WALTSIG (line 1407) | WALTSIG = 0x4 constant WCLONE (line 1408) | WCLONE = 0x4 constant WCOREFLAG (line 1409) | WCOREFLAG = 0x80 constant WNOHANG (line 1410) | WNOHANG = 0x1 constant WNOWAIT (line 1411) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1412) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1413) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1414) | WSTOPPED = 0x7f constant WUNTRACED (line 1415) | WUNTRACED = 0x2 constant E2BIG (line 1420) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1421) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1422) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1423) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1424) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1425) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1426) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1427) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1428) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1429) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1430) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1431) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1432) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1433) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1434) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1435) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1436) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1437) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1438) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1439) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1440) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1441) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1442) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1443) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1444) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1445) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1446) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1447) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1448) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1449) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1450) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1451) | EINVAL = syscall.Errno(0x16) constant EIO (line 1452) | EIO = syscall.Errno(0x5) constant EISCONN (line 1453) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1454) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1455) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1456) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1457) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1458) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1459) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1460) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1461) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1462) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1463) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1464) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1465) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1466) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1467) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1468) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1469) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1470) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1471) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1472) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1473) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1474) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1475) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1476) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1477) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1478) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1479) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1480) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1481) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1482) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1483) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1484) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1485) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1486) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1487) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1488) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1489) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1490) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1491) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1492) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1493) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1494) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1495) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1496) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1497) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1498) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1499) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1500) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1501) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1502) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1503) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1504) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1505) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1506) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1507) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1508) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1509) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1510) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1511) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1512) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1513) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1514) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1515) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1516) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1517) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1522) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1523) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1524) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1525) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1526) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1527) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1528) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1529) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1530) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1531) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1532) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1533) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1534) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1535) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1536) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1537) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1538) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1539) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1540) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1541) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1542) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1543) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1544) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1545) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1546) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1547) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1548) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1549) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1550) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1551) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1552) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1553) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1554) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 15) | AF_BLUETOOTH = 0x20 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_CNT (line 18) | AF_CNT = 0x15 constant AF_COIP (line 19) | AF_COIP = 0x14 constant AF_DATAKIT (line 20) | AF_DATAKIT = 0x9 constant AF_DECnet (line 21) | AF_DECnet = 0xc constant AF_DLI (line 22) | AF_DLI = 0xd constant AF_E164 (line 23) | AF_E164 = 0x1a constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_ENCAP (line 25) | AF_ENCAP = 0x1c constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x18 constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1a constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_KEY (line 33) | AF_KEY = 0x1e constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_ROUTE (line 43) | AF_ROUTE = 0x11 constant AF_SIP (line 44) | AF_SIP = 0x1d constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ETHER (line 48) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 49) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 50) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 51) | ARPHRD_IEEE802 = 0x6 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 77) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 78) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 79) | BIOCGDLTLIST = 0xc008427b constant BIOCGETIF (line 80) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 81) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 82) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 83) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 84) | BIOCGRTIMEOUT = 0x400c426e constant BIOCGSTATS (line 85) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 86) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 87) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 88) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 89) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 90) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 91) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 92) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 93) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 94) | BIOCSETWF = 0x80084277 constant BIOCSFILDROP (line 95) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 96) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 97) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 98) | BIOCSRTIMEOUT = 0x800c426d constant BIOCVERSION (line 99) | BIOCVERSION = 0x40044271 constant BPF_A (line 100) | BPF_A = 0x10 constant BPF_ABS (line 101) | BPF_ABS = 0x20 constant BPF_ADD (line 102) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 103) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 104) | BPF_ALU = 0x4 constant BPF_AND (line 105) | BPF_AND = 0x50 constant BPF_B (line 106) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 107) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 108) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 109) | BPF_DIV = 0x30 constant BPF_H (line 110) | BPF_H = 0x8 constant BPF_IMM (line 111) | BPF_IMM = 0x0 constant BPF_IND (line 112) | BPF_IND = 0x40 constant BPF_JA (line 113) | BPF_JA = 0x0 constant BPF_JEQ (line 114) | BPF_JEQ = 0x10 constant BPF_JGE (line 115) | BPF_JGE = 0x30 constant BPF_JGT (line 116) | BPF_JGT = 0x20 constant BPF_JMP (line 117) | BPF_JMP = 0x5 constant BPF_JSET (line 118) | BPF_JSET = 0x40 constant BPF_K (line 119) | BPF_K = 0x0 constant BPF_LD (line 120) | BPF_LD = 0x0 constant BPF_LDX (line 121) | BPF_LDX = 0x1 constant BPF_LEN (line 122) | BPF_LEN = 0x80 constant BPF_LSH (line 123) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 124) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 125) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 126) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 127) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 128) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 129) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 130) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 131) | BPF_MISC = 0x7 constant BPF_MSH (line 132) | BPF_MSH = 0xa0 constant BPF_MUL (line 133) | BPF_MUL = 0x20 constant BPF_NEG (line 134) | BPF_NEG = 0x80 constant BPF_OR (line 135) | BPF_OR = 0x40 constant BPF_RELEASE (line 136) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 137) | BPF_RET = 0x6 constant BPF_RSH (line 138) | BPF_RSH = 0x70 constant BPF_ST (line 139) | BPF_ST = 0x2 constant BPF_STX (line 140) | BPF_STX = 0x3 constant BPF_SUB (line 141) | BPF_SUB = 0x10 constant BPF_TAX (line 142) | BPF_TAX = 0x0 constant BPF_TXA (line 143) | BPF_TXA = 0x80 constant BPF_W (line 144) | BPF_W = 0x0 constant BPF_X (line 145) | BPF_X = 0x8 constant BRKINT (line 146) | BRKINT = 0x2 constant CFLUSH (line 147) | CFLUSH = 0xf constant CLOCAL (line 148) | CLOCAL = 0x8000 constant CREAD (line 149) | CREAD = 0x800 constant CS5 (line 150) | CS5 = 0x0 constant CS6 (line 151) | CS6 = 0x100 constant CS7 (line 152) | CS7 = 0x200 constant CS8 (line 153) | CS8 = 0x300 constant CSIZE (line 154) | CSIZE = 0x300 constant CSTART (line 155) | CSTART = 0x11 constant CSTATUS (line 156) | CSTATUS = 0xff constant CSTOP (line 157) | CSTOP = 0x13 constant CSTOPB (line 158) | CSTOPB = 0x400 constant CSUSP (line 159) | CSUSP = 0x1a constant CTL_MAXNAME (line 160) | CTL_MAXNAME = 0xc constant CTL_NET (line 161) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 162) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 163) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 165) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 166) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 167) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 168) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 169) | DLT_EN3MB = 0x2 constant DLT_ENC (line 170) | DLT_ENC = 0xd constant DLT_FDDI (line 171) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 172) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 173) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 174) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 175) | DLT_LOOP = 0xc constant DLT_MPLS (line 176) | DLT_MPLS = 0xdb constant DLT_NULL (line 177) | DLT_NULL = 0x0 constant DLT_PFLOG (line 178) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 179) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 180) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 181) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 182) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 183) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 184) | DLT_PRONET = 0x4 constant DLT_RAW (line 185) | DLT_RAW = 0xe constant DLT_SLIP (line 186) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 187) | DLT_SLIP_BSDOS = 0xf constant DT_BLK (line 188) | DT_BLK = 0x6 constant DT_CHR (line 189) | DT_CHR = 0x2 constant DT_DIR (line 190) | DT_DIR = 0x4 constant DT_FIFO (line 191) | DT_FIFO = 0x1 constant DT_LNK (line 192) | DT_LNK = 0xa constant DT_REG (line 193) | DT_REG = 0x8 constant DT_SOCK (line 194) | DT_SOCK = 0xc constant DT_UNKNOWN (line 195) | DT_UNKNOWN = 0x0 constant ECHO (line 196) | ECHO = 0x8 constant ECHOCTL (line 197) | ECHOCTL = 0x40 constant ECHOE (line 198) | ECHOE = 0x2 constant ECHOK (line 199) | ECHOK = 0x4 constant ECHOKE (line 200) | ECHOKE = 0x1 constant ECHONL (line 201) | ECHONL = 0x10 constant ECHOPRT (line 202) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 203) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 204) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 205) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 206) | ENDRUNDISC = 0x9 constant ETHERMIN (line 207) | ETHERMIN = 0x2e constant ETHERMTU (line 208) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 209) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 210) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 211) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 212) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 213) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 214) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 215) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 216) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 217) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 218) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 219) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 220) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 221) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 222) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 223) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 224) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 225) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 226) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 227) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 228) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 229) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 230) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 231) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 232) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 233) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 234) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 235) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 236) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 237) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 238) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 239) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 240) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 241) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 242) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 243) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 244) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 245) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 246) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 247) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 248) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 249) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 250) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 251) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 252) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 253) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 254) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 255) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 256) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 257) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 258) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 259) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 260) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 261) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 262) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 263) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 264) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 265) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 266) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 267) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 268) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 269) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 270) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 271) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 272) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 273) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 274) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 275) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 276) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 277) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 278) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 279) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 280) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 281) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 282) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 283) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 284) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 285) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 286) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 287) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 288) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 289) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 290) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 291) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 292) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 293) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 294) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 295) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 296) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 297) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 298) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 299) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 300) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 301) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 302) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 303) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 304) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 305) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 306) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 307) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 308) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 309) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 310) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 311) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 312) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 313) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 314) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 315) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 316) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 317) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 318) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 319) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 320) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 321) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 322) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 323) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 324) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 325) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 326) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 327) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 328) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 329) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 330) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 331) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 332) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 333) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 334) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 335) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 336) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 337) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 338) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 339) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 340) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 341) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 342) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 343) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 344) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 345) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 346) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 347) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 348) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 349) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 350) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 351) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 352) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 353) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 354) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 355) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 356) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 357) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 358) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 359) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 360) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 361) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 362) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 363) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 364) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 365) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 366) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 367) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 368) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 369) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 370) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 371) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 372) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 373) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 374) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 375) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 376) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 377) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 378) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 379) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 380) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 381) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 382) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 383) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 384) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 385) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 386) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 387) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 388) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 389) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 390) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 391) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 392) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 393) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 394) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 395) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 396) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 397) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 398) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 399) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 400) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 401) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 402) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 403) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 404) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 405) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 406) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 407) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 408) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 409) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 410) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 411) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 412) | EVFILT_WRITE = -0x2 constant EV_ADD (line 413) | EV_ADD = 0x1 constant EV_CLEAR (line 414) | EV_CLEAR = 0x20 constant EV_DELETE (line 415) | EV_DELETE = 0x2 constant EV_DISABLE (line 416) | EV_DISABLE = 0x8 constant EV_ENABLE (line 417) | EV_ENABLE = 0x4 constant EV_EOF (line 418) | EV_EOF = 0x8000 constant EV_ERROR (line 419) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 420) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 421) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 422) | EV_SYSFLAGS = 0xf000 constant EXTA (line 423) | EXTA = 0x4b00 constant EXTB (line 424) | EXTB = 0x9600 constant EXTPROC (line 425) | EXTPROC = 0x800 constant FD_CLOEXEC (line 426) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 427) | FD_SETSIZE = 0x400 constant FLUSHO (line 428) | FLUSHO = 0x800000 constant F_DUPFD (line 429) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 430) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 431) | F_GETFD = 0x1 constant F_GETFL (line 432) | F_GETFL = 0x3 constant F_GETLK (line 433) | F_GETLK = 0x7 constant F_GETOWN (line 434) | F_GETOWN = 0x5 constant F_OK (line 435) | F_OK = 0x0 constant F_RDLCK (line 436) | F_RDLCK = 0x1 constant F_SETFD (line 437) | F_SETFD = 0x2 constant F_SETFL (line 438) | F_SETFL = 0x4 constant F_SETLK (line 439) | F_SETLK = 0x8 constant F_SETLKW (line 440) | F_SETLKW = 0x9 constant F_SETOWN (line 441) | F_SETOWN = 0x6 constant F_UNLCK (line 442) | F_UNLCK = 0x2 constant F_WRLCK (line 443) | F_WRLCK = 0x3 constant HUPCL (line 444) | HUPCL = 0x4000 constant ICANON (line 445) | ICANON = 0x100 constant ICMP6_FILTER (line 446) | ICMP6_FILTER = 0x12 constant ICRNL (line 447) | ICRNL = 0x100 constant IEXTEN (line 448) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 449) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 450) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 451) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 453) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 454) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 471) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 472) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 473) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 474) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 475) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 476) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 477) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 478) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 479) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 480) | IFT_ASYNC = 0x54 constant IFT_ATM (line 481) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 482) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 483) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 484) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 485) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 486) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 487) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 488) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 489) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 490) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 491) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 492) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 493) | IFT_BSC = 0x53 constant IFT_CARP (line 494) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 495) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 496) | IFT_CEPT = 0x13 constant IFT_CES (line 497) | IFT_CES = 0x85 constant IFT_CHANNEL (line 498) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 499) | IFT_CNR = 0x55 constant IFT_COFFEE (line 500) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 501) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 502) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 503) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 504) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 505) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 506) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 507) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 508) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 509) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 510) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 511) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 512) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 513) | IFT_DS3 = 0x1e constant IFT_DTM (line 514) | IFT_DTM = 0x8c constant IFT_DUMMY (line 515) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 516) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 517) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 518) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 519) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 520) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 521) | IFT_ECONET = 0xce constant IFT_ENC (line 522) | IFT_ENC = 0xf4 constant IFT_EON (line 523) | IFT_EON = 0x19 constant IFT_EPLRS (line 524) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 525) | IFT_ESCON = 0x49 constant IFT_ETHER (line 526) | IFT_ETHER = 0x6 constant IFT_FAITH (line 527) | IFT_FAITH = 0xf3 constant IFT_FAST (line 528) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 529) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 530) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 531) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 532) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 533) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 534) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 535) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 536) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 537) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 538) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 539) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 540) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 541) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 542) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 543) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 544) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 545) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 546) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 547) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 548) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 549) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 550) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 551) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 552) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 553) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 554) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 555) | IFT_HSSI = 0x2e constant IFT_HY (line 556) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 557) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 558) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 559) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 560) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 561) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 562) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 563) | IFT_IFGSN = 0x91 constant IFT_IMT (line 564) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 565) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 566) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 567) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 568) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 569) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 570) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 571) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 572) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 573) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 574) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 575) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 576) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 577) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 578) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 579) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 580) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 581) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 582) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 583) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 584) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 585) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 586) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 587) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 588) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 589) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 590) | IFT_LAPB = 0x10 constant IFT_LAPD (line 591) | IFT_LAPD = 0x4d constant IFT_LAPF (line 592) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 593) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 594) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 595) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 596) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 597) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 598) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 599) | IFT_MODEM = 0x30 constant IFT_MPC (line 600) | IFT_MPC = 0x71 constant IFT_MPLS (line 601) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 602) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 603) | IFT_MSDSL = 0x8f constant IFT_MVL (line 604) | IFT_MVL = 0xbf constant IFT_MYRINET (line 605) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 606) | IFT_NFAS = 0xaf constant IFT_NSIP (line 607) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 608) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 609) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 610) | IFT_OTHER = 0x1 constant IFT_P10 (line 611) | IFT_P10 = 0xc constant IFT_P80 (line 612) | IFT_P80 = 0xd constant IFT_PARA (line 613) | IFT_PARA = 0x22 constant IFT_PFLOG (line 614) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 615) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 616) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 617) | IFT_PLC = 0xae constant IFT_PON155 (line 618) | IFT_PON155 = 0xcf constant IFT_PON622 (line 619) | IFT_PON622 = 0xd0 constant IFT_POS (line 620) | IFT_POS = 0xab constant IFT_PPP (line 621) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 622) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 623) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 624) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 625) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 626) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 627) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 628) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 629) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 630) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 631) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 632) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 633) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 634) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 635) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 636) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 637) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 638) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 639) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 640) | IFT_RS232 = 0x21 constant IFT_RSRB (line 641) | IFT_RSRB = 0x4f constant IFT_SDLC (line 642) | IFT_SDLC = 0x11 constant IFT_SDSL (line 643) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 644) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 645) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 646) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 647) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 648) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 649) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 650) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 651) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 652) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 653) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 654) | IFT_SONETVT = 0x33 constant IFT_SRP (line 655) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 656) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 657) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 658) | IFT_STARLAN = 0xb constant IFT_T1 (line 659) | IFT_T1 = 0x12 constant IFT_TDLC (line 660) | IFT_TDLC = 0x74 constant IFT_TELINK (line 661) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 662) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 663) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 664) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 665) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 666) | IFT_ULTRA = 0x1d constant IFT_USB (line 667) | IFT_USB = 0xa0 constant IFT_V11 (line 668) | IFT_V11 = 0x40 constant IFT_V35 (line 669) | IFT_V35 = 0x2d constant IFT_V36 (line 670) | IFT_V36 = 0x41 constant IFT_V37 (line 671) | IFT_V37 = 0x78 constant IFT_VDSL (line 672) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 673) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 674) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 675) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 676) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 677) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 678) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 679) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 680) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 681) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 682) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 683) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 684) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 685) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 686) | IFT_X213 = 0x5d constant IFT_X25 (line 687) | IFT_X25 = 0x5 constant IFT_X25DDN (line 688) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 689) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 690) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 691) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 692) | IFT_XETHER = 0x1a constant IGNBRK (line 693) | IGNBRK = 0x1 constant IGNCR (line 694) | IGNCR = 0x80 constant IGNPAR (line 695) | IGNPAR = 0x4 constant IMAXBEL (line 696) | IMAXBEL = 0x2000 constant INLCR (line 697) | INLCR = 0x40 constant INPCK (line 698) | INPCK = 0x10 constant IN_CLASSA_HOST (line 699) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 700) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 701) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 702) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 703) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 704) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 705) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 706) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 707) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 708) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 709) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 710) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 711) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 712) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 713) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 714) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 715) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 716) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 717) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 718) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 719) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 720) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 721) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 722) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 723) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 724) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 725) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 726) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 727) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 728) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 729) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 730) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 731) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 732) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 733) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 734) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 735) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 736) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 737) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 738) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 739) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 740) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 741) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 742) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 743) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 744) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 745) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 747) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 748) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 749) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 750) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 751) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 752) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 753) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 754) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 755) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 756) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 757) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 758) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 759) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 760) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 761) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 762) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 763) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 764) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 765) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 766) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 767) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 768) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 769) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 770) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 771) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 772) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 773) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 774) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 775) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 776) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 777) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 778) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 779) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 780) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 781) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 782) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 783) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 784) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 785) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 786) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 787) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 788) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 789) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 790) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 791) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 792) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 793) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 794) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 795) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 796) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 797) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 798) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 799) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 800) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 801) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 802) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 803) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 804) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 805) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 806) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 807) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 808) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 809) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 810) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 811) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 812) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 813) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 814) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 815) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 816) | IP_DF = 0x4000 constant IP_DIVERTFL (line 817) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 818) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 819) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 820) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 821) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 822) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 823) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 824) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 825) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 826) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 827) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 828) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 829) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 830) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 831) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 832) | IP_MF = 0x2000 constant IP_MINTTL (line 833) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 834) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 835) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 836) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 837) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 838) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 839) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 840) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 841) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 842) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 843) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 844) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 845) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 846) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 847) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 848) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 849) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 850) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 851) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 852) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 853) | IP_RETOPTS = 0x8 constant IP_RF (line 854) | IP_RF = 0x8000 constant IP_RTABLE (line 855) | IP_RTABLE = 0x1021 constant IP_TOS (line 856) | IP_TOS = 0x3 constant IP_TTL (line 857) | IP_TTL = 0x4 constant ISIG (line 858) | ISIG = 0x80 constant ISTRIP (line 859) | ISTRIP = 0x20 constant IXANY (line 860) | IXANY = 0x800 constant IXOFF (line 861) | IXOFF = 0x400 constant IXON (line 862) | IXON = 0x200 constant LCNT_OVERLOAD_FLUSH (line 863) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 864) | LOCK_EX = 0x2 constant LOCK_NB (line 865) | LOCK_NB = 0x4 constant LOCK_SH (line 866) | LOCK_SH = 0x1 constant LOCK_UN (line 867) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 868) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 869) | MADV_FREE = 0x6 constant MADV_NORMAL (line 870) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 871) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 872) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 873) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 874) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 875) | MAP_ANON = 0x1000 constant MAP_COPY (line 876) | MAP_COPY = 0x4 constant MAP_FILE (line 877) | MAP_FILE = 0x0 constant MAP_FIXED (line 878) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 879) | MAP_FLAGMASK = 0x1ff7 constant MAP_HASSEMAPHORE (line 880) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 881) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 882) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DONATE_COPY (line 883) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 884) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 885) | MAP_INHERIT_SHARE = 0x0 constant MAP_NOEXTEND (line 886) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 887) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 888) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 889) | MAP_RENAME = 0x20 constant MAP_SHARED (line 890) | MAP_SHARED = 0x1 constant MAP_TRYFIXED (line 891) | MAP_TRYFIXED = 0x400 constant MCL_CURRENT (line 892) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 893) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 894) | MSG_BCAST = 0x100 constant MSG_CTRUNC (line 895) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 896) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 897) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 898) | MSG_EOR = 0x8 constant MSG_MCAST (line 899) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 900) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 901) | MSG_OOB = 0x1 constant MSG_PEEK (line 902) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 903) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 904) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 905) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 906) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 907) | MS_SYNC = 0x2 constant NAME_MAX (line 908) | NAME_MAX = 0xff constant NET_RT_DUMP (line 909) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 910) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 911) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 912) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 913) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 914) | NET_RT_TABLE = 0x5 constant NOFLSH (line 915) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 916) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 917) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 918) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 919) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 920) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 921) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 922) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 923) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 924) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 925) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 926) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 927) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 930) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 931) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 932) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 933) | NOTE_WRITE = 0x2 constant OCRNL (line 934) | OCRNL = 0x10 constant ONLCR (line 935) | ONLCR = 0x2 constant ONLRET (line 936) | ONLRET = 0x80 constant ONOCR (line 937) | ONOCR = 0x40 constant ONOEOT (line 938) | ONOEOT = 0x8 constant OPOST (line 939) | OPOST = 0x1 constant O_ACCMODE (line 940) | O_ACCMODE = 0x3 constant O_APPEND (line 941) | O_APPEND = 0x8 constant O_ASYNC (line 942) | O_ASYNC = 0x40 constant O_CLOEXEC (line 943) | O_CLOEXEC = 0x10000 constant O_CREAT (line 944) | O_CREAT = 0x200 constant O_DIRECTORY (line 945) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 946) | O_DSYNC = 0x80 constant O_EXCL (line 947) | O_EXCL = 0x800 constant O_EXLOCK (line 948) | O_EXLOCK = 0x20 constant O_FSYNC (line 949) | O_FSYNC = 0x80 constant O_NDELAY (line 950) | O_NDELAY = 0x4 constant O_NOCTTY (line 951) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 952) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 953) | O_NONBLOCK = 0x4 constant O_RDONLY (line 954) | O_RDONLY = 0x0 constant O_RDWR (line 955) | O_RDWR = 0x2 constant O_RSYNC (line 956) | O_RSYNC = 0x80 constant O_SHLOCK (line 957) | O_SHLOCK = 0x10 constant O_SYNC (line 958) | O_SYNC = 0x80 constant O_TRUNC (line 959) | O_TRUNC = 0x400 constant O_WRONLY (line 960) | O_WRONLY = 0x1 constant PARENB (line 961) | PARENB = 0x1000 constant PARMRK (line 962) | PARMRK = 0x8 constant PARODD (line 963) | PARODD = 0x2000 constant PENDIN (line 964) | PENDIN = 0x20000000 constant PF_FLUSH (line 965) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 966) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 967) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 968) | PRIO_USER = 0x2 constant PROT_EXEC (line 969) | PROT_EXEC = 0x4 constant PROT_NONE (line 970) | PROT_NONE = 0x0 constant PROT_READ (line 971) | PROT_READ = 0x1 constant PROT_WRITE (line 972) | PROT_WRITE = 0x2 constant PT_MASK (line 973) | PT_MASK = 0x3ff000 constant RLIMIT_CORE (line 974) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 975) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 976) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 977) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 978) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 979) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 980) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 981) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 982) | RTAX_BRD = 0x7 constant RTAX_DST (line 983) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 984) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 985) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 986) | RTAX_IFA = 0x5 constant RTAX_IFP (line 987) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 988) | RTAX_LABEL = 0xa constant RTAX_MAX (line 989) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 990) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 991) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 992) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 993) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 994) | RTA_BRD = 0x80 constant RTA_DST (line 995) | RTA_DST = 0x1 constant RTA_GATEWAY (line 996) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 997) | RTA_GENMASK = 0x8 constant RTA_IFA (line 998) | RTA_IFA = 0x20 constant RTA_IFP (line 999) | RTA_IFP = 0x10 constant RTA_LABEL (line 1000) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1001) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1002) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1003) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1004) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1005) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1006) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1007) | RTF_CLONING = 0x100 constant RTF_DONE (line 1008) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1009) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1010) | RTF_FMASK = 0x10f808 constant RTF_GATEWAY (line 1011) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1012) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1013) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1014) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1015) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1016) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1017) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1018) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1019) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1020) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1021) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1022) | RTF_REJECT = 0x8 constant RTF_SOURCE (line 1023) | RTF_SOURCE = 0x20000 constant RTF_STATIC (line 1024) | RTF_STATIC = 0x800 constant RTF_TUNNEL (line 1025) | RTF_TUNNEL = 0x100000 constant RTF_UP (line 1026) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1027) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1028) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1029) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1030) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1031) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1032) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1033) | RTM_DESYNC = 0x10 constant RTM_GET (line 1034) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1035) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1036) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1037) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1038) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1039) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1040) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1041) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1042) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1043) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1044) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1045) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1046) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1047) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1048) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1049) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1050) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1051) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1052) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1053) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_MAX (line 1054) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1055) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1056) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1057) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1058) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1059) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1060) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1061) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1062) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1063) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1064) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1065) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1066) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1067) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1068) | SIOCBRDGADD = 0x8054693c constant SIOCBRDGADDS (line 1069) | SIOCBRDGADDS = 0x80546941 constant SIOCBRDGARL (line 1070) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1071) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1072) | SIOCBRDGDEL = 0x8054693d constant SIOCBRDGDELS (line 1073) | SIOCBRDGDELS = 0x80546942 constant SIOCBRDGFLUSH (line 1074) | SIOCBRDGFLUSH = 0x80546948 constant SIOCBRDGFRL (line 1075) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1076) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1077) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1078) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1079) | SIOCBRDGGIFFLGS = 0xc054693e constant SIOCBRDGGMA (line 1080) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1081) | SIOCBRDGGPARAM = 0xc03c6958 constant SIOCBRDGGPRI (line 1082) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1083) | SIOCBRDGGRL = 0xc028694f constant SIOCBRDGGSIFS (line 1084) | SIOCBRDGGSIFS = 0xc054693c constant SIOCBRDGGTO (line 1085) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1086) | SIOCBRDGIFS = 0xc0546942 constant SIOCBRDGRTS (line 1087) | SIOCBRDGRTS = 0xc0186943 constant SIOCBRDGSADDR (line 1088) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1089) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1090) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1091) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1092) | SIOCBRDGSIFCOST = 0x80546955 constant SIOCBRDGSIFFLGS (line 1093) | SIOCBRDGSIFFLGS = 0x8054693f constant SIOCBRDGSIFPRIO (line 1094) | SIOCBRDGSIFPRIO = 0x80546954 constant SIOCBRDGSMA (line 1095) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1096) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1097) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1098) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1099) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1100) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1101) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1102) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1103) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1104) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1105) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1106) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1107) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1108) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1109) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1110) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGETVLAN (line 1111) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1112) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1113) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1115) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1116) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDATA (line 1117) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1118) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1119) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1120) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1121) | SIOCGIFGATTR = 0xc024698b constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1123) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1124) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFHARDMTU (line 1125) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1126) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1127) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1128) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1129) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1130) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1131) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1132) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1133) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1134) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFTIMESLOT (line 1135) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1136) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1137) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1138) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1139) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1140) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1141) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1142) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1143) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1144) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1145) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1146) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1147) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1148) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSETKALIVE (line 1149) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1150) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1151) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1152) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1153) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1154) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1155) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1156) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1157) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1158) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1159) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1160) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1161) | SIOCSIFGATTR = 0x8024698c constant SIOCSIFGENERIC (line 1162) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1163) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1164) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1165) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1166) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1167) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1168) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1169) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1170) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1171) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1172) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1173) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1174) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1175) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1176) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1177) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1178) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1179) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1180) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1181) | SIOCSVNETID = 0x802069a6 constant SOCK_DGRAM (line 1182) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 1183) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1184) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1185) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1186) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1187) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1188) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1189) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1190) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1191) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1192) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1193) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1194) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1195) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1196) | SO_LINGER = 0x80 constant SO_NETPROC (line 1197) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1198) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1199) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1200) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1201) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1202) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1203) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1204) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1205) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1206) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1207) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1208) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1209) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1210) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1211) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1212) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1213) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1214) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1215) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1216) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1217) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1218) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1219) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1220) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1221) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1222) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1223) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1224) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1225) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1226) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1227) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1228) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1229) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1230) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1231) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1232) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1233) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1234) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1235) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1236) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1237) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1238) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1239) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1240) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1241) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1242) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1243) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1244) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1245) | TIOCGTSTAMP = 0x400c745b constant TIOCGWINSZ (line 1246) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1247) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1248) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1249) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1250) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1251) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1252) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1253) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1254) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1255) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1256) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1257) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1258) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1259) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1260) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1261) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1262) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1263) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1264) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1265) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1266) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1267) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1268) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1269) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1270) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1271) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1272) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1273) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1274) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1275) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1276) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1277) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1278) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1279) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1280) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1281) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1282) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1283) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1284) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1285) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1286) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1287) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1288) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1289) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1290) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1291) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1292) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1293) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1294) | TOSTOP = 0x400000 constant VDISCARD (line 1295) | VDISCARD = 0xf constant VDSUSP (line 1296) | VDSUSP = 0xb constant VEOF (line 1297) | VEOF = 0x0 constant VEOL (line 1298) | VEOL = 0x1 constant VEOL2 (line 1299) | VEOL2 = 0x2 constant VERASE (line 1300) | VERASE = 0x3 constant VINTR (line 1301) | VINTR = 0x8 constant VKILL (line 1302) | VKILL = 0x5 constant VLNEXT (line 1303) | VLNEXT = 0xe constant VMIN (line 1304) | VMIN = 0x10 constant VQUIT (line 1305) | VQUIT = 0x9 constant VREPRINT (line 1306) | VREPRINT = 0x6 constant VSTART (line 1307) | VSTART = 0xc constant VSTATUS (line 1308) | VSTATUS = 0x12 constant VSTOP (line 1309) | VSTOP = 0xd constant VSUSP (line 1310) | VSUSP = 0xa constant VTIME (line 1311) | VTIME = 0x11 constant VWERASE (line 1312) | VWERASE = 0x4 constant WALTSIG (line 1313) | WALTSIG = 0x4 constant WCONTINUED (line 1314) | WCONTINUED = 0x8 constant WCOREFLAG (line 1315) | WCOREFLAG = 0x80 constant WNOHANG (line 1316) | WNOHANG = 0x1 constant WSTOPPED (line 1317) | WSTOPPED = 0x7f constant WUNTRACED (line 1318) | WUNTRACED = 0x2 constant E2BIG (line 1323) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1324) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1325) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1326) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1327) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1328) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1329) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1330) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1331) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1332) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1333) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1334) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1335) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1336) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1337) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1338) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1339) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1340) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1341) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1342) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1343) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1344) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1345) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1346) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1347) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1348) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1349) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1350) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1351) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1352) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1353) | EINVAL = syscall.Errno(0x16) constant EIO (line 1354) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1355) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1356) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1357) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1358) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1359) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1360) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1361) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1362) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1363) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1364) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1365) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1366) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1367) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1368) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1369) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1370) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1371) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1372) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1373) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1374) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1375) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1376) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1377) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1378) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1379) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1380) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1381) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1382) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1383) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1384) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1385) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1386) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1387) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1388) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1389) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1390) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1391) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1392) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1393) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1394) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1395) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1396) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1397) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1398) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1399) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1400) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1401) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1402) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1403) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1404) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1405) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1406) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1407) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1408) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1409) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1410) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1411) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1412) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1413) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1414) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1415) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1420) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1421) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1422) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1423) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1424) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1425) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1426) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1427) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1428) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1429) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1430) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1431) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1432) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1433) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1434) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1435) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1436) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1437) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1438) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1439) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1440) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1441) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1442) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1443) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1444) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1445) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1446) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1447) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1448) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1449) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1450) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1451) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1452) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 15) | AF_BLUETOOTH = 0x20 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_CNT (line 18) | AF_CNT = 0x15 constant AF_COIP (line 19) | AF_COIP = 0x14 constant AF_DATAKIT (line 20) | AF_DATAKIT = 0x9 constant AF_DECnet (line 21) | AF_DECnet = 0xc constant AF_DLI (line 22) | AF_DLI = 0xd constant AF_E164 (line 23) | AF_E164 = 0x1a constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_ENCAP (line 25) | AF_ENCAP = 0x1c constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x18 constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1a constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_KEY (line 33) | AF_KEY = 0x1e constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_ROUTE (line 43) | AF_ROUTE = 0x11 constant AF_SIP (line 44) | AF_SIP = 0x1d constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ETHER (line 48) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 49) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 50) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 51) | ARPHRD_IEEE802 = 0x6 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 77) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 78) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 79) | BIOCGDLTLIST = 0xc010427b constant BIOCGETIF (line 80) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 81) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 82) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 83) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 84) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSTATS (line 85) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 86) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 87) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 88) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 89) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 90) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 91) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 92) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 93) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 94) | BIOCSETWF = 0x80104277 constant BIOCSFILDROP (line 95) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 96) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 97) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 98) | BIOCSRTIMEOUT = 0x8010426d constant BIOCVERSION (line 99) | BIOCVERSION = 0x40044271 constant BPF_A (line 100) | BPF_A = 0x10 constant BPF_ABS (line 101) | BPF_ABS = 0x20 constant BPF_ADD (line 102) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 103) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 104) | BPF_ALU = 0x4 constant BPF_AND (line 105) | BPF_AND = 0x50 constant BPF_B (line 106) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 107) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 108) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 109) | BPF_DIV = 0x30 constant BPF_H (line 110) | BPF_H = 0x8 constant BPF_IMM (line 111) | BPF_IMM = 0x0 constant BPF_IND (line 112) | BPF_IND = 0x40 constant BPF_JA (line 113) | BPF_JA = 0x0 constant BPF_JEQ (line 114) | BPF_JEQ = 0x10 constant BPF_JGE (line 115) | BPF_JGE = 0x30 constant BPF_JGT (line 116) | BPF_JGT = 0x20 constant BPF_JMP (line 117) | BPF_JMP = 0x5 constant BPF_JSET (line 118) | BPF_JSET = 0x40 constant BPF_K (line 119) | BPF_K = 0x0 constant BPF_LD (line 120) | BPF_LD = 0x0 constant BPF_LDX (line 121) | BPF_LDX = 0x1 constant BPF_LEN (line 122) | BPF_LEN = 0x80 constant BPF_LSH (line 123) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 124) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 125) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 126) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 127) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 128) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 129) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 130) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 131) | BPF_MISC = 0x7 constant BPF_MSH (line 132) | BPF_MSH = 0xa0 constant BPF_MUL (line 133) | BPF_MUL = 0x20 constant BPF_NEG (line 134) | BPF_NEG = 0x80 constant BPF_OR (line 135) | BPF_OR = 0x40 constant BPF_RELEASE (line 136) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 137) | BPF_RET = 0x6 constant BPF_RSH (line 138) | BPF_RSH = 0x70 constant BPF_ST (line 139) | BPF_ST = 0x2 constant BPF_STX (line 140) | BPF_STX = 0x3 constant BPF_SUB (line 141) | BPF_SUB = 0x10 constant BPF_TAX (line 142) | BPF_TAX = 0x0 constant BPF_TXA (line 143) | BPF_TXA = 0x80 constant BPF_W (line 144) | BPF_W = 0x0 constant BPF_X (line 145) | BPF_X = 0x8 constant BRKINT (line 146) | BRKINT = 0x2 constant CFLUSH (line 147) | CFLUSH = 0xf constant CLOCAL (line 148) | CLOCAL = 0x8000 constant CREAD (line 149) | CREAD = 0x800 constant CS5 (line 150) | CS5 = 0x0 constant CS6 (line 151) | CS6 = 0x100 constant CS7 (line 152) | CS7 = 0x200 constant CS8 (line 153) | CS8 = 0x300 constant CSIZE (line 154) | CSIZE = 0x300 constant CSTART (line 155) | CSTART = 0x11 constant CSTATUS (line 156) | CSTATUS = 0xff constant CSTOP (line 157) | CSTOP = 0x13 constant CSTOPB (line 158) | CSTOPB = 0x400 constant CSUSP (line 159) | CSUSP = 0x1a constant CTL_MAXNAME (line 160) | CTL_MAXNAME = 0xc constant CTL_NET (line 161) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 162) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 163) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 165) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 166) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 167) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 168) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 169) | DLT_EN3MB = 0x2 constant DLT_ENC (line 170) | DLT_ENC = 0xd constant DLT_FDDI (line 171) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 172) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 173) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 174) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 175) | DLT_LOOP = 0xc constant DLT_MPLS (line 176) | DLT_MPLS = 0xdb constant DLT_NULL (line 177) | DLT_NULL = 0x0 constant DLT_PFLOG (line 178) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 179) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 180) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 181) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 182) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 183) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 184) | DLT_PRONET = 0x4 constant DLT_RAW (line 185) | DLT_RAW = 0xe constant DLT_SLIP (line 186) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 187) | DLT_SLIP_BSDOS = 0xf constant DT_BLK (line 188) | DT_BLK = 0x6 constant DT_CHR (line 189) | DT_CHR = 0x2 constant DT_DIR (line 190) | DT_DIR = 0x4 constant DT_FIFO (line 191) | DT_FIFO = 0x1 constant DT_LNK (line 192) | DT_LNK = 0xa constant DT_REG (line 193) | DT_REG = 0x8 constant DT_SOCK (line 194) | DT_SOCK = 0xc constant DT_UNKNOWN (line 195) | DT_UNKNOWN = 0x0 constant ECHO (line 196) | ECHO = 0x8 constant ECHOCTL (line 197) | ECHOCTL = 0x40 constant ECHOE (line 198) | ECHOE = 0x2 constant ECHOK (line 199) | ECHOK = 0x4 constant ECHOKE (line 200) | ECHOKE = 0x1 constant ECHONL (line 201) | ECHONL = 0x10 constant ECHOPRT (line 202) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 203) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 204) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 205) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 206) | ENDRUNDISC = 0x9 constant ETHERMIN (line 207) | ETHERMIN = 0x2e constant ETHERMTU (line 208) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 209) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 210) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 211) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 212) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 213) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 214) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 215) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 216) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 217) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 218) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 219) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 220) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 221) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 222) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 223) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 224) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 225) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 226) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 227) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 228) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 229) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 230) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 231) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 232) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 233) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 234) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 235) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 236) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 237) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 238) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 239) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 240) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 241) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 242) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 243) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 244) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 245) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 246) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 247) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 248) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 249) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 250) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 251) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 252) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 253) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 254) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 255) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 256) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 257) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 258) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 259) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 260) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 261) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 262) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 263) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 264) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 265) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 266) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 267) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 268) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 269) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 270) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 271) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 272) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 273) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 274) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 275) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 276) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 277) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 278) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 279) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 280) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 281) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 282) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 283) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 284) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 285) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 286) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 287) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 288) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 289) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 290) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 291) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 292) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 293) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 294) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 295) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 296) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 297) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 298) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 299) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 300) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 301) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 302) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 303) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 304) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 305) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 306) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 307) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 308) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 309) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 310) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 311) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 312) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 313) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 314) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 315) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 316) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 317) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 318) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 319) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 320) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 321) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 322) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 323) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 324) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 325) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 326) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 327) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 328) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 329) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 330) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 331) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 332) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 333) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 334) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 335) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 336) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 337) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 338) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 339) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 340) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 341) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 342) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 343) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 344) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 345) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 346) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 347) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 348) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 349) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 350) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 351) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 352) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 353) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 354) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 355) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 356) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 357) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 358) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 359) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 360) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 361) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 362) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 363) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 364) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 365) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 366) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 367) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 368) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 369) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 370) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 371) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 372) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 373) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 374) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 375) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 376) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 377) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 378) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 379) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 380) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 381) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 382) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 383) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 384) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 385) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 386) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 387) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 388) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 389) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 390) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 391) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 392) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 393) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 394) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 395) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 396) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 397) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 398) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 399) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 400) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 401) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 402) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 403) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 404) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 405) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 406) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 407) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 408) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 409) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 410) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 411) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 412) | EVFILT_WRITE = -0x2 constant EV_ADD (line 413) | EV_ADD = 0x1 constant EV_CLEAR (line 414) | EV_CLEAR = 0x20 constant EV_DELETE (line 415) | EV_DELETE = 0x2 constant EV_DISABLE (line 416) | EV_DISABLE = 0x8 constant EV_ENABLE (line 417) | EV_ENABLE = 0x4 constant EV_EOF (line 418) | EV_EOF = 0x8000 constant EV_ERROR (line 419) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 420) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 421) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 422) | EV_SYSFLAGS = 0xf000 constant EXTA (line 423) | EXTA = 0x4b00 constant EXTB (line 424) | EXTB = 0x9600 constant EXTPROC (line 425) | EXTPROC = 0x800 constant FD_CLOEXEC (line 426) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 427) | FD_SETSIZE = 0x400 constant FLUSHO (line 428) | FLUSHO = 0x800000 constant F_DUPFD (line 429) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 430) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 431) | F_GETFD = 0x1 constant F_GETFL (line 432) | F_GETFL = 0x3 constant F_GETLK (line 433) | F_GETLK = 0x7 constant F_GETOWN (line 434) | F_GETOWN = 0x5 constant F_OK (line 435) | F_OK = 0x0 constant F_RDLCK (line 436) | F_RDLCK = 0x1 constant F_SETFD (line 437) | F_SETFD = 0x2 constant F_SETFL (line 438) | F_SETFL = 0x4 constant F_SETLK (line 439) | F_SETLK = 0x8 constant F_SETLKW (line 440) | F_SETLKW = 0x9 constant F_SETOWN (line 441) | F_SETOWN = 0x6 constant F_UNLCK (line 442) | F_UNLCK = 0x2 constant F_WRLCK (line 443) | F_WRLCK = 0x3 constant HUPCL (line 444) | HUPCL = 0x4000 constant ICANON (line 445) | ICANON = 0x100 constant ICMP6_FILTER (line 446) | ICMP6_FILTER = 0x12 constant ICRNL (line 447) | ICRNL = 0x100 constant IEXTEN (line 448) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 449) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 450) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 451) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 453) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 454) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 471) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 472) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 473) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 474) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 475) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 476) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 477) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 478) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 479) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 480) | IFT_ASYNC = 0x54 constant IFT_ATM (line 481) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 482) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 483) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 484) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 485) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 486) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 487) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 488) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 489) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 490) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 491) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 492) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 493) | IFT_BSC = 0x53 constant IFT_CARP (line 494) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 495) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 496) | IFT_CEPT = 0x13 constant IFT_CES (line 497) | IFT_CES = 0x85 constant IFT_CHANNEL (line 498) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 499) | IFT_CNR = 0x55 constant IFT_COFFEE (line 500) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 501) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 502) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 503) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 504) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 505) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 506) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 507) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 508) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 509) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 510) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 511) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 512) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 513) | IFT_DS3 = 0x1e constant IFT_DTM (line 514) | IFT_DTM = 0x8c constant IFT_DUMMY (line 515) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 516) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 517) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 518) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 519) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 520) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 521) | IFT_ECONET = 0xce constant IFT_ENC (line 522) | IFT_ENC = 0xf4 constant IFT_EON (line 523) | IFT_EON = 0x19 constant IFT_EPLRS (line 524) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 525) | IFT_ESCON = 0x49 constant IFT_ETHER (line 526) | IFT_ETHER = 0x6 constant IFT_FAITH (line 527) | IFT_FAITH = 0xf3 constant IFT_FAST (line 528) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 529) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 530) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 531) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 532) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 533) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 534) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 535) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 536) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 537) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 538) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 539) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 540) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 541) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 542) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 543) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 544) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 545) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 546) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 547) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 548) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 549) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 550) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 551) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 552) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 553) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 554) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 555) | IFT_HSSI = 0x2e constant IFT_HY (line 556) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 557) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 558) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 559) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 560) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 561) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 562) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 563) | IFT_IFGSN = 0x91 constant IFT_IMT (line 564) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 565) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 566) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 567) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 568) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 569) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 570) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 571) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 572) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 573) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 574) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 575) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 576) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 577) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 578) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 579) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 580) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 581) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 582) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 583) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 584) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 585) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 586) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 587) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 588) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 589) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 590) | IFT_LAPB = 0x10 constant IFT_LAPD (line 591) | IFT_LAPD = 0x4d constant IFT_LAPF (line 592) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 593) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 594) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 595) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 596) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 597) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 598) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 599) | IFT_MODEM = 0x30 constant IFT_MPC (line 600) | IFT_MPC = 0x71 constant IFT_MPLS (line 601) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 602) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 603) | IFT_MSDSL = 0x8f constant IFT_MVL (line 604) | IFT_MVL = 0xbf constant IFT_MYRINET (line 605) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 606) | IFT_NFAS = 0xaf constant IFT_NSIP (line 607) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 608) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 609) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 610) | IFT_OTHER = 0x1 constant IFT_P10 (line 611) | IFT_P10 = 0xc constant IFT_P80 (line 612) | IFT_P80 = 0xd constant IFT_PARA (line 613) | IFT_PARA = 0x22 constant IFT_PFLOG (line 614) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 615) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 616) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 617) | IFT_PLC = 0xae constant IFT_PON155 (line 618) | IFT_PON155 = 0xcf constant IFT_PON622 (line 619) | IFT_PON622 = 0xd0 constant IFT_POS (line 620) | IFT_POS = 0xab constant IFT_PPP (line 621) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 622) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 623) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 624) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 625) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 626) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 627) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 628) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 629) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 630) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 631) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 632) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 633) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 634) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 635) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 636) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 637) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 638) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 639) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 640) | IFT_RS232 = 0x21 constant IFT_RSRB (line 641) | IFT_RSRB = 0x4f constant IFT_SDLC (line 642) | IFT_SDLC = 0x11 constant IFT_SDSL (line 643) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 644) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 645) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 646) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 647) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 648) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 649) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 650) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 651) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 652) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 653) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 654) | IFT_SONETVT = 0x33 constant IFT_SRP (line 655) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 656) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 657) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 658) | IFT_STARLAN = 0xb constant IFT_T1 (line 659) | IFT_T1 = 0x12 constant IFT_TDLC (line 660) | IFT_TDLC = 0x74 constant IFT_TELINK (line 661) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 662) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 663) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 664) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 665) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 666) | IFT_ULTRA = 0x1d constant IFT_USB (line 667) | IFT_USB = 0xa0 constant IFT_V11 (line 668) | IFT_V11 = 0x40 constant IFT_V35 (line 669) | IFT_V35 = 0x2d constant IFT_V36 (line 670) | IFT_V36 = 0x41 constant IFT_V37 (line 671) | IFT_V37 = 0x78 constant IFT_VDSL (line 672) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 673) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 674) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 675) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 676) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 677) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 678) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 679) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 680) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 681) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 682) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 683) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 684) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 685) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 686) | IFT_X213 = 0x5d constant IFT_X25 (line 687) | IFT_X25 = 0x5 constant IFT_X25DDN (line 688) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 689) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 690) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 691) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 692) | IFT_XETHER = 0x1a constant IGNBRK (line 693) | IGNBRK = 0x1 constant IGNCR (line 694) | IGNCR = 0x80 constant IGNPAR (line 695) | IGNPAR = 0x4 constant IMAXBEL (line 696) | IMAXBEL = 0x2000 constant INLCR (line 697) | INLCR = 0x40 constant INPCK (line 698) | INPCK = 0x10 constant IN_CLASSA_HOST (line 699) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 700) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 701) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 702) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 703) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 704) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 705) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 706) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 707) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 708) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 709) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 710) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 711) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 712) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 713) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 714) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 715) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 716) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 717) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 718) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 719) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 720) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 721) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 722) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 723) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 724) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 725) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 726) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 727) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 728) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 729) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 730) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 731) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 732) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 733) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 734) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 735) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 736) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 737) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 738) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 739) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 740) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 741) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 742) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 743) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 744) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 745) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 747) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 748) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 749) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 750) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 751) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 752) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 753) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 754) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 755) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 756) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 757) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 758) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 759) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 760) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 761) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 762) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 763) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 764) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 765) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 766) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 767) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 768) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 769) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 770) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 771) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 772) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 773) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 774) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 775) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 776) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 777) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 778) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 779) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 780) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 781) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 782) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 783) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 784) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 785) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 786) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 787) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 788) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 789) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 790) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 791) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 792) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 793) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 794) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 795) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 796) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 797) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 798) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 799) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 800) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 801) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 802) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 803) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 804) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 805) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 806) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 807) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 808) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 809) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 810) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 811) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 812) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 813) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 814) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 815) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 816) | IP_DF = 0x4000 constant IP_DIVERTFL (line 817) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 818) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 819) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 820) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 821) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 822) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 823) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 824) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 825) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 826) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 827) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 828) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 829) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 830) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 831) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 832) | IP_MF = 0x2000 constant IP_MINTTL (line 833) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 834) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 835) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 836) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 837) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 838) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 839) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 840) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 841) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 842) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 843) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 844) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 845) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 846) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 847) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 848) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 849) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 850) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 851) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 852) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 853) | IP_RETOPTS = 0x8 constant IP_RF (line 854) | IP_RF = 0x8000 constant IP_RTABLE (line 855) | IP_RTABLE = 0x1021 constant IP_TOS (line 856) | IP_TOS = 0x3 constant IP_TTL (line 857) | IP_TTL = 0x4 constant ISIG (line 858) | ISIG = 0x80 constant ISTRIP (line 859) | ISTRIP = 0x20 constant IXANY (line 860) | IXANY = 0x800 constant IXOFF (line 861) | IXOFF = 0x400 constant IXON (line 862) | IXON = 0x200 constant LCNT_OVERLOAD_FLUSH (line 863) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 864) | LOCK_EX = 0x2 constant LOCK_NB (line 865) | LOCK_NB = 0x4 constant LOCK_SH (line 866) | LOCK_SH = 0x1 constant LOCK_UN (line 867) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 868) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 869) | MADV_FREE = 0x6 constant MADV_NORMAL (line 870) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 871) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 872) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 873) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 874) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 875) | MAP_ANON = 0x1000 constant MAP_COPY (line 876) | MAP_COPY = 0x4 constant MAP_FILE (line 877) | MAP_FILE = 0x0 constant MAP_FIXED (line 878) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 879) | MAP_FLAGMASK = 0x1ff7 constant MAP_HASSEMAPHORE (line 880) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 881) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 882) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DONATE_COPY (line 883) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 884) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 885) | MAP_INHERIT_SHARE = 0x0 constant MAP_NOEXTEND (line 886) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 887) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 888) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 889) | MAP_RENAME = 0x20 constant MAP_SHARED (line 890) | MAP_SHARED = 0x1 constant MAP_TRYFIXED (line 891) | MAP_TRYFIXED = 0x400 constant MCL_CURRENT (line 892) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 893) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 894) | MSG_BCAST = 0x100 constant MSG_CTRUNC (line 895) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 896) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 897) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 898) | MSG_EOR = 0x8 constant MSG_MCAST (line 899) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 900) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 901) | MSG_OOB = 0x1 constant MSG_PEEK (line 902) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 903) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 904) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 905) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 906) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 907) | MS_SYNC = 0x2 constant NAME_MAX (line 908) | NAME_MAX = 0xff constant NET_RT_DUMP (line 909) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 910) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 911) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 912) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 913) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 914) | NET_RT_TABLE = 0x5 constant NOFLSH (line 915) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 916) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 917) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 918) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 919) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 920) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 921) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 922) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 923) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 924) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 925) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 926) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 927) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 930) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 931) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 932) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 933) | NOTE_WRITE = 0x2 constant OCRNL (line 934) | OCRNL = 0x10 constant ONLCR (line 935) | ONLCR = 0x2 constant ONLRET (line 936) | ONLRET = 0x80 constant ONOCR (line 937) | ONOCR = 0x40 constant ONOEOT (line 938) | ONOEOT = 0x8 constant OPOST (line 939) | OPOST = 0x1 constant O_ACCMODE (line 940) | O_ACCMODE = 0x3 constant O_APPEND (line 941) | O_APPEND = 0x8 constant O_ASYNC (line 942) | O_ASYNC = 0x40 constant O_CLOEXEC (line 943) | O_CLOEXEC = 0x10000 constant O_CREAT (line 944) | O_CREAT = 0x200 constant O_DIRECTORY (line 945) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 946) | O_DSYNC = 0x80 constant O_EXCL (line 947) | O_EXCL = 0x800 constant O_EXLOCK (line 948) | O_EXLOCK = 0x20 constant O_FSYNC (line 949) | O_FSYNC = 0x80 constant O_NDELAY (line 950) | O_NDELAY = 0x4 constant O_NOCTTY (line 951) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 952) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 953) | O_NONBLOCK = 0x4 constant O_RDONLY (line 954) | O_RDONLY = 0x0 constant O_RDWR (line 955) | O_RDWR = 0x2 constant O_RSYNC (line 956) | O_RSYNC = 0x80 constant O_SHLOCK (line 957) | O_SHLOCK = 0x10 constant O_SYNC (line 958) | O_SYNC = 0x80 constant O_TRUNC (line 959) | O_TRUNC = 0x400 constant O_WRONLY (line 960) | O_WRONLY = 0x1 constant PARENB (line 961) | PARENB = 0x1000 constant PARMRK (line 962) | PARMRK = 0x8 constant PARODD (line 963) | PARODD = 0x2000 constant PENDIN (line 964) | PENDIN = 0x20000000 constant PF_FLUSH (line 965) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 966) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 967) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 968) | PRIO_USER = 0x2 constant PROT_EXEC (line 969) | PROT_EXEC = 0x4 constant PROT_NONE (line 970) | PROT_NONE = 0x0 constant PROT_READ (line 971) | PROT_READ = 0x1 constant PROT_WRITE (line 972) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 973) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 974) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 975) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 976) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 977) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 978) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 979) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 980) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 981) | RTAX_BRD = 0x7 constant RTAX_DST (line 982) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 983) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 984) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 985) | RTAX_IFA = 0x5 constant RTAX_IFP (line 986) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 987) | RTAX_LABEL = 0xa constant RTAX_MAX (line 988) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 989) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 990) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 991) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 992) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 993) | RTA_BRD = 0x80 constant RTA_DST (line 994) | RTA_DST = 0x1 constant RTA_GATEWAY (line 995) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 996) | RTA_GENMASK = 0x8 constant RTA_IFA (line 997) | RTA_IFA = 0x20 constant RTA_IFP (line 998) | RTA_IFP = 0x10 constant RTA_LABEL (line 999) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1000) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1001) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1002) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1003) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1004) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1005) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1006) | RTF_CLONING = 0x100 constant RTF_DONE (line 1007) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1008) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1009) | RTF_FMASK = 0x10f808 constant RTF_GATEWAY (line 1010) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1011) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1012) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1013) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1014) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1015) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1016) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1017) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1018) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1019) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1020) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1021) | RTF_REJECT = 0x8 constant RTF_SOURCE (line 1022) | RTF_SOURCE = 0x20000 constant RTF_STATIC (line 1023) | RTF_STATIC = 0x800 constant RTF_TUNNEL (line 1024) | RTF_TUNNEL = 0x100000 constant RTF_UP (line 1025) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1026) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1027) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1028) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1029) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1030) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1031) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1032) | RTM_DESYNC = 0x10 constant RTM_GET (line 1033) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1034) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1035) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1036) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1037) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1038) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1039) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1040) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1041) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1042) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1043) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1044) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1045) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1046) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1047) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1048) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1049) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1050) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1051) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1052) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_MAX (line 1053) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1054) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1055) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1056) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1057) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1058) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1059) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1060) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1061) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1062) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1063) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1064) | SIOCAIFGROUP = 0x80286987 constant SIOCALIFADDR (line 1065) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1066) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1067) | SIOCBRDGADD = 0x8058693c constant SIOCBRDGADDS (line 1068) | SIOCBRDGADDS = 0x80586941 constant SIOCBRDGARL (line 1069) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1070) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1071) | SIOCBRDGDEL = 0x8058693d constant SIOCBRDGDELS (line 1072) | SIOCBRDGDELS = 0x80586942 constant SIOCBRDGFLUSH (line 1073) | SIOCBRDGFLUSH = 0x80586948 constant SIOCBRDGFRL (line 1074) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1075) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1076) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1077) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1078) | SIOCBRDGGIFFLGS = 0xc058693e constant SIOCBRDGGMA (line 1079) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1080) | SIOCBRDGGPARAM = 0xc0406958 constant SIOCBRDGGPRI (line 1081) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1082) | SIOCBRDGGRL = 0xc030694f constant SIOCBRDGGSIFS (line 1083) | SIOCBRDGGSIFS = 0xc058693c constant SIOCBRDGGTO (line 1084) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1085) | SIOCBRDGIFS = 0xc0586942 constant SIOCBRDGRTS (line 1086) | SIOCBRDGRTS = 0xc0206943 constant SIOCBRDGSADDR (line 1087) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1088) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1089) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1090) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1091) | SIOCBRDGSIFCOST = 0x80586955 constant SIOCBRDGSIFFLGS (line 1092) | SIOCBRDGSIFFLGS = 0x8058693f constant SIOCBRDGSIFPRIO (line 1093) | SIOCBRDGSIFPRIO = 0x80586954 constant SIOCBRDGSMA (line 1094) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1095) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1096) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1097) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1098) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1099) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1100) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1101) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1102) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1103) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1104) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1105) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1106) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1107) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1108) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1109) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGETVLAN (line 1110) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1111) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1112) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1113) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1114) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1115) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1116) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1117) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1118) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1119) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1120) | SIOCGIFGATTR = 0xc028698b constant SIOCGIFGENERIC (line 1121) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1122) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1123) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFHARDMTU (line 1124) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1125) | SIOCGIFMEDIA = 0xc0306936 constant SIOCGIFMETRIC (line 1126) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1127) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1128) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1129) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1130) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1131) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1132) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1133) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFTIMESLOT (line 1134) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1135) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1136) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1137) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1138) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1139) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1140) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1141) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1142) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1143) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1144) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1145) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1146) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1147) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSETKALIVE (line 1148) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1149) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1150) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1151) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1152) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1153) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1154) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1155) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1156) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1157) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1158) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1159) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1160) | SIOCSIFGATTR = 0x8028698c constant SIOCSIFGENERIC (line 1161) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1162) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1163) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1164) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1165) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1166) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1167) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1168) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1169) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1170) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1171) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1172) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1173) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1174) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1175) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1176) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1177) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1178) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1179) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1180) | SIOCSVNETID = 0x802069a6 constant SOCK_DGRAM (line 1181) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 1182) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1183) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1184) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1185) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1186) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1187) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1188) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1189) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1190) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1191) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1192) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1193) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1194) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1195) | SO_LINGER = 0x80 constant SO_NETPROC (line 1196) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1197) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1198) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1199) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1200) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1201) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1202) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1203) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1204) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1205) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1206) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1207) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1208) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1209) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1210) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1211) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1212) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1213) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1214) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1215) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1216) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1217) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1218) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1219) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1220) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1221) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1222) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1223) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1224) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1225) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1226) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1227) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1228) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1229) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1230) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1231) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1232) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1233) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1234) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1235) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1236) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1237) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1238) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1239) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1240) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1241) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1242) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1243) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1244) | TIOCGTSTAMP = 0x4010745b constant TIOCGWINSZ (line 1245) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1246) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1247) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1248) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1249) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1250) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1251) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1252) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1253) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1254) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1255) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1256) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1257) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1258) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1259) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1260) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1261) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1262) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1263) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1264) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1265) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1266) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1267) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1268) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1269) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1270) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1271) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1272) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1273) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1274) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1275) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1276) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1277) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1278) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1279) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1280) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1281) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1282) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1283) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1284) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1285) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1286) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1287) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1288) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1289) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1290) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1291) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1292) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1293) | TOSTOP = 0x400000 constant VDISCARD (line 1294) | VDISCARD = 0xf constant VDSUSP (line 1295) | VDSUSP = 0xb constant VEOF (line 1296) | VEOF = 0x0 constant VEOL (line 1297) | VEOL = 0x1 constant VEOL2 (line 1298) | VEOL2 = 0x2 constant VERASE (line 1299) | VERASE = 0x3 constant VINTR (line 1300) | VINTR = 0x8 constant VKILL (line 1301) | VKILL = 0x5 constant VLNEXT (line 1302) | VLNEXT = 0xe constant VMIN (line 1303) | VMIN = 0x10 constant VQUIT (line 1304) | VQUIT = 0x9 constant VREPRINT (line 1305) | VREPRINT = 0x6 constant VSTART (line 1306) | VSTART = 0xc constant VSTATUS (line 1307) | VSTATUS = 0x12 constant VSTOP (line 1308) | VSTOP = 0xd constant VSUSP (line 1309) | VSUSP = 0xa constant VTIME (line 1310) | VTIME = 0x11 constant VWERASE (line 1311) | VWERASE = 0x4 constant WALTSIG (line 1312) | WALTSIG = 0x4 constant WCONTINUED (line 1313) | WCONTINUED = 0x8 constant WCOREFLAG (line 1314) | WCOREFLAG = 0x80 constant WNOHANG (line 1315) | WNOHANG = 0x1 constant WSTOPPED (line 1316) | WSTOPPED = 0x7f constant WUNTRACED (line 1317) | WUNTRACED = 0x2 constant E2BIG (line 1322) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1323) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1324) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1325) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1326) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1327) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1328) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1329) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1330) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1331) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1332) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1333) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1334) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1335) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1336) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1337) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1338) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1339) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1340) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1341) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1342) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1343) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1344) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1345) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1346) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1347) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1348) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1349) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1350) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1351) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1352) | EINVAL = syscall.Errno(0x16) constant EIO (line 1353) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1354) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1355) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1356) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1357) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1358) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1359) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1360) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1361) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1362) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1363) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1364) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1365) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1366) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1367) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1368) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1369) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1370) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1371) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1372) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1373) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1374) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1375) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1376) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1377) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1378) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1379) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1380) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1381) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1382) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1383) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1384) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1385) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1386) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1387) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1388) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1389) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1390) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1391) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1392) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1393) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1394) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1395) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1396) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1397) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1398) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1399) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1400) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1401) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1402) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1403) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1404) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1405) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1406) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1407) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1408) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1409) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1410) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1411) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1412) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1413) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1414) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1419) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1420) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1421) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1422) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1423) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1424) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1425) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1426) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1427) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1428) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1429) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1430) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1431) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1432) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1433) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1434) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1435) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1436) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1437) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1438) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1439) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1440) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1441) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1442) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1443) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1444) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1445) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1446) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1447) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1448) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1449) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1450) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1451) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 15) | AF_BLUETOOTH = 0x20 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_CNT (line 18) | AF_CNT = 0x15 constant AF_COIP (line 19) | AF_COIP = 0x14 constant AF_DATAKIT (line 20) | AF_DATAKIT = 0x9 constant AF_DECnet (line 21) | AF_DECnet = 0xc constant AF_DLI (line 22) | AF_DLI = 0xd constant AF_E164 (line 23) | AF_E164 = 0x1a constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_ENCAP (line 25) | AF_ENCAP = 0x1c constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x18 constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1a constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_KEY (line 33) | AF_KEY = 0x1e constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_ROUTE (line 43) | AF_ROUTE = 0x11 constant AF_SIP (line 44) | AF_SIP = 0x1d constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ETHER (line 48) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 49) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 50) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 51) | ARPHRD_IEEE802 = 0x6 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 77) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 78) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 79) | BIOCGDLTLIST = 0xc008427b constant BIOCGETIF (line 80) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 81) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 82) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 83) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 84) | BIOCGRTIMEOUT = 0x400c426e constant BIOCGSTATS (line 85) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 86) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 87) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 88) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 89) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 90) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 91) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 92) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 93) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 94) | BIOCSETWF = 0x80084277 constant BIOCSFILDROP (line 95) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 96) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 97) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 98) | BIOCSRTIMEOUT = 0x800c426d constant BIOCVERSION (line 99) | BIOCVERSION = 0x40044271 constant BPF_A (line 100) | BPF_A = 0x10 constant BPF_ABS (line 101) | BPF_ABS = 0x20 constant BPF_ADD (line 102) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 103) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 104) | BPF_ALU = 0x4 constant BPF_AND (line 105) | BPF_AND = 0x50 constant BPF_B (line 106) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 107) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 108) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 109) | BPF_DIV = 0x30 constant BPF_H (line 110) | BPF_H = 0x8 constant BPF_IMM (line 111) | BPF_IMM = 0x0 constant BPF_IND (line 112) | BPF_IND = 0x40 constant BPF_JA (line 113) | BPF_JA = 0x0 constant BPF_JEQ (line 114) | BPF_JEQ = 0x10 constant BPF_JGE (line 115) | BPF_JGE = 0x30 constant BPF_JGT (line 116) | BPF_JGT = 0x20 constant BPF_JMP (line 117) | BPF_JMP = 0x5 constant BPF_JSET (line 118) | BPF_JSET = 0x40 constant BPF_K (line 119) | BPF_K = 0x0 constant BPF_LD (line 120) | BPF_LD = 0x0 constant BPF_LDX (line 121) | BPF_LDX = 0x1 constant BPF_LEN (line 122) | BPF_LEN = 0x80 constant BPF_LSH (line 123) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 124) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 125) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 126) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 127) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 128) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 129) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 130) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 131) | BPF_MISC = 0x7 constant BPF_MSH (line 132) | BPF_MSH = 0xa0 constant BPF_MUL (line 133) | BPF_MUL = 0x20 constant BPF_NEG (line 134) | BPF_NEG = 0x80 constant BPF_OR (line 135) | BPF_OR = 0x40 constant BPF_RELEASE (line 136) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 137) | BPF_RET = 0x6 constant BPF_RSH (line 138) | BPF_RSH = 0x70 constant BPF_ST (line 139) | BPF_ST = 0x2 constant BPF_STX (line 140) | BPF_STX = 0x3 constant BPF_SUB (line 141) | BPF_SUB = 0x10 constant BPF_TAX (line 142) | BPF_TAX = 0x0 constant BPF_TXA (line 143) | BPF_TXA = 0x80 constant BPF_W (line 144) | BPF_W = 0x0 constant BPF_X (line 145) | BPF_X = 0x8 constant BRKINT (line 146) | BRKINT = 0x2 constant CFLUSH (line 147) | CFLUSH = 0xf constant CLOCAL (line 148) | CLOCAL = 0x8000 constant CREAD (line 149) | CREAD = 0x800 constant CS5 (line 150) | CS5 = 0x0 constant CS6 (line 151) | CS6 = 0x100 constant CS7 (line 152) | CS7 = 0x200 constant CS8 (line 153) | CS8 = 0x300 constant CSIZE (line 154) | CSIZE = 0x300 constant CSTART (line 155) | CSTART = 0x11 constant CSTATUS (line 156) | CSTATUS = 0xff constant CSTOP (line 157) | CSTOP = 0x13 constant CSTOPB (line 158) | CSTOPB = 0x400 constant CSUSP (line 159) | CSUSP = 0x1a constant CTL_MAXNAME (line 160) | CTL_MAXNAME = 0xc constant CTL_NET (line 161) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 162) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 163) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 165) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 166) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 167) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 168) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 169) | DLT_EN3MB = 0x2 constant DLT_ENC (line 170) | DLT_ENC = 0xd constant DLT_FDDI (line 171) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 172) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 173) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 174) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 175) | DLT_LOOP = 0xc constant DLT_MPLS (line 176) | DLT_MPLS = 0xdb constant DLT_NULL (line 177) | DLT_NULL = 0x0 constant DLT_PFLOG (line 178) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 179) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 180) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 181) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 182) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 183) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 184) | DLT_PRONET = 0x4 constant DLT_RAW (line 185) | DLT_RAW = 0xe constant DLT_SLIP (line 186) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 187) | DLT_SLIP_BSDOS = 0xf constant DT_BLK (line 188) | DT_BLK = 0x6 constant DT_CHR (line 189) | DT_CHR = 0x2 constant DT_DIR (line 190) | DT_DIR = 0x4 constant DT_FIFO (line 191) | DT_FIFO = 0x1 constant DT_LNK (line 192) | DT_LNK = 0xa constant DT_REG (line 193) | DT_REG = 0x8 constant DT_SOCK (line 194) | DT_SOCK = 0xc constant DT_UNKNOWN (line 195) | DT_UNKNOWN = 0x0 constant ECHO (line 196) | ECHO = 0x8 constant ECHOCTL (line 197) | ECHOCTL = 0x40 constant ECHOE (line 198) | ECHOE = 0x2 constant ECHOK (line 199) | ECHOK = 0x4 constant ECHOKE (line 200) | ECHOKE = 0x1 constant ECHONL (line 201) | ECHONL = 0x10 constant ECHOPRT (line 202) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 203) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 204) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 205) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 206) | ENDRUNDISC = 0x9 constant ETHERMIN (line 207) | ETHERMIN = 0x2e constant ETHERMTU (line 208) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 209) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 210) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 211) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 212) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 213) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 214) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 215) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 216) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 217) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 218) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 219) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 220) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 221) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 222) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 223) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 224) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 225) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 226) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 227) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 228) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 229) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 230) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 231) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 232) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 233) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 234) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 235) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 236) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 237) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 238) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 239) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 240) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 241) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 242) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 243) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 244) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 245) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 246) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 247) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 248) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 249) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 250) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 251) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 252) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 253) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 254) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 255) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 256) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 257) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 258) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 259) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 260) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 261) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 262) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 263) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 264) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 265) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 266) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 267) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 268) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 269) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 270) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 271) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 272) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 273) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 274) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 275) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 276) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 277) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 278) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 279) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 280) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 281) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 282) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 283) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 284) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 285) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 286) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 287) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 288) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 289) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 290) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 291) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 292) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 293) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 294) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 295) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 296) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 297) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 298) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 299) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 300) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 301) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 302) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 303) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 304) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 305) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 306) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 307) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 308) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 309) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 310) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 311) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 312) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 313) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 314) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 315) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 316) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 317) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 318) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 319) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 320) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 321) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 322) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 323) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 324) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 325) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 326) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 327) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 328) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 329) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 330) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 331) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 332) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 333) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 334) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 335) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 336) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 337) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 338) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 339) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 340) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 341) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 342) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 343) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 344) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 345) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 346) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 347) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 348) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 349) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 350) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 351) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 352) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 353) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 354) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 355) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 356) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 357) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 358) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 359) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 360) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 361) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 362) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 363) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 364) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 365) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 366) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 367) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 368) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 369) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 370) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 371) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 372) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 373) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 374) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 375) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 376) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 377) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 378) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 379) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 380) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 381) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 382) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 383) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 384) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 385) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 386) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 387) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 388) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 389) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 390) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 391) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 392) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 393) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 394) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 395) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 396) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 397) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 398) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 399) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 400) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 401) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 402) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 403) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 404) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 405) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 406) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 407) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 408) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 409) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 410) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 411) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 412) | EVFILT_WRITE = -0x2 constant EV_ADD (line 413) | EV_ADD = 0x1 constant EV_CLEAR (line 414) | EV_CLEAR = 0x20 constant EV_DELETE (line 415) | EV_DELETE = 0x2 constant EV_DISABLE (line 416) | EV_DISABLE = 0x8 constant EV_ENABLE (line 417) | EV_ENABLE = 0x4 constant EV_EOF (line 418) | EV_EOF = 0x8000 constant EV_ERROR (line 419) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 420) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 421) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 422) | EV_SYSFLAGS = 0xf000 constant EXTA (line 423) | EXTA = 0x4b00 constant EXTB (line 424) | EXTB = 0x9600 constant EXTPROC (line 425) | EXTPROC = 0x800 constant FD_CLOEXEC (line 426) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 427) | FD_SETSIZE = 0x400 constant FLUSHO (line 428) | FLUSHO = 0x800000 constant F_DUPFD (line 429) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 430) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 431) | F_GETFD = 0x1 constant F_GETFL (line 432) | F_GETFL = 0x3 constant F_GETLK (line 433) | F_GETLK = 0x7 constant F_GETOWN (line 434) | F_GETOWN = 0x5 constant F_RDLCK (line 435) | F_RDLCK = 0x1 constant F_SETFD (line 436) | F_SETFD = 0x2 constant F_SETFL (line 437) | F_SETFL = 0x4 constant F_SETLK (line 438) | F_SETLK = 0x8 constant F_SETLKW (line 439) | F_SETLKW = 0x9 constant F_SETOWN (line 440) | F_SETOWN = 0x6 constant F_UNLCK (line 441) | F_UNLCK = 0x2 constant F_WRLCK (line 442) | F_WRLCK = 0x3 constant HUPCL (line 443) | HUPCL = 0x4000 constant ICANON (line 444) | ICANON = 0x100 constant ICMP6_FILTER (line 445) | ICMP6_FILTER = 0x12 constant ICRNL (line 446) | ICRNL = 0x100 constant IEXTEN (line 447) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 448) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 449) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 450) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 451) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 452) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 453) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 454) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 455) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 456) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 457) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 458) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 459) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 460) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 461) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 462) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 463) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 464) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 465) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 466) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 467) | IFF_UP = 0x1 constant IFNAMSIZ (line 468) | IFNAMSIZ = 0x10 constant IFT_1822 (line 469) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 470) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 471) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 472) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 473) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 474) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 475) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 476) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 477) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 478) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 479) | IFT_ASYNC = 0x54 constant IFT_ATM (line 480) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 481) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 482) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 483) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 484) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 485) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 486) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 487) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 488) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 489) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 490) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 491) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 492) | IFT_BSC = 0x53 constant IFT_CARP (line 493) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 494) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 495) | IFT_CEPT = 0x13 constant IFT_CES (line 496) | IFT_CES = 0x85 constant IFT_CHANNEL (line 497) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 498) | IFT_CNR = 0x55 constant IFT_COFFEE (line 499) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 500) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 501) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 502) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 503) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 504) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 505) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 506) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 507) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 508) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 509) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 510) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 511) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 512) | IFT_DS3 = 0x1e constant IFT_DTM (line 513) | IFT_DTM = 0x8c constant IFT_DUMMY (line 514) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 515) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 516) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 517) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 518) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 519) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 520) | IFT_ECONET = 0xce constant IFT_ENC (line 521) | IFT_ENC = 0xf4 constant IFT_EON (line 522) | IFT_EON = 0x19 constant IFT_EPLRS (line 523) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 524) | IFT_ESCON = 0x49 constant IFT_ETHER (line 525) | IFT_ETHER = 0x6 constant IFT_FAITH (line 526) | IFT_FAITH = 0xf3 constant IFT_FAST (line 527) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 528) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 529) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 530) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 531) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 532) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 533) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 534) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 535) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 536) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 537) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 538) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 539) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 540) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 541) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 542) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 543) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 544) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 545) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 546) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 547) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 548) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 549) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 550) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 551) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 552) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 553) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 554) | IFT_HSSI = 0x2e constant IFT_HY (line 555) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 556) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 557) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 558) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 559) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 560) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 561) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 562) | IFT_IFGSN = 0x91 constant IFT_IMT (line 563) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 564) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 565) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 566) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 567) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 568) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 569) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 570) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 571) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 572) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 573) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 574) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 575) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 576) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 577) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 578) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 579) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 580) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 581) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 582) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 583) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 584) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 585) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 586) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 587) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 588) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 589) | IFT_LAPB = 0x10 constant IFT_LAPD (line 590) | IFT_LAPD = 0x4d constant IFT_LAPF (line 591) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 592) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 593) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 594) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 595) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 596) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 597) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 598) | IFT_MODEM = 0x30 constant IFT_MPC (line 599) | IFT_MPC = 0x71 constant IFT_MPLS (line 600) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 601) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 602) | IFT_MSDSL = 0x8f constant IFT_MVL (line 603) | IFT_MVL = 0xbf constant IFT_MYRINET (line 604) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 605) | IFT_NFAS = 0xaf constant IFT_NSIP (line 606) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 607) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 608) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 609) | IFT_OTHER = 0x1 constant IFT_P10 (line 610) | IFT_P10 = 0xc constant IFT_P80 (line 611) | IFT_P80 = 0xd constant IFT_PARA (line 612) | IFT_PARA = 0x22 constant IFT_PFLOG (line 613) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 614) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 615) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 616) | IFT_PLC = 0xae constant IFT_PON155 (line 617) | IFT_PON155 = 0xcf constant IFT_PON622 (line 618) | IFT_PON622 = 0xd0 constant IFT_POS (line 619) | IFT_POS = 0xab constant IFT_PPP (line 620) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 621) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 622) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 623) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 624) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 625) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 626) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 627) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 628) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 629) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 630) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 631) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 632) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 633) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 634) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 635) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 636) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 637) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 638) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 639) | IFT_RS232 = 0x21 constant IFT_RSRB (line 640) | IFT_RSRB = 0x4f constant IFT_SDLC (line 641) | IFT_SDLC = 0x11 constant IFT_SDSL (line 642) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 643) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 644) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 645) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 646) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 647) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 648) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 649) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 650) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 651) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 652) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 653) | IFT_SONETVT = 0x33 constant IFT_SRP (line 654) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 655) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 656) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 657) | IFT_STARLAN = 0xb constant IFT_T1 (line 658) | IFT_T1 = 0x12 constant IFT_TDLC (line 659) | IFT_TDLC = 0x74 constant IFT_TELINK (line 660) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 661) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 662) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 663) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 664) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 665) | IFT_ULTRA = 0x1d constant IFT_USB (line 666) | IFT_USB = 0xa0 constant IFT_V11 (line 667) | IFT_V11 = 0x40 constant IFT_V35 (line 668) | IFT_V35 = 0x2d constant IFT_V36 (line 669) | IFT_V36 = 0x41 constant IFT_V37 (line 670) | IFT_V37 = 0x78 constant IFT_VDSL (line 671) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 672) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 673) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 674) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 675) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 676) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 677) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 678) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 679) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 680) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 681) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 682) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 683) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 684) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 685) | IFT_X213 = 0x5d constant IFT_X25 (line 686) | IFT_X25 = 0x5 constant IFT_X25DDN (line 687) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 688) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 689) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 690) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 691) | IFT_XETHER = 0x1a constant IGNBRK (line 692) | IGNBRK = 0x1 constant IGNCR (line 693) | IGNCR = 0x80 constant IGNPAR (line 694) | IGNPAR = 0x4 constant IMAXBEL (line 695) | IMAXBEL = 0x2000 constant INLCR (line 696) | INLCR = 0x40 constant INPCK (line 697) | INPCK = 0x10 constant IN_CLASSA_HOST (line 698) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 699) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 700) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 701) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 702) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 703) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 704) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 705) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 706) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 707) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 708) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 709) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 710) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 711) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 712) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 713) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 714) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 715) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 716) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 717) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 718) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 719) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 720) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 721) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 722) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 723) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 724) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 725) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 726) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 727) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 728) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 729) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 730) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 731) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 732) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 733) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 734) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 735) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 736) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 737) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 738) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 739) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 740) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 741) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 742) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 743) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 744) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 745) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 746) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 747) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 748) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 749) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 750) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 751) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 752) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 753) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 754) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 755) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 756) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 757) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 758) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 759) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 760) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 761) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 762) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 763) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 764) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 765) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 766) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 767) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 768) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 769) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 770) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 771) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 772) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 773) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 774) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 775) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 776) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 777) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 778) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 779) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 780) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 781) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 782) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 783) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 784) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 785) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 786) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 787) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 788) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 789) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 790) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 791) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 792) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 793) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 794) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 795) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 796) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 797) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 798) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 799) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 800) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 801) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 802) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 803) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 804) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 805) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 806) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 807) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 808) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 809) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 810) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 811) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 812) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 813) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 814) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 815) | IP_DF = 0x4000 constant IP_DIVERTFL (line 816) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 817) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 818) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 819) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 820) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 821) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 822) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 823) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 824) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 825) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 826) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 827) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 828) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 829) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 830) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 831) | IP_MF = 0x2000 constant IP_MINTTL (line 832) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 833) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 834) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 835) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 836) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 837) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 838) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 839) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 840) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 841) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 842) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 843) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 844) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 845) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 846) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 847) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 848) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 849) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 850) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 851) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 852) | IP_RETOPTS = 0x8 constant IP_RF (line 853) | IP_RF = 0x8000 constant IP_RTABLE (line 854) | IP_RTABLE = 0x1021 constant IP_TOS (line 855) | IP_TOS = 0x3 constant IP_TTL (line 856) | IP_TTL = 0x4 constant ISIG (line 857) | ISIG = 0x80 constant ISTRIP (line 858) | ISTRIP = 0x20 constant IXANY (line 859) | IXANY = 0x800 constant IXOFF (line 860) | IXOFF = 0x400 constant IXON (line 861) | IXON = 0x200 constant LCNT_OVERLOAD_FLUSH (line 862) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 863) | LOCK_EX = 0x2 constant LOCK_NB (line 864) | LOCK_NB = 0x4 constant LOCK_SH (line 865) | LOCK_SH = 0x1 constant LOCK_UN (line 866) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 867) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 868) | MADV_FREE = 0x6 constant MADV_NORMAL (line 869) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 870) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 871) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 872) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 873) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 874) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 875) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 876) | MAP_COPY = 0x2 constant MAP_FILE (line 877) | MAP_FILE = 0x0 constant MAP_FIXED (line 878) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 879) | MAP_FLAGMASK = 0x3ff7 constant MAP_HASSEMAPHORE (line 880) | MAP_HASSEMAPHORE = 0x0 constant MAP_INHERIT (line 881) | MAP_INHERIT = 0x0 constant MAP_INHERIT_COPY (line 882) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_NONE (line 883) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 884) | MAP_INHERIT_SHARE = 0x0 constant MAP_INHERIT_ZERO (line 885) | MAP_INHERIT_ZERO = 0x3 constant MAP_NOEXTEND (line 886) | MAP_NOEXTEND = 0x0 constant MAP_NORESERVE (line 887) | MAP_NORESERVE = 0x0 constant MAP_PRIVATE (line 888) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 889) | MAP_RENAME = 0x0 constant MAP_SHARED (line 890) | MAP_SHARED = 0x1 constant MAP_TRYFIXED (line 891) | MAP_TRYFIXED = 0x0 constant MCL_CURRENT (line 892) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 893) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 894) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 895) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CTRUNC (line 896) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 897) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 898) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 899) | MSG_EOR = 0x8 constant MSG_MCAST (line 900) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 901) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 902) | MSG_OOB = 0x1 constant MSG_PEEK (line 903) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 904) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 905) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 906) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 907) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 908) | MS_SYNC = 0x2 constant NAME_MAX (line 909) | NAME_MAX = 0xff constant NET_RT_DUMP (line 910) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 911) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 912) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 913) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 914) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 915) | NET_RT_TABLE = 0x5 constant NOFLSH (line 916) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 917) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 918) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 919) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 920) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 921) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 922) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 923) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 924) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 925) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 926) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 927) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 928) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 929) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 930) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 931) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 932) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 933) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 934) | NOTE_WRITE = 0x2 constant OCRNL (line 935) | OCRNL = 0x10 constant ONLCR (line 936) | ONLCR = 0x2 constant ONLRET (line 937) | ONLRET = 0x80 constant ONOCR (line 938) | ONOCR = 0x40 constant ONOEOT (line 939) | ONOEOT = 0x8 constant OPOST (line 940) | OPOST = 0x1 constant O_ACCMODE (line 941) | O_ACCMODE = 0x3 constant O_APPEND (line 942) | O_APPEND = 0x8 constant O_ASYNC (line 943) | O_ASYNC = 0x40 constant O_CLOEXEC (line 944) | O_CLOEXEC = 0x10000 constant O_CREAT (line 945) | O_CREAT = 0x200 constant O_DIRECTORY (line 946) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 947) | O_DSYNC = 0x80 constant O_EXCL (line 948) | O_EXCL = 0x800 constant O_EXLOCK (line 949) | O_EXLOCK = 0x20 constant O_FSYNC (line 950) | O_FSYNC = 0x80 constant O_NDELAY (line 951) | O_NDELAY = 0x4 constant O_NOCTTY (line 952) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 953) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 954) | O_NONBLOCK = 0x4 constant O_RDONLY (line 955) | O_RDONLY = 0x0 constant O_RDWR (line 956) | O_RDWR = 0x2 constant O_RSYNC (line 957) | O_RSYNC = 0x80 constant O_SHLOCK (line 958) | O_SHLOCK = 0x10 constant O_SYNC (line 959) | O_SYNC = 0x80 constant O_TRUNC (line 960) | O_TRUNC = 0x400 constant O_WRONLY (line 961) | O_WRONLY = 0x1 constant PARENB (line 962) | PARENB = 0x1000 constant PARMRK (line 963) | PARMRK = 0x8 constant PARODD (line 964) | PARODD = 0x2000 constant PENDIN (line 965) | PENDIN = 0x20000000 constant PF_FLUSH (line 966) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 967) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 968) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 969) | PRIO_USER = 0x2 constant PROT_EXEC (line 970) | PROT_EXEC = 0x4 constant PROT_NONE (line 971) | PROT_NONE = 0x0 constant PROT_READ (line 972) | PROT_READ = 0x1 constant PROT_WRITE (line 973) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 974) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 975) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 976) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 977) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 978) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 979) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 980) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 981) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 982) | RTAX_BRD = 0x7 constant RTAX_DST (line 983) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 984) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 985) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 986) | RTAX_IFA = 0x5 constant RTAX_IFP (line 987) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 988) | RTAX_LABEL = 0xa constant RTAX_MAX (line 989) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 990) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 991) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 992) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 993) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 994) | RTA_BRD = 0x80 constant RTA_DST (line 995) | RTA_DST = 0x1 constant RTA_GATEWAY (line 996) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 997) | RTA_GENMASK = 0x8 constant RTA_IFA (line 998) | RTA_IFA = 0x20 constant RTA_IFP (line 999) | RTA_IFP = 0x10 constant RTA_LABEL (line 1000) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1001) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1002) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1003) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1004) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1005) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1006) | RTF_BROADCAST = 0x400000 constant RTF_CLONED (line 1007) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1008) | RTF_CLONING = 0x100 constant RTF_DONE (line 1009) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1010) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1011) | RTF_FMASK = 0x70f808 constant RTF_GATEWAY (line 1012) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1013) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1014) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1015) | RTF_LOCAL = 0x200000 constant RTF_MASK (line 1016) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1017) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1018) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1019) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1020) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1021) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1022) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1023) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1024) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1025) | RTF_STATIC = 0x800 constant RTF_UP (line 1026) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1027) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1028) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1029) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1030) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1031) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1032) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1033) | RTM_DESYNC = 0x10 constant RTM_GET (line 1034) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1035) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1036) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1037) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1038) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1039) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1040) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1041) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1042) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1043) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1044) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1045) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1046) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1047) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1048) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1049) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1050) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1051) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1052) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1053) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_MAX (line 1054) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1055) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1056) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1057) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1058) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1059) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1060) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1061) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1062) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1063) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1064) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1065) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1066) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1067) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1068) | SIOCBRDGADD = 0x8054693c constant SIOCBRDGADDS (line 1069) | SIOCBRDGADDS = 0x80546941 constant SIOCBRDGARL (line 1070) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1071) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1072) | SIOCBRDGDEL = 0x8054693d constant SIOCBRDGDELS (line 1073) | SIOCBRDGDELS = 0x80546942 constant SIOCBRDGFLUSH (line 1074) | SIOCBRDGFLUSH = 0x80546948 constant SIOCBRDGFRL (line 1075) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1076) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1077) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1078) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1079) | SIOCBRDGGIFFLGS = 0xc054693e constant SIOCBRDGGMA (line 1080) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1081) | SIOCBRDGGPARAM = 0xc03c6958 constant SIOCBRDGGPRI (line 1082) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1083) | SIOCBRDGGRL = 0xc028694f constant SIOCBRDGGSIFS (line 1084) | SIOCBRDGGSIFS = 0xc054693c constant SIOCBRDGGTO (line 1085) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1086) | SIOCBRDGIFS = 0xc0546942 constant SIOCBRDGRTS (line 1087) | SIOCBRDGRTS = 0xc0186943 constant SIOCBRDGSADDR (line 1088) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1089) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1090) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1091) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1092) | SIOCBRDGSIFCOST = 0x80546955 constant SIOCBRDGSIFFLGS (line 1093) | SIOCBRDGSIFFLGS = 0x8054693f constant SIOCBRDGSIFPRIO (line 1094) | SIOCBRDGSIFPRIO = 0x80546954 constant SIOCBRDGSMA (line 1095) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1096) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1097) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1098) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1099) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1100) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1101) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1102) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1103) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1104) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1105) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1106) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1107) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1108) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1109) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1110) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGETVLAN (line 1111) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1112) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1113) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1115) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1116) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDATA (line 1117) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1118) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1119) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1120) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1121) | SIOCGIFGATTR = 0xc024698b constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1123) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1124) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFHARDMTU (line 1125) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1126) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1127) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1128) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1129) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1130) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1131) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1132) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1133) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1134) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFRXR (line 1135) | SIOCGIFRXR = 0x802069aa constant SIOCGIFTIMESLOT (line 1136) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1137) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1138) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1139) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1140) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1141) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1142) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1143) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1144) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1145) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1146) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1147) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1148) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1149) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSETKALIVE (line 1150) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1151) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1152) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1153) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1154) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1155) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1156) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1157) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1158) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1159) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1160) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1161) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1162) | SIOCSIFGATTR = 0x8024698c constant SIOCSIFGENERIC (line 1163) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1164) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1165) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1166) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1167) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1168) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1169) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1170) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1171) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1172) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1173) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1174) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1175) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1176) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1177) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1178) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1179) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1180) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1181) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1182) | SIOCSVNETID = 0x802069a6 constant SOCK_CLOEXEC (line 1183) | SOCK_CLOEXEC = 0x8000 constant SOCK_DGRAM (line 1184) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1185) | SOCK_NONBLOCK = 0x4000 constant SOCK_RAW (line 1186) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1187) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1188) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1189) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1190) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1191) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1192) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1193) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1194) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1195) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1196) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1197) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1198) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1199) | SO_LINGER = 0x80 constant SO_NETPROC (line 1200) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1201) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1202) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1203) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1204) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1205) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1206) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1207) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1208) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1209) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1210) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1211) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1212) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1213) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1214) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1215) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1216) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1217) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1218) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1219) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1220) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1221) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1222) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1223) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1224) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1225) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1226) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1227) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1228) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1229) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1230) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1231) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1232) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1233) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1234) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1235) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1236) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1237) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1238) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1239) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1240) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1241) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1242) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1243) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1244) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1245) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1246) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1247) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1248) | TIOCGTSTAMP = 0x400c745b constant TIOCGWINSZ (line 1249) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1250) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1251) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1252) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1253) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1254) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1255) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1256) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1257) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1258) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1259) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1260) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1261) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1262) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1263) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1264) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1265) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1266) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1267) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1268) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1269) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1270) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1271) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1272) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1273) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1274) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1275) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1276) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1277) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1278) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1279) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1280) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1281) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1282) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1283) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1284) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1285) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1286) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1287) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1288) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1289) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1290) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1291) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1292) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1293) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1294) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1295) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1296) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1297) | TOSTOP = 0x400000 constant VDISCARD (line 1298) | VDISCARD = 0xf constant VDSUSP (line 1299) | VDSUSP = 0xb constant VEOF (line 1300) | VEOF = 0x0 constant VEOL (line 1301) | VEOL = 0x1 constant VEOL2 (line 1302) | VEOL2 = 0x2 constant VERASE (line 1303) | VERASE = 0x3 constant VINTR (line 1304) | VINTR = 0x8 constant VKILL (line 1305) | VKILL = 0x5 constant VLNEXT (line 1306) | VLNEXT = 0xe constant VMIN (line 1307) | VMIN = 0x10 constant VQUIT (line 1308) | VQUIT = 0x9 constant VREPRINT (line 1309) | VREPRINT = 0x6 constant VSTART (line 1310) | VSTART = 0xc constant VSTATUS (line 1311) | VSTATUS = 0x12 constant VSTOP (line 1312) | VSTOP = 0xd constant VSUSP (line 1313) | VSUSP = 0xa constant VTIME (line 1314) | VTIME = 0x11 constant VWERASE (line 1315) | VWERASE = 0x4 constant WALTSIG (line 1316) | WALTSIG = 0x4 constant WCONTINUED (line 1317) | WCONTINUED = 0x8 constant WCOREFLAG (line 1318) | WCOREFLAG = 0x80 constant WNOHANG (line 1319) | WNOHANG = 0x1 constant WUNTRACED (line 1320) | WUNTRACED = 0x2 constant E2BIG (line 1325) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1326) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1327) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1328) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1329) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1330) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1331) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1332) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1333) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1334) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1335) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1336) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1337) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1338) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1339) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1340) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1341) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1342) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1343) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1344) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1345) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1346) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1347) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1348) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1349) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1350) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1351) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1352) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1353) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1354) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1355) | EINVAL = syscall.Errno(0x16) constant EIO (line 1356) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1357) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1358) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1359) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1360) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1361) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1362) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1363) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1364) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1365) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1366) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1367) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1368) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1369) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1370) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1371) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1372) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1373) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1374) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1375) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1376) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1377) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1378) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1379) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1380) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1381) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1382) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1383) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1384) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1385) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1386) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1387) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1388) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1389) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1390) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1391) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1392) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1393) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1394) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1395) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1396) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1397) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1398) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1399) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1400) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1401) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1402) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1403) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1404) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1405) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1406) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1407) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1408) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1409) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1410) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1411) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1412) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1413) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1414) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1415) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1416) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1417) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1422) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1423) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1424) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1425) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1426) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1427) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1428) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1429) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1430) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1431) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1432) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1433) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1434) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1435) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1436) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1437) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1438) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1439) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1440) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1441) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1442) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1443) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1444) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1445) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1446) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1447) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1448) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1449) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1450) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1451) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1452) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1453) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1454) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go constant AF_802 (line 14) | AF_802 = 0x12 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_DATAKIT (line 18) | AF_DATAKIT = 0x9 constant AF_DECnet (line 19) | AF_DECnet = 0xc constant AF_DLI (line 20) | AF_DLI = 0xd constant AF_ECMA (line 21) | AF_ECMA = 0x8 constant AF_FILE (line 22) | AF_FILE = 0x1 constant AF_GOSIP (line 23) | AF_GOSIP = 0x16 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IMPLINK (line 25) | AF_IMPLINK = 0x3 constant AF_INET (line 26) | AF_INET = 0x2 constant AF_INET6 (line 27) | AF_INET6 = 0x1a constant AF_INET_OFFLOAD (line 28) | AF_INET_OFFLOAD = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_KEY (line 30) | AF_KEY = 0x1b constant AF_LAT (line 31) | AF_LAT = 0xe constant AF_LINK (line 32) | AF_LINK = 0x19 constant AF_LOCAL (line 33) | AF_LOCAL = 0x1 constant AF_MAX (line 34) | AF_MAX = 0x20 constant AF_NBS (line 35) | AF_NBS = 0x7 constant AF_NCA (line 36) | AF_NCA = 0x1c constant AF_NIT (line 37) | AF_NIT = 0x11 constant AF_NS (line 38) | AF_NS = 0x6 constant AF_OSI (line 39) | AF_OSI = 0x13 constant AF_OSINET (line 40) | AF_OSINET = 0x15 constant AF_PACKET (line 41) | AF_PACKET = 0x20 constant AF_POLICY (line 42) | AF_POLICY = 0x1d constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x18 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_TRILL (line 46) | AF_TRILL = 0x1f constant AF_UNIX (line 47) | AF_UNIX = 0x1 constant AF_UNSPEC (line 48) | AF_UNSPEC = 0x0 constant AF_X25 (line 49) | AF_X25 = 0x14 constant ARPHRD_ARCNET (line 50) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ATM (line 51) | ARPHRD_ATM = 0x10 constant ARPHRD_AX25 (line 52) | ARPHRD_AX25 = 0x3 constant ARPHRD_CHAOS (line 53) | ARPHRD_CHAOS = 0x5 constant ARPHRD_EETHER (line 54) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 55) | ARPHRD_ETHER = 0x1 constant ARPHRD_FC (line 56) | ARPHRD_FC = 0x12 constant ARPHRD_FRAME (line 57) | ARPHRD_FRAME = 0xf constant ARPHRD_HDLC (line 58) | ARPHRD_HDLC = 0x11 constant ARPHRD_IB (line 59) | ARPHRD_IB = 0x20 constant ARPHRD_IEEE802 (line 60) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IPATM (line 61) | ARPHRD_IPATM = 0x13 constant ARPHRD_METRICOM (line 62) | ARPHRD_METRICOM = 0x17 constant ARPHRD_TUNNEL (line 63) | ARPHRD_TUNNEL = 0x1f constant B0 (line 64) | B0 = 0x0 constant B110 (line 65) | B110 = 0x3 constant B115200 (line 66) | B115200 = 0x12 constant B1200 (line 67) | B1200 = 0x9 constant B134 (line 68) | B134 = 0x4 constant B150 (line 69) | B150 = 0x5 constant B153600 (line 70) | B153600 = 0x13 constant B1800 (line 71) | B1800 = 0xa constant B19200 (line 72) | B19200 = 0xe constant B200 (line 73) | B200 = 0x6 constant B230400 (line 74) | B230400 = 0x14 constant B2400 (line 75) | B2400 = 0xb constant B300 (line 76) | B300 = 0x7 constant B307200 (line 77) | B307200 = 0x15 constant B38400 (line 78) | B38400 = 0xf constant B460800 (line 79) | B460800 = 0x16 constant B4800 (line 80) | B4800 = 0xc constant B50 (line 81) | B50 = 0x1 constant B57600 (line 82) | B57600 = 0x10 constant B600 (line 83) | B600 = 0x8 constant B75 (line 84) | B75 = 0x2 constant B76800 (line 85) | B76800 = 0x11 constant B921600 (line 86) | B921600 = 0x17 constant B9600 (line 87) | B9600 = 0xd constant BIOCFLUSH (line 88) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 89) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 90) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 91) | BIOCGDLTLIST = -0x3fefbd89 constant BIOCGDLTLIST32 (line 92) | BIOCGDLTLIST32 = -0x3ff7bd89 constant BIOCGETIF (line 93) | BIOCGETIF = 0x4020426b constant BIOCGETLIF (line 94) | BIOCGETLIF = 0x4078426b constant BIOCGHDRCMPLT (line 95) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 96) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGRTIMEOUT32 (line 97) | BIOCGRTIMEOUT32 = 0x4008427b constant BIOCGSEESENT (line 98) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 99) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 100) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 101) | BIOCIMMEDIATE = -0x7ffbbd90 constant BIOCPROMISC (line 102) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 103) | BIOCSBLEN = -0x3ffbbd9a constant BIOCSDLT (line 104) | BIOCSDLT = -0x7ffbbd8a constant BIOCSETF (line 105) | BIOCSETF = -0x7fefbd99 constant BIOCSETF32 (line 106) | BIOCSETF32 = -0x7ff7bd99 constant BIOCSETIF (line 107) | BIOCSETIF = -0x7fdfbd94 constant BIOCSETLIF (line 108) | BIOCSETLIF = -0x7f87bd94 constant BIOCSHDRCMPLT (line 109) | BIOCSHDRCMPLT = -0x7ffbbd8b constant BIOCSRTIMEOUT (line 110) | BIOCSRTIMEOUT = -0x7fefbd86 constant BIOCSRTIMEOUT32 (line 111) | BIOCSRTIMEOUT32 = -0x7ff7bd86 constant BIOCSSEESENT (line 112) | BIOCSSEESENT = -0x7ffbbd87 constant BIOCSTCPF (line 113) | BIOCSTCPF = -0x7fefbd8e constant BIOCSUDPF (line 114) | BIOCSUDPF = -0x7fefbd8d constant BIOCVERSION (line 115) | BIOCVERSION = 0x40044271 constant BPF_A (line 116) | BPF_A = 0x10 constant BPF_ABS (line 117) | BPF_ABS = 0x20 constant BPF_ADD (line 118) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 119) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 120) | BPF_ALU = 0x4 constant BPF_AND (line 121) | BPF_AND = 0x50 constant BPF_B (line 122) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 123) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 124) | BPF_DIV = 0x30 constant BPF_H (line 125) | BPF_H = 0x8 constant BPF_IMM (line 126) | BPF_IMM = 0x0 constant BPF_IND (line 127) | BPF_IND = 0x40 constant BPF_JA (line 128) | BPF_JA = 0x0 constant BPF_JEQ (line 129) | BPF_JEQ = 0x10 constant BPF_JGE (line 130) | BPF_JGE = 0x30 constant BPF_JGT (line 131) | BPF_JGT = 0x20 constant BPF_JMP (line 132) | BPF_JMP = 0x5 constant BPF_JSET (line 133) | BPF_JSET = 0x40 constant BPF_K (line 134) | BPF_K = 0x0 constant BPF_LD (line 135) | BPF_LD = 0x0 constant BPF_LDX (line 136) | BPF_LDX = 0x1 constant BPF_LEN (line 137) | BPF_LEN = 0x80 constant BPF_LSH (line 138) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 139) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 140) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 141) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 142) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 143) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 144) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 145) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 146) | BPF_MISC = 0x7 constant BPF_MSH (line 147) | BPF_MSH = 0xa0 constant BPF_MUL (line 148) | BPF_MUL = 0x20 constant BPF_NEG (line 149) | BPF_NEG = 0x80 constant BPF_OR (line 150) | BPF_OR = 0x40 constant BPF_RELEASE (line 151) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 152) | BPF_RET = 0x6 constant BPF_RSH (line 153) | BPF_RSH = 0x70 constant BPF_ST (line 154) | BPF_ST = 0x2 constant BPF_STX (line 155) | BPF_STX = 0x3 constant BPF_SUB (line 156) | BPF_SUB = 0x10 constant BPF_TAX (line 157) | BPF_TAX = 0x0 constant BPF_TXA (line 158) | BPF_TXA = 0x80 constant BPF_W (line 159) | BPF_W = 0x0 constant BPF_X (line 160) | BPF_X = 0x8 constant BRKINT (line 161) | BRKINT = 0x2 constant BS0 (line 162) | BS0 = 0x0 constant BS1 (line 163) | BS1 = 0x2000 constant BSDLY (line 164) | BSDLY = 0x2000 constant CBAUD (line 165) | CBAUD = 0xf constant CFLUSH (line 166) | CFLUSH = 0xf constant CIBAUD (line 167) | CIBAUD = 0xf0000 constant CLOCAL (line 168) | CLOCAL = 0x800 constant CLOCK_HIGHRES (line 169) | CLOCK_HIGHRES = 0x4 constant CLOCK_LEVEL (line 170) | CLOCK_LEVEL = 0xa constant CLOCK_MONOTONIC (line 171) | CLOCK_MONOTONIC = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 172) | CLOCK_PROCESS_CPUTIME_ID = 0x5 constant CLOCK_PROF (line 173) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 174) | CLOCK_REALTIME = 0x3 constant CLOCK_THREAD_CPUTIME_ID (line 175) | CLOCK_THREAD_CPUTIME_ID = 0x2 constant CLOCK_VIRTUAL (line 176) | CLOCK_VIRTUAL = 0x1 constant CR0 (line 177) | CR0 = 0x0 constant CR1 (line 178) | CR1 = 0x200 constant CR2 (line 179) | CR2 = 0x400 constant CR3 (line 180) | CR3 = 0x600 constant CRDLY (line 181) | CRDLY = 0x600 constant CREAD (line 182) | CREAD = 0x80 constant CRTSCTS (line 183) | CRTSCTS = 0x80000000 constant CS5 (line 184) | CS5 = 0x0 constant CS6 (line 185) | CS6 = 0x10 constant CS7 (line 186) | CS7 = 0x20 constant CS8 (line 187) | CS8 = 0x30 constant CSIZE (line 188) | CSIZE = 0x30 constant CSTART (line 189) | CSTART = 0x11 constant CSTATUS (line 190) | CSTATUS = 0x14 constant CSTOP (line 191) | CSTOP = 0x13 constant CSTOPB (line 192) | CSTOPB = 0x40 constant CSUSP (line 193) | CSUSP = 0x1a constant CSWTCH (line 194) | CSWTCH = 0x1a constant DLT_AIRONET_HEADER (line 195) | DLT_AIRONET_HEADER = 0x78 constant DLT_APPLE_IP_OVER_IEEE1394 (line 196) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 197) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 198) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 199) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 200) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 201) | DLT_AURORA = 0x7e constant DLT_AX25 (line 202) | DLT_AX25 = 0x3 constant DLT_BACNET_MS_TP (line 203) | DLT_BACNET_MS_TP = 0xa5 constant DLT_CHAOS (line 204) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 205) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 206) | DLT_C_HDLC = 0x68 constant DLT_DOCSIS (line 207) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 208) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 209) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 210) | DLT_EN3MB = 0x2 constant DLT_ENC (line 211) | DLT_ENC = 0x6d constant DLT_ERF_ETH (line 212) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 213) | DLT_ERF_POS = 0xb0 constant DLT_FDDI (line 214) | DLT_FDDI = 0xa constant DLT_FRELAY (line 215) | DLT_FRELAY = 0x6b constant DLT_GCOM_SERIAL (line 216) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 217) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 218) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 219) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 220) | DLT_GPRS_LLC = 0xa9 constant DLT_HDLC (line 221) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 222) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 223) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 224) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 225) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 226) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 227) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 228) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 229) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IPNET (line 230) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 231) | DLT_IPOIB = 0xa2 constant DLT_IP_OVER_FC (line 232) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 233) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 234) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 235) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 236) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 237) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 238) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 239) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_MFR (line 240) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 241) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 242) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 243) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 244) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 245) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 246) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 247) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 248) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_LINUX_IRDA (line 249) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 250) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 251) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 252) | DLT_LOOP = 0x6c constant DLT_LTALK (line 253) | DLT_LTALK = 0x72 constant DLT_MTP2 (line 254) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 255) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 256) | DLT_MTP3 = 0x8d constant DLT_NULL (line 257) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 258) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 259) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 260) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 261) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 262) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_PPPD (line 263) | DLT_PPP_PPPD = 0xa6 constant DLT_PRISM_HEADER (line 264) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 265) | DLT_PRONET = 0x4 constant DLT_RAW (line 266) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 267) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 268) | DLT_RIO = 0x7c constant DLT_SCCP (line 269) | DLT_SCCP = 0x8e constant DLT_SLIP (line 270) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 271) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 272) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 273) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 274) | DLT_TZSP = 0x80 constant ECHO (line 275) | ECHO = 0x8 constant ECHOCTL (line 276) | ECHOCTL = 0x200 constant ECHOE (line 277) | ECHOE = 0x10 constant ECHOK (line 278) | ECHOK = 0x20 constant ECHOKE (line 279) | ECHOKE = 0x800 constant ECHONL (line 280) | ECHONL = 0x40 constant ECHOPRT (line 281) | ECHOPRT = 0x400 constant EMPTY_SET (line 282) | EMPTY_SET = 0x0 constant EMT_CPCOVF (line 283) | EMT_CPCOVF = 0x1 constant EQUALITY_CHECK (line 284) | EQUALITY_CHECK = 0x0 constant EXTA (line 285) | EXTA = 0xe constant EXTB (line 286) | EXTB = 0xf constant FD_CLOEXEC (line 287) | FD_CLOEXEC = 0x1 constant FD_NFDBITS (line 288) | FD_NFDBITS = 0x40 constant FD_SETSIZE (line 289) | FD_SETSIZE = 0x10000 constant FF0 (line 290) | FF0 = 0x0 constant FF1 (line 291) | FF1 = 0x8000 constant FFDLY (line 292) | FFDLY = 0x8000 constant FLUSHALL (line 293) | FLUSHALL = 0x1 constant FLUSHDATA (line 294) | FLUSHDATA = 0x0 constant FLUSHO (line 295) | FLUSHO = 0x2000 constant F_ALLOCSP (line 296) | F_ALLOCSP = 0xa constant F_ALLOCSP64 (line 297) | F_ALLOCSP64 = 0xa constant F_BADFD (line 298) | F_BADFD = 0x2e constant F_BLKSIZE (line 299) | F_BLKSIZE = 0x13 constant F_BLOCKS (line 300) | F_BLOCKS = 0x12 constant F_CHKFL (line 301) | F_CHKFL = 0x8 constant F_COMPAT (line 302) | F_COMPAT = 0x8 constant F_DUP2FD (line 303) | F_DUP2FD = 0x9 constant F_DUP2FD_CLOEXEC (line 304) | F_DUP2FD_CLOEXEC = 0x24 constant F_DUPFD (line 305) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 306) | F_DUPFD_CLOEXEC = 0x25 constant F_FLOCK (line 307) | F_FLOCK = 0x35 constant F_FLOCK64 (line 308) | F_FLOCK64 = 0x35 constant F_FLOCKW (line 309) | F_FLOCKW = 0x36 constant F_FLOCKW64 (line 310) | F_FLOCKW64 = 0x36 constant F_FREESP (line 311) | F_FREESP = 0xb constant F_FREESP64 (line 312) | F_FREESP64 = 0xb constant F_GETFD (line 313) | F_GETFD = 0x1 constant F_GETFL (line 314) | F_GETFL = 0x3 constant F_GETLK (line 315) | F_GETLK = 0xe constant F_GETLK64 (line 316) | F_GETLK64 = 0xe constant F_GETOWN (line 317) | F_GETOWN = 0x17 constant F_GETXFL (line 318) | F_GETXFL = 0x2d constant F_HASREMOTELOCKS (line 319) | F_HASREMOTELOCKS = 0x1a constant F_ISSTREAM (line 320) | F_ISSTREAM = 0xd constant F_MANDDNY (line 321) | F_MANDDNY = 0x10 constant F_MDACC (line 322) | F_MDACC = 0x20 constant F_NODNY (line 323) | F_NODNY = 0x0 constant F_NPRIV (line 324) | F_NPRIV = 0x10 constant F_OFD_GETLK (line 325) | F_OFD_GETLK = 0x2f constant F_OFD_GETLK64 (line 326) | F_OFD_GETLK64 = 0x2f constant F_OFD_SETLK (line 327) | F_OFD_SETLK = 0x30 constant F_OFD_SETLK64 (line 328) | F_OFD_SETLK64 = 0x30 constant F_OFD_SETLKW (line 329) | F_OFD_SETLKW = 0x31 constant F_OFD_SETLKW64 (line 330) | F_OFD_SETLKW64 = 0x31 constant F_PRIV (line 331) | F_PRIV = 0xf constant F_QUOTACTL (line 332) | F_QUOTACTL = 0x11 constant F_RDACC (line 333) | F_RDACC = 0x1 constant F_RDDNY (line 334) | F_RDDNY = 0x1 constant F_RDLCK (line 335) | F_RDLCK = 0x1 constant F_REVOKE (line 336) | F_REVOKE = 0x19 constant F_RMACC (line 337) | F_RMACC = 0x4 constant F_RMDNY (line 338) | F_RMDNY = 0x4 constant F_RWACC (line 339) | F_RWACC = 0x3 constant F_RWDNY (line 340) | F_RWDNY = 0x3 constant F_SETFD (line 341) | F_SETFD = 0x2 constant F_SETFL (line 342) | F_SETFL = 0x4 constant F_SETLK (line 343) | F_SETLK = 0x6 constant F_SETLK64 (line 344) | F_SETLK64 = 0x6 constant F_SETLK64_NBMAND (line 345) | F_SETLK64_NBMAND = 0x2a constant F_SETLKW (line 346) | F_SETLKW = 0x7 constant F_SETLKW64 (line 347) | F_SETLKW64 = 0x7 constant F_SETLK_NBMAND (line 348) | F_SETLK_NBMAND = 0x2a constant F_SETOWN (line 349) | F_SETOWN = 0x18 constant F_SHARE (line 350) | F_SHARE = 0x28 constant F_SHARE_NBMAND (line 351) | F_SHARE_NBMAND = 0x2b constant F_UNLCK (line 352) | F_UNLCK = 0x3 constant F_UNLKSYS (line 353) | F_UNLKSYS = 0x4 constant F_UNSHARE (line 354) | F_UNSHARE = 0x29 constant F_WRACC (line 355) | F_WRACC = 0x2 constant F_WRDNY (line 356) | F_WRDNY = 0x2 constant F_WRLCK (line 357) | F_WRLCK = 0x2 constant HUPCL (line 358) | HUPCL = 0x400 constant IBSHIFT (line 359) | IBSHIFT = 0x10 constant ICANON (line 360) | ICANON = 0x2 constant ICRNL (line 361) | ICRNL = 0x100 constant IEXTEN (line 362) | IEXTEN = 0x8000 constant IFF_ADDRCONF (line 363) | IFF_ADDRCONF = 0x80000 constant IFF_ALLMULTI (line 364) | IFF_ALLMULTI = 0x200 constant IFF_ANYCAST (line 365) | IFF_ANYCAST = 0x400000 constant IFF_BROADCAST (line 366) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 367) | IFF_CANTCHANGE = 0x7f203003b5a constant IFF_COS_ENABLED (line 368) | IFF_COS_ENABLED = 0x200000000 constant IFF_DEBUG (line 369) | IFF_DEBUG = 0x4 constant IFF_DEPRECATED (line 370) | IFF_DEPRECATED = 0x40000 constant IFF_DHCPRUNNING (line 371) | IFF_DHCPRUNNING = 0x4000 constant IFF_DUPLICATE (line 372) | IFF_DUPLICATE = 0x4000000000 constant IFF_FAILED (line 373) | IFF_FAILED = 0x10000000 constant IFF_FIXEDMTU (line 374) | IFF_FIXEDMTU = 0x1000000000 constant IFF_INACTIVE (line 375) | IFF_INACTIVE = 0x40000000 constant IFF_INTELLIGENT (line 376) | IFF_INTELLIGENT = 0x400 constant IFF_IPMP (line 377) | IFF_IPMP = 0x8000000000 constant IFF_IPMP_CANTCHANGE (line 378) | IFF_IPMP_CANTCHANGE = 0x10000000 constant IFF_IPMP_INVALID (line 379) | IFF_IPMP_INVALID = 0x1ec200080 constant IFF_IPV4 (line 380) | IFF_IPV4 = 0x1000000 constant IFF_IPV6 (line 381) | IFF_IPV6 = 0x2000000 constant IFF_L3PROTECT (line 382) | IFF_L3PROTECT = 0x40000000000 constant IFF_LOOPBACK (line 383) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 384) | IFF_MULTICAST = 0x800 constant IFF_MULTI_BCAST (line 385) | IFF_MULTI_BCAST = 0x1000 constant IFF_NOACCEPT (line 386) | IFF_NOACCEPT = 0x4000000 constant IFF_NOARP (line 387) | IFF_NOARP = 0x80 constant IFF_NOFAILOVER (line 388) | IFF_NOFAILOVER = 0x8000000 constant IFF_NOLINKLOCAL (line 389) | IFF_NOLINKLOCAL = 0x20000000000 constant IFF_NOLOCAL (line 390) | IFF_NOLOCAL = 0x20000 constant IFF_NONUD (line 391) | IFF_NONUD = 0x200000 constant IFF_NORTEXCH (line 392) | IFF_NORTEXCH = 0x800000 constant IFF_NOTRAILERS (line 393) | IFF_NOTRAILERS = 0x20 constant IFF_NOXMIT (line 394) | IFF_NOXMIT = 0x10000 constant IFF_OFFLINE (line 395) | IFF_OFFLINE = 0x80000000 constant IFF_POINTOPOINT (line 396) | IFF_POINTOPOINT = 0x10 constant IFF_PREFERRED (line 397) | IFF_PREFERRED = 0x400000000 constant IFF_PRIVATE (line 398) | IFF_PRIVATE = 0x8000 constant IFF_PROMISC (line 399) | IFF_PROMISC = 0x100 constant IFF_ROUTER (line 400) | IFF_ROUTER = 0x100000 constant IFF_RUNNING (line 401) | IFF_RUNNING = 0x40 constant IFF_STANDBY (line 402) | IFF_STANDBY = 0x20000000 constant IFF_TEMPORARY (line 403) | IFF_TEMPORARY = 0x800000000 constant IFF_UNNUMBERED (line 404) | IFF_UNNUMBERED = 0x2000 constant IFF_UP (line 405) | IFF_UP = 0x1 constant IFF_VIRTUAL (line 406) | IFF_VIRTUAL = 0x2000000000 constant IFF_VRRP (line 407) | IFF_VRRP = 0x10000000000 constant IFF_XRESOLV (line 408) | IFF_XRESOLV = 0x100000000 constant IFNAMSIZ (line 409) | IFNAMSIZ = 0x10 constant IFT_1822 (line 410) | IFT_1822 = 0x2 constant IFT_6TO4 (line 411) | IFT_6TO4 = 0xca constant IFT_AAL5 (line 412) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 413) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 414) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 415) | IFT_ATM = 0x25 constant IFT_CEPT (line 416) | IFT_CEPT = 0x13 constant IFT_DS3 (line 417) | IFT_DS3 = 0x1e constant IFT_EON (line 418) | IFT_EON = 0x19 constant IFT_ETHER (line 419) | IFT_ETHER = 0x6 constant IFT_FDDI (line 420) | IFT_FDDI = 0xf constant IFT_FRELAY (line 421) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 422) | IFT_FRELAYDCE = 0x2c constant IFT_HDH1822 (line 423) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 424) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 425) | IFT_HSSI = 0x2e constant IFT_HY (line 426) | IFT_HY = 0xe constant IFT_IB (line 427) | IFT_IB = 0xc7 constant IFT_IPV4 (line 428) | IFT_IPV4 = 0xc8 constant IFT_IPV6 (line 429) | IFT_IPV6 = 0xc9 constant IFT_ISDNBASIC (line 430) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 431) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 432) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 433) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 434) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 435) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 436) | IFT_ISO88026 = 0xa constant IFT_LAPB (line 437) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 438) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 439) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 440) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 441) | IFT_MODEM = 0x30 constant IFT_NSIP (line 442) | IFT_NSIP = 0x1b constant IFT_OTHER (line 443) | IFT_OTHER = 0x1 constant IFT_P10 (line 444) | IFT_P10 = 0xc constant IFT_P80 (line 445) | IFT_P80 = 0xd constant IFT_PARA (line 446) | IFT_PARA = 0x22 constant IFT_PPP (line 447) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 448) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 449) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 450) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 451) | IFT_RS232 = 0x21 constant IFT_SDLC (line 452) | IFT_SDLC = 0x11 constant IFT_SIP (line 453) | IFT_SIP = 0x1f constant IFT_SLIP (line 454) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 455) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 456) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 457) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 458) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 459) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 460) | IFT_STARLAN = 0xb constant IFT_T1 (line 461) | IFT_T1 = 0x12 constant IFT_ULTRA (line 462) | IFT_ULTRA = 0x1d constant IFT_V35 (line 463) | IFT_V35 = 0x2d constant IFT_X25 (line 464) | IFT_X25 = 0x5 constant IFT_X25DDN (line 465) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 466) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 467) | IFT_XETHER = 0x1a constant IGNBRK (line 468) | IGNBRK = 0x1 constant IGNCR (line 469) | IGNCR = 0x80 constant IGNPAR (line 470) | IGNPAR = 0x4 constant IMAXBEL (line 471) | IMAXBEL = 0x2000 constant INLCR (line 472) | INLCR = 0x40 constant INPCK (line 473) | INPCK = 0x10 constant IN_AUTOCONF_MASK (line 474) | IN_AUTOCONF_MASK = 0xffff0000 constant IN_AUTOCONF_NET (line 475) | IN_AUTOCONF_NET = 0xa9fe0000 constant IN_CLASSA_HOST (line 476) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 477) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 478) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 479) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 480) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 481) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 482) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 483) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 484) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 485) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 486) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 487) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 488) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 489) | IN_CLASSD_NSHIFT = 0x1c constant IN_CLASSE_NET (line 490) | IN_CLASSE_NET = 0xffffffff constant IN_LOOPBACKNET (line 491) | IN_LOOPBACKNET = 0x7f constant IN_PRIVATE12_MASK (line 492) | IN_PRIVATE12_MASK = 0xfff00000 constant IN_PRIVATE12_NET (line 493) | IN_PRIVATE12_NET = 0xac100000 constant IN_PRIVATE16_MASK (line 494) | IN_PRIVATE16_MASK = 0xffff0000 constant IN_PRIVATE16_NET (line 495) | IN_PRIVATE16_NET = 0xc0a80000 constant IN_PRIVATE8_MASK (line 496) | IN_PRIVATE8_MASK = 0xff000000 constant IN_PRIVATE8_NET (line 497) | IN_PRIVATE8_NET = 0xa000000 constant IPPROTO_AH (line 498) | IPPROTO_AH = 0x33 constant IPPROTO_DSTOPTS (line 499) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 500) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 501) | IPPROTO_ENCAP = 0x4 constant IPPROTO_EON (line 502) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 503) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 504) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 505) | IPPROTO_GGP = 0x3 constant IPPROTO_HELLO (line 506) | IPPROTO_HELLO = 0x3f constant IPPROTO_HOPOPTS (line 507) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 508) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 509) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 510) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 511) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 512) | IPPROTO_IP = 0x0 constant IPPROTO_IPV6 (line 513) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 514) | IPPROTO_MAX = 0x100 constant IPPROTO_ND (line 515) | IPPROTO_ND = 0x4d constant IPPROTO_NONE (line 516) | IPPROTO_NONE = 0x3b constant IPPROTO_OSPF (line 517) | IPPROTO_OSPF = 0x59 constant IPPROTO_PIM (line 518) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 519) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 520) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 521) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 522) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 523) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 524) | IPPROTO_TCP = 0x6 constant IPPROTO_UDP (line 525) | IPPROTO_UDP = 0x11 constant IPV6_ADD_MEMBERSHIP (line 526) | IPV6_ADD_MEMBERSHIP = 0x9 constant IPV6_BOUND_IF (line 527) | IPV6_BOUND_IF = 0x41 constant IPV6_CHECKSUM (line 528) | IPV6_CHECKSUM = 0x18 constant IPV6_DONTFRAG (line 529) | IPV6_DONTFRAG = 0x21 constant IPV6_DROP_MEMBERSHIP (line 530) | IPV6_DROP_MEMBERSHIP = 0xa constant IPV6_DSTOPTS (line 531) | IPV6_DSTOPTS = 0xf constant IPV6_FLOWINFO_FLOWLABEL (line 532) | IPV6_FLOWINFO_FLOWLABEL = 0xffff0f00 constant IPV6_FLOWINFO_TCLASS (line 533) | IPV6_FLOWINFO_TCLASS = 0xf00f constant IPV6_HOPLIMIT (line 534) | IPV6_HOPLIMIT = 0xc constant IPV6_HOPOPTS (line 535) | IPV6_HOPOPTS = 0xe constant IPV6_JOIN_GROUP (line 536) | IPV6_JOIN_GROUP = 0x9 constant IPV6_LEAVE_GROUP (line 537) | IPV6_LEAVE_GROUP = 0xa constant IPV6_MULTICAST_HOPS (line 538) | IPV6_MULTICAST_HOPS = 0x7 constant IPV6_MULTICAST_IF (line 539) | IPV6_MULTICAST_IF = 0x6 constant IPV6_MULTICAST_LOOP (line 540) | IPV6_MULTICAST_LOOP = 0x8 constant IPV6_NEXTHOP (line 541) | IPV6_NEXTHOP = 0xd constant IPV6_PAD1_OPT (line 542) | IPV6_PAD1_OPT = 0x0 constant IPV6_PATHMTU (line 543) | IPV6_PATHMTU = 0x25 constant IPV6_PKTINFO (line 544) | IPV6_PKTINFO = 0xb constant IPV6_PREFER_SRC_CGA (line 545) | IPV6_PREFER_SRC_CGA = 0x20 constant IPV6_PREFER_SRC_CGADEFAULT (line 546) | IPV6_PREFER_SRC_CGADEFAULT = 0x10 constant IPV6_PREFER_SRC_CGAMASK (line 547) | IPV6_PREFER_SRC_CGAMASK = 0x30 constant IPV6_PREFER_SRC_COA (line 548) | IPV6_PREFER_SRC_COA = 0x2 constant IPV6_PREFER_SRC_DEFAULT (line 549) | IPV6_PREFER_SRC_DEFAULT = 0x15 constant IPV6_PREFER_SRC_HOME (line 550) | IPV6_PREFER_SRC_HOME = 0x1 constant IPV6_PREFER_SRC_MASK (line 551) | IPV6_PREFER_SRC_MASK = 0x3f constant IPV6_PREFER_SRC_MIPDEFAULT (line 552) | IPV6_PREFER_SRC_MIPDEFAULT = 0x1 constant IPV6_PREFER_SRC_MIPMASK (line 553) | IPV6_PREFER_SRC_MIPMASK = 0x3 constant IPV6_PREFER_SRC_NONCGA (line 554) | IPV6_PREFER_SRC_NONCGA = 0x10 constant IPV6_PREFER_SRC_PUBLIC (line 555) | IPV6_PREFER_SRC_PUBLIC = 0x4 constant IPV6_PREFER_SRC_TMP (line 556) | IPV6_PREFER_SRC_TMP = 0x8 constant IPV6_PREFER_SRC_TMPDEFAULT (line 557) | IPV6_PREFER_SRC_TMPDEFAULT = 0x4 constant IPV6_PREFER_SRC_TMPMASK (line 558) | IPV6_PREFER_SRC_TMPMASK = 0xc constant IPV6_RECVDSTOPTS (line 559) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 560) | IPV6_RECVHOPLIMIT = 0x13 constant IPV6_RECVHOPOPTS (line 561) | IPV6_RECVHOPOPTS = 0x14 constant IPV6_RECVPATHMTU (line 562) | IPV6_RECVPATHMTU = 0x24 constant IPV6_RECVPKTINFO (line 563) | IPV6_RECVPKTINFO = 0x12 constant IPV6_RECVRTHDR (line 564) | IPV6_RECVRTHDR = 0x16 constant IPV6_RECVRTHDRDSTOPTS (line 565) | IPV6_RECVRTHDRDSTOPTS = 0x17 constant IPV6_RECVTCLASS (line 566) | IPV6_RECVTCLASS = 0x19 constant IPV6_RTHDR (line 567) | IPV6_RTHDR = 0x10 constant IPV6_RTHDRDSTOPTS (line 568) | IPV6_RTHDRDSTOPTS = 0x11 constant IPV6_RTHDR_TYPE_0 (line 569) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SEC_OPT (line 570) | IPV6_SEC_OPT = 0x22 constant IPV6_SRC_PREFERENCES (line 571) | IPV6_SRC_PREFERENCES = 0x23 constant IPV6_TCLASS (line 572) | IPV6_TCLASS = 0x26 constant IPV6_UNICAST_HOPS (line 573) | IPV6_UNICAST_HOPS = 0x5 constant IPV6_UNSPEC_SRC (line 574) | IPV6_UNSPEC_SRC = 0x42 constant IPV6_USE_MIN_MTU (line 575) | IPV6_USE_MIN_MTU = 0x20 constant IPV6_V6ONLY (line 576) | IPV6_V6ONLY = 0x27 constant IP_ADD_MEMBERSHIP (line 577) | IP_ADD_MEMBERSHIP = 0x13 constant IP_ADD_SOURCE_MEMBERSHIP (line 578) | IP_ADD_SOURCE_MEMBERSHIP = 0x17 constant IP_BLOCK_SOURCE (line 579) | IP_BLOCK_SOURCE = 0x15 constant IP_BOUND_IF (line 580) | IP_BOUND_IF = 0x41 constant IP_BROADCAST (line 581) | IP_BROADCAST = 0x106 constant IP_BROADCAST_TTL (line 582) | IP_BROADCAST_TTL = 0x43 constant IP_DEFAULT_MULTICAST_LOOP (line 583) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 584) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 585) | IP_DF = 0x4000 constant IP_DHCPINIT_IF (line 586) | IP_DHCPINIT_IF = 0x45 constant IP_DONTFRAG (line 587) | IP_DONTFRAG = 0x1b constant IP_DONTROUTE (line 588) | IP_DONTROUTE = 0x105 constant IP_DROP_MEMBERSHIP (line 589) | IP_DROP_MEMBERSHIP = 0x14 constant IP_DROP_SOURCE_MEMBERSHIP (line 590) | IP_DROP_SOURCE_MEMBERSHIP = 0x18 constant IP_HDRINCL (line 591) | IP_HDRINCL = 0x2 constant IP_MAXPACKET (line 592) | IP_MAXPACKET = 0xffff constant IP_MF (line 593) | IP_MF = 0x2000 constant IP_MSS (line 594) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 595) | IP_MULTICAST_IF = 0x10 constant IP_MULTICAST_LOOP (line 596) | IP_MULTICAST_LOOP = 0x12 constant IP_MULTICAST_TTL (line 597) | IP_MULTICAST_TTL = 0x11 constant IP_NEXTHOP (line 598) | IP_NEXTHOP = 0x19 constant IP_OPTIONS (line 599) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 600) | IP_PKTINFO = 0x1a constant IP_RECVDSTADDR (line 601) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 602) | IP_RECVIF = 0x9 constant IP_RECVOPTS (line 603) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 604) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 605) | IP_RECVRETOPTS = 0x6 constant IP_RECVSLLA (line 606) | IP_RECVSLLA = 0xa constant IP_RECVTTL (line 607) | IP_RECVTTL = 0xb constant IP_RETOPTS (line 608) | IP_RETOPTS = 0x8 constant IP_REUSEADDR (line 609) | IP_REUSEADDR = 0x104 constant IP_SEC_OPT (line 610) | IP_SEC_OPT = 0x22 constant IP_TOS (line 611) | IP_TOS = 0x3 constant IP_TTL (line 612) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 613) | IP_UNBLOCK_SOURCE = 0x16 constant IP_UNSPEC_SRC (line 614) | IP_UNSPEC_SRC = 0x42 constant ISIG (line 615) | ISIG = 0x1 constant ISTRIP (line 616) | ISTRIP = 0x20 constant IUCLC (line 617) | IUCLC = 0x200 constant IXANY (line 618) | IXANY = 0x800 constant IXOFF (line 619) | IXOFF = 0x1000 constant IXON (line 620) | IXON = 0x400 constant LOCK_EX (line 621) | LOCK_EX = 0x2 constant LOCK_NB (line 622) | LOCK_NB = 0x4 constant LOCK_SH (line 623) | LOCK_SH = 0x1 constant LOCK_UN (line 624) | LOCK_UN = 0x8 constant MADV_ACCESS_DEFAULT (line 625) | MADV_ACCESS_DEFAULT = 0x6 constant MADV_ACCESS_LWP (line 626) | MADV_ACCESS_LWP = 0x7 constant MADV_ACCESS_MANY (line 627) | MADV_ACCESS_MANY = 0x8 constant MADV_DONTNEED (line 628) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 629) | MADV_FREE = 0x5 constant MADV_NORMAL (line 630) | MADV_NORMAL = 0x0 constant MADV_PURGE (line 631) | MADV_PURGE = 0x9 constant MADV_RANDOM (line 632) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 633) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 634) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 635) | MAP_32BIT = 0x80 constant MAP_ALIGN (line 636) | MAP_ALIGN = 0x200 constant MAP_ANON (line 637) | MAP_ANON = 0x100 constant MAP_ANONYMOUS (line 638) | MAP_ANONYMOUS = 0x100 constant MAP_FILE (line 639) | MAP_FILE = 0x0 constant MAP_FIXED (line 640) | MAP_FIXED = 0x10 constant MAP_INITDATA (line 641) | MAP_INITDATA = 0x800 constant MAP_NORESERVE (line 642) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 643) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 644) | MAP_RENAME = 0x20 constant MAP_SHARED (line 645) | MAP_SHARED = 0x1 constant MAP_TEXT (line 646) | MAP_TEXT = 0x400 constant MAP_TYPE (line 647) | MAP_TYPE = 0xf constant MCL_CURRENT (line 648) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 649) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 650) | MSG_CTRUNC = 0x10 constant MSG_DONTROUTE (line 651) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 652) | MSG_DONTWAIT = 0x80 constant MSG_DUPCTRL (line 653) | MSG_DUPCTRL = 0x800 constant MSG_EOR (line 654) | MSG_EOR = 0x8 constant MSG_MAXIOVLEN (line 655) | MSG_MAXIOVLEN = 0x10 constant MSG_NOTIFICATION (line 656) | MSG_NOTIFICATION = 0x100 constant MSG_OOB (line 657) | MSG_OOB = 0x1 constant MSG_PEEK (line 658) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 659) | MSG_TRUNC = 0x20 constant MSG_WAITALL (line 660) | MSG_WAITALL = 0x40 constant MSG_XPG4_2 (line 661) | MSG_XPG4_2 = 0x8000 constant MS_ASYNC (line 662) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 663) | MS_INVALIDATE = 0x2 constant MS_OLDSYNC (line 664) | MS_OLDSYNC = 0x0 constant MS_SYNC (line 665) | MS_SYNC = 0x4 constant M_FLUSH (line 666) | M_FLUSH = 0x86 constant NL0 (line 667) | NL0 = 0x0 constant NL1 (line 668) | NL1 = 0x100 constant NLDLY (line 669) | NLDLY = 0x100 constant NOFLSH (line 670) | NOFLSH = 0x80 constant OCRNL (line 671) | OCRNL = 0x8 constant OFDEL (line 672) | OFDEL = 0x80 constant OFILL (line 673) | OFILL = 0x40 constant OLCUC (line 674) | OLCUC = 0x2 constant ONLCR (line 675) | ONLCR = 0x4 constant ONLRET (line 676) | ONLRET = 0x20 constant ONOCR (line 677) | ONOCR = 0x10 constant OPENFAIL (line 678) | OPENFAIL = -0x1 constant OPOST (line 679) | OPOST = 0x1 constant O_ACCMODE (line 680) | O_ACCMODE = 0x600003 constant O_APPEND (line 681) | O_APPEND = 0x8 constant O_CLOEXEC (line 682) | O_CLOEXEC = 0x800000 constant O_CREAT (line 683) | O_CREAT = 0x100 constant O_DSYNC (line 684) | O_DSYNC = 0x40 constant O_EXCL (line 685) | O_EXCL = 0x400 constant O_EXEC (line 686) | O_EXEC = 0x400000 constant O_LARGEFILE (line 687) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 688) | O_NDELAY = 0x4 constant O_NOCTTY (line 689) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 690) | O_NOFOLLOW = 0x20000 constant O_NOLINKS (line 691) | O_NOLINKS = 0x40000 constant O_NONBLOCK (line 692) | O_NONBLOCK = 0x80 constant O_RDONLY (line 693) | O_RDONLY = 0x0 constant O_RDWR (line 694) | O_RDWR = 0x2 constant O_RSYNC (line 695) | O_RSYNC = 0x8000 constant O_SEARCH (line 696) | O_SEARCH = 0x200000 constant O_SIOCGIFCONF (line 697) | O_SIOCGIFCONF = -0x3ff796ec constant O_SIOCGLIFCONF (line 698) | O_SIOCGLIFCONF = -0x3fef9688 constant O_SYNC (line 699) | O_SYNC = 0x10 constant O_TRUNC (line 700) | O_TRUNC = 0x200 constant O_WRONLY (line 701) | O_WRONLY = 0x1 constant O_XATTR (line 702) | O_XATTR = 0x4000 constant PARENB (line 703) | PARENB = 0x100 constant PAREXT (line 704) | PAREXT = 0x100000 constant PARMRK (line 705) | PARMRK = 0x8 constant PARODD (line 706) | PARODD = 0x200 constant PENDIN (line 707) | PENDIN = 0x4000 constant PRIO_PGRP (line 708) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 709) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 710) | PRIO_USER = 0x2 constant PROT_EXEC (line 711) | PROT_EXEC = 0x4 constant PROT_NONE (line 712) | PROT_NONE = 0x0 constant PROT_READ (line 713) | PROT_READ = 0x1 constant PROT_WRITE (line 714) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 715) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 716) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 717) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 718) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 719) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 720) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 721) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 722) | RLIM_INFINITY = -0x3 constant RTAX_AUTHOR (line 723) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 724) | RTAX_BRD = 0x7 constant RTAX_DST (line 725) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 726) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 727) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 728) | RTAX_IFA = 0x5 constant RTAX_IFP (line 729) | RTAX_IFP = 0x4 constant RTAX_MAX (line 730) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 731) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 732) | RTAX_SRC = 0x8 constant RTA_AUTHOR (line 733) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 734) | RTA_BRD = 0x80 constant RTA_DST (line 735) | RTA_DST = 0x1 constant RTA_GATEWAY (line 736) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 737) | RTA_GENMASK = 0x8 constant RTA_IFA (line 738) | RTA_IFA = 0x20 constant RTA_IFP (line 739) | RTA_IFP = 0x10 constant RTA_NETMASK (line 740) | RTA_NETMASK = 0x4 constant RTA_NUMBITS (line 741) | RTA_NUMBITS = 0x9 constant RTA_SRC (line 742) | RTA_SRC = 0x100 constant RTF_BLACKHOLE (line 743) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONING (line 744) | RTF_CLONING = 0x100 constant RTF_DONE (line 745) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 746) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 747) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 748) | RTF_HOST = 0x4 constant RTF_INDIRECT (line 749) | RTF_INDIRECT = 0x40000 constant RTF_KERNEL (line 750) | RTF_KERNEL = 0x80000 constant RTF_LLINFO (line 751) | RTF_LLINFO = 0x400 constant RTF_MASK (line 752) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 753) | RTF_MODIFIED = 0x20 constant RTF_MULTIRT (line 754) | RTF_MULTIRT = 0x10000 constant RTF_PRIVATE (line 755) | RTF_PRIVATE = 0x2000 constant RTF_PROTO1 (line 756) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 757) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 758) | RTF_REJECT = 0x8 constant RTF_SETSRC (line 759) | RTF_SETSRC = 0x20000 constant RTF_STATIC (line 760) | RTF_STATIC = 0x800 constant RTF_UP (line 761) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 762) | RTF_XRESOLVE = 0x200 constant RTF_ZONE (line 763) | RTF_ZONE = 0x100000 constant RTM_ADD (line 764) | RTM_ADD = 0x1 constant RTM_CHANGE (line 765) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 766) | RTM_CHGADDR = 0xf constant RTM_DELADDR (line 767) | RTM_DELADDR = 0xd constant RTM_DELETE (line 768) | RTM_DELETE = 0x2 constant RTM_FREEADDR (line 769) | RTM_FREEADDR = 0x10 constant RTM_GET (line 770) | RTM_GET = 0x4 constant RTM_IFINFO (line 771) | RTM_IFINFO = 0xe constant RTM_LOCK (line 772) | RTM_LOCK = 0x8 constant RTM_LOSING (line 773) | RTM_LOSING = 0x5 constant RTM_MISS (line 774) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 775) | RTM_NEWADDR = 0xc constant RTM_OLDADD (line 776) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 777) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 778) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 779) | RTM_RESOLVE = 0xb constant RTM_VERSION (line 780) | RTM_VERSION = 0x3 constant RTV_EXPIRE (line 781) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 782) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 783) | RTV_MTU = 0x1 constant RTV_RPIPE (line 784) | RTV_RPIPE = 0x8 constant RTV_RTT (line 785) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 786) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 787) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 788) | RTV_SSTHRESH = 0x20 constant RT_AWARE (line 789) | RT_AWARE = 0x1 constant RUSAGE_CHILDREN (line 790) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 791) | RUSAGE_SELF = 0x0 constant SCM_RIGHTS (line 792) | SCM_RIGHTS = 0x1010 constant SCM_TIMESTAMP (line 793) | SCM_TIMESTAMP = 0x1013 constant SCM_UCRED (line 794) | SCM_UCRED = 0x1012 constant SHUT_RD (line 795) | SHUT_RD = 0x0 constant SHUT_RDWR (line 796) | SHUT_RDWR = 0x2 constant SHUT_WR (line 797) | SHUT_WR = 0x1 constant SIG2STR_MAX (line 798) | SIG2STR_MAX = 0x20 constant SIOCADDMULTI (line 799) | SIOCADDMULTI = -0x7fdf96cf constant SIOCADDRT (line 800) | SIOCADDRT = -0x7fcf8df6 constant SIOCATMARK (line 801) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 802) | SIOCDARP = -0x7fdb96e0 constant SIOCDELMULTI (line 803) | SIOCDELMULTI = -0x7fdf96ce constant SIOCDELRT (line 804) | SIOCDELRT = -0x7fcf8df5 constant SIOCDXARP (line 805) | SIOCDXARP = -0x7fff9658 constant SIOCGARP (line 806) | SIOCGARP = -0x3fdb96e1 constant SIOCGDSTINFO (line 807) | SIOCGDSTINFO = -0x3fff965c constant SIOCGENADDR (line 808) | SIOCGENADDR = -0x3fdf96ab constant SIOCGENPSTATS (line 809) | SIOCGENPSTATS = -0x3fdf96c7 constant SIOCGETLSGCNT (line 810) | SIOCGETLSGCNT = -0x3fef8deb constant SIOCGETNAME (line 811) | SIOCGETNAME = 0x40107334 constant SIOCGETPEER (line 812) | SIOCGETPEER = 0x40107335 constant SIOCGETPROP (line 813) | SIOCGETPROP = -0x3fff8f44 constant SIOCGETSGCNT (line 814) | SIOCGETSGCNT = -0x3feb8deb constant SIOCGETSYNC (line 815) | SIOCGETSYNC = -0x3fdf96d3 constant SIOCGETVIFCNT (line 816) | SIOCGETVIFCNT = -0x3feb8dec constant SIOCGHIWAT (line 817) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 818) | SIOCGIFADDR = -0x3fdf96f3 constant SIOCGIFBRDADDR (line 819) | SIOCGIFBRDADDR = -0x3fdf96e9 constant SIOCGIFCONF (line 820) | SIOCGIFCONF = -0x3ff796a4 constant SIOCGIFDSTADDR (line 821) | SIOCGIFDSTADDR = -0x3fdf96f1 constant SIOCGIFFLAGS (line 822) | SIOCGIFFLAGS = -0x3fdf96ef constant SIOCGIFHWADDR (line 823) | SIOCGIFHWADDR = -0x3fdf9647 constant SIOCGIFINDEX (line 824) | SIOCGIFINDEX = -0x3fdf96a6 constant SIOCGIFMEM (line 825) | SIOCGIFMEM = -0x3fdf96ed constant SIOCGIFMETRIC (line 826) | SIOCGIFMETRIC = -0x3fdf96e5 constant SIOCGIFMTU (line 827) | SIOCGIFMTU = -0x3fdf96ea constant SIOCGIFMUXID (line 828) | SIOCGIFMUXID = -0x3fdf96a8 constant SIOCGIFNETMASK (line 829) | SIOCGIFNETMASK = -0x3fdf96e7 constant SIOCGIFNUM (line 830) | SIOCGIFNUM = 0x40046957 constant SIOCGIP6ADDRPOLICY (line 831) | SIOCGIP6ADDRPOLICY = -0x3fff965e constant SIOCGIPMSFILTER (line 832) | SIOCGIPMSFILTER = -0x3ffb964c constant SIOCGLIFADDR (line 833) | SIOCGLIFADDR = -0x3f87968f constant SIOCGLIFBINDING (line 834) | SIOCGLIFBINDING = -0x3f879666 constant SIOCGLIFBRDADDR (line 835) | SIOCGLIFBRDADDR = -0x3f879685 constant SIOCGLIFCONF (line 836) | SIOCGLIFCONF = -0x3fef965b constant SIOCGLIFDADSTATE (line 837) | SIOCGLIFDADSTATE = -0x3f879642 constant SIOCGLIFDSTADDR (line 838) | SIOCGLIFDSTADDR = -0x3f87968d constant SIOCGLIFFLAGS (line 839) | SIOCGLIFFLAGS = -0x3f87968b constant SIOCGLIFGROUPINFO (line 840) | SIOCGLIFGROUPINFO = -0x3f4b9663 constant SIOCGLIFGROUPNAME (line 841) | SIOCGLIFGROUPNAME = -0x3f879664 constant SIOCGLIFHWADDR (line 842) | SIOCGLIFHWADDR = -0x3f879640 constant SIOCGLIFINDEX (line 843) | SIOCGLIFINDEX = -0x3f87967b constant SIOCGLIFLNKINFO (line 844) | SIOCGLIFLNKINFO = -0x3f879674 constant SIOCGLIFMETRIC (line 845) | SIOCGLIFMETRIC = -0x3f879681 constant SIOCGLIFMTU (line 846) | SIOCGLIFMTU = -0x3f879686 constant SIOCGLIFMUXID (line 847) | SIOCGLIFMUXID = -0x3f87967d constant SIOCGLIFNETMASK (line 848) | SIOCGLIFNETMASK = -0x3f879683 constant SIOCGLIFNUM (line 849) | SIOCGLIFNUM = -0x3ff3967e constant SIOCGLIFSRCOF (line 850) | SIOCGLIFSRCOF = -0x3fef964f constant SIOCGLIFSUBNET (line 851) | SIOCGLIFSUBNET = -0x3f879676 constant SIOCGLIFTOKEN (line 852) | SIOCGLIFTOKEN = -0x3f879678 constant SIOCGLIFUSESRC (line 853) | SIOCGLIFUSESRC = -0x3f879651 constant SIOCGLIFZONE (line 854) | SIOCGLIFZONE = -0x3f879656 constant SIOCGLOWAT (line 855) | SIOCGLOWAT = 0x40047303 constant SIOCGMSFILTER (line 856) | SIOCGMSFILTER = -0x3ffb964e constant SIOCGPGRP (line 857) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMP (line 858) | SIOCGSTAMP = -0x3fef9646 constant SIOCGXARP (line 859) | SIOCGXARP = -0x3fff9659 constant SIOCIFDETACH (line 860) | SIOCIFDETACH = -0x7fdf96c8 constant SIOCILB (line 861) | SIOCILB = -0x3ffb9645 constant SIOCLIFADDIF (line 862) | SIOCLIFADDIF = -0x3f879691 constant SIOCLIFDELND (line 863) | SIOCLIFDELND = -0x7f879673 constant SIOCLIFGETND (line 864) | SIOCLIFGETND = -0x3f879672 constant SIOCLIFREMOVEIF (line 865) | SIOCLIFREMOVEIF = -0x7f879692 constant SIOCLIFSETND (line 866) | SIOCLIFSETND = -0x7f879671 constant SIOCLOWER (line 867) | SIOCLOWER = -0x7fdf96d7 constant SIOCSARP (line 868) | SIOCSARP = -0x7fdb96e2 constant SIOCSCTPGOPT (line 869) | SIOCSCTPGOPT = -0x3fef9653 constant SIOCSCTPPEELOFF (line 870) | SIOCSCTPPEELOFF = -0x3ffb9652 constant SIOCSCTPSOPT (line 871) | SIOCSCTPSOPT = -0x7fef9654 constant SIOCSENABLESDP (line 872) | SIOCSENABLESDP = -0x3ffb9649 constant SIOCSETPROP (line 873) | SIOCSETPROP = -0x7ffb8f43 constant SIOCSETSYNC (line 874) | SIOCSETSYNC = -0x7fdf96d4 constant SIOCSHIWAT (line 875) | SIOCSHIWAT = -0x7ffb8d00 constant SIOCSIFADDR (line 876) | SIOCSIFADDR = -0x7fdf96f4 constant SIOCSIFBRDADDR (line 877) | SIOCSIFBRDADDR = -0x7fdf96e8 constant SIOCSIFDSTADDR (line 878) | SIOCSIFDSTADDR = -0x7fdf96f2 constant SIOCSIFFLAGS (line 879) | SIOCSIFFLAGS = -0x7fdf96f0 constant SIOCSIFINDEX (line 880) | SIOCSIFINDEX = -0x7fdf96a5 constant SIOCSIFMEM (line 881) | SIOCSIFMEM = -0x7fdf96ee constant SIOCSIFMETRIC (line 882) | SIOCSIFMETRIC = -0x7fdf96e4 constant SIOCSIFMTU (line 883) | SIOCSIFMTU = -0x7fdf96eb constant SIOCSIFMUXID (line 884) | SIOCSIFMUXID = -0x7fdf96a7 constant SIOCSIFNAME (line 885) | SIOCSIFNAME = -0x7fdf96b7 constant SIOCSIFNETMASK (line 886) | SIOCSIFNETMASK = -0x7fdf96e6 constant SIOCSIP6ADDRPOLICY (line 887) | SIOCSIP6ADDRPOLICY = -0x7fff965d constant SIOCSIPMSFILTER (line 888) | SIOCSIPMSFILTER = -0x7ffb964b constant SIOCSLGETREQ (line 889) | SIOCSLGETREQ = -0x3fdf96b9 constant SIOCSLIFADDR (line 890) | SIOCSLIFADDR = -0x7f879690 constant SIOCSLIFBRDADDR (line 891) | SIOCSLIFBRDADDR = -0x7f879684 constant SIOCSLIFDSTADDR (line 892) | SIOCSLIFDSTADDR = -0x7f87968e constant SIOCSLIFFLAGS (line 893) | SIOCSLIFFLAGS = -0x7f87968c constant SIOCSLIFGROUPNAME (line 894) | SIOCSLIFGROUPNAME = -0x7f879665 constant SIOCSLIFINDEX (line 895) | SIOCSLIFINDEX = -0x7f87967a constant SIOCSLIFLNKINFO (line 896) | SIOCSLIFLNKINFO = -0x7f879675 constant SIOCSLIFMETRIC (line 897) | SIOCSLIFMETRIC = -0x7f879680 constant SIOCSLIFMTU (line 898) | SIOCSLIFMTU = -0x7f879687 constant SIOCSLIFMUXID (line 899) | SIOCSLIFMUXID = -0x7f87967c constant SIOCSLIFNAME (line 900) | SIOCSLIFNAME = -0x3f87967f constant SIOCSLIFNETMASK (line 901) | SIOCSLIFNETMASK = -0x7f879682 constant SIOCSLIFPREFIX (line 902) | SIOCSLIFPREFIX = -0x3f879641 constant SIOCSLIFSUBNET (line 903) | SIOCSLIFSUBNET = -0x7f879677 constant SIOCSLIFTOKEN (line 904) | SIOCSLIFTOKEN = -0x7f879679 constant SIOCSLIFUSESRC (line 905) | SIOCSLIFUSESRC = -0x7f879650 constant SIOCSLIFZONE (line 906) | SIOCSLIFZONE = -0x7f879655 constant SIOCSLOWAT (line 907) | SIOCSLOWAT = -0x7ffb8cfe constant SIOCSLSTAT (line 908) | SIOCSLSTAT = -0x7fdf96b8 constant SIOCSMSFILTER (line 909) | SIOCSMSFILTER = -0x7ffb964d constant SIOCSPGRP (line 910) | SIOCSPGRP = -0x7ffb8cf8 constant SIOCSPROMISC (line 911) | SIOCSPROMISC = -0x7ffb96d0 constant SIOCSQPTR (line 912) | SIOCSQPTR = -0x3ffb9648 constant SIOCSSDSTATS (line 913) | SIOCSSDSTATS = -0x3fdf96d2 constant SIOCSSESTATS (line 914) | SIOCSSESTATS = -0x3fdf96d1 constant SIOCSXARP (line 915) | SIOCSXARP = -0x7fff965a constant SIOCTMYADDR (line 916) | SIOCTMYADDR = -0x3ff79670 constant SIOCTMYSITE (line 917) | SIOCTMYSITE = -0x3ff7966e constant SIOCTONLINK (line 918) | SIOCTONLINK = -0x3ff7966f constant SIOCUPPER (line 919) | SIOCUPPER = -0x7fdf96d8 constant SIOCX25RCV (line 920) | SIOCX25RCV = -0x3fdf96c4 constant SIOCX25TBL (line 921) | SIOCX25TBL = -0x3fdf96c3 constant SIOCX25XMT (line 922) | SIOCX25XMT = -0x3fdf96c5 constant SIOCXPROTO (line 923) | SIOCXPROTO = 0x20007337 constant SOCK_CLOEXEC (line 924) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 925) | SOCK_DGRAM = 0x1 constant SOCK_NDELAY (line 926) | SOCK_NDELAY = 0x200000 constant SOCK_NONBLOCK (line 927) | SOCK_NONBLOCK = 0x100000 constant SOCK_RAW (line 928) | SOCK_RAW = 0x4 constant SOCK_RDM (line 929) | SOCK_RDM = 0x5 constant SOCK_SEQPACKET (line 930) | SOCK_SEQPACKET = 0x6 constant SOCK_STREAM (line 931) | SOCK_STREAM = 0x2 constant SOCK_TYPE_MASK (line 932) | SOCK_TYPE_MASK = 0xffff constant SOL_FILTER (line 933) | SOL_FILTER = 0xfffc constant SOL_PACKET (line 934) | SOL_PACKET = 0xfffd constant SOL_ROUTE (line 935) | SOL_ROUTE = 0xfffe constant SOL_SOCKET (line 936) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 937) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 938) | SO_ACCEPTCONN = 0x2 constant SO_ALL (line 939) | SO_ALL = 0x3f constant SO_ALLZONES (line 940) | SO_ALLZONES = 0x1014 constant SO_ANON_MLP (line 941) | SO_ANON_MLP = 0x100a constant SO_ATTACH_FILTER (line 942) | SO_ATTACH_FILTER = 0x40000001 constant SO_BAND (line 943) | SO_BAND = 0x4000 constant SO_BROADCAST (line 944) | SO_BROADCAST = 0x20 constant SO_COPYOPT (line 945) | SO_COPYOPT = 0x80000 constant SO_DEBUG (line 946) | SO_DEBUG = 0x1 constant SO_DELIM (line 947) | SO_DELIM = 0x8000 constant SO_DETACH_FILTER (line 948) | SO_DETACH_FILTER = 0x40000002 constant SO_DGRAM_ERRIND (line 949) | SO_DGRAM_ERRIND = 0x200 constant SO_DOMAIN (line 950) | SO_DOMAIN = 0x100c constant SO_DONTLINGER (line 951) | SO_DONTLINGER = -0x81 constant SO_DONTROUTE (line 952) | SO_DONTROUTE = 0x10 constant SO_ERROPT (line 953) | SO_ERROPT = 0x40000 constant SO_ERROR (line 954) | SO_ERROR = 0x1007 constant SO_EXCLBIND (line 955) | SO_EXCLBIND = 0x1015 constant SO_HIWAT (line 956) | SO_HIWAT = 0x10 constant SO_ISNTTY (line 957) | SO_ISNTTY = 0x800 constant SO_ISTTY (line 958) | SO_ISTTY = 0x400 constant SO_KEEPALIVE (line 959) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 960) | SO_LINGER = 0x80 constant SO_LOWAT (line 961) | SO_LOWAT = 0x20 constant SO_MAC_EXEMPT (line 962) | SO_MAC_EXEMPT = 0x100b constant SO_MAC_IMPLICIT (line 963) | SO_MAC_IMPLICIT = 0x1016 constant SO_MAXBLK (line 964) | SO_MAXBLK = 0x100000 constant SO_MAXPSZ (line 965) | SO_MAXPSZ = 0x8 constant SO_MINPSZ (line 966) | SO_MINPSZ = 0x4 constant SO_MREADOFF (line 967) | SO_MREADOFF = 0x80 constant SO_MREADON (line 968) | SO_MREADON = 0x40 constant SO_NDELOFF (line 969) | SO_NDELOFF = 0x200 constant SO_NDELON (line 970) | SO_NDELON = 0x100 constant SO_NODELIM (line 971) | SO_NODELIM = 0x10000 constant SO_OOBINLINE (line 972) | SO_OOBINLINE = 0x100 constant SO_PROTOTYPE (line 973) | SO_PROTOTYPE = 0x1009 constant SO_RCVBUF (line 974) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 975) | SO_RCVLOWAT = 0x1004 constant SO_RCVPSH (line 976) | SO_RCVPSH = 0x100d constant SO_RCVTIMEO (line 977) | SO_RCVTIMEO = 0x1006 constant SO_READOPT (line 978) | SO_READOPT = 0x1 constant SO_RECVUCRED (line 979) | SO_RECVUCRED = 0x400 constant SO_REUSEADDR (line 980) | SO_REUSEADDR = 0x4 constant SO_SECATTR (line 981) | SO_SECATTR = 0x1011 constant SO_SNDBUF (line 982) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 983) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 984) | SO_SNDTIMEO = 0x1005 constant SO_STRHOLD (line 985) | SO_STRHOLD = 0x20000 constant SO_TAIL (line 986) | SO_TAIL = 0x200000 constant SO_TIMESTAMP (line 987) | SO_TIMESTAMP = 0x1013 constant SO_TONSTOP (line 988) | SO_TONSTOP = 0x2000 constant SO_TOSTOP (line 989) | SO_TOSTOP = 0x1000 constant SO_TYPE (line 990) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 991) | SO_USELOOPBACK = 0x40 constant SO_VRRP (line 992) | SO_VRRP = 0x1017 constant SO_WROFF (line 993) | SO_WROFF = 0x2 constant TAB0 (line 994) | TAB0 = 0x0 constant TAB1 (line 995) | TAB1 = 0x800 constant TAB2 (line 996) | TAB2 = 0x1000 constant TAB3 (line 997) | TAB3 = 0x1800 constant TABDLY (line 998) | TABDLY = 0x1800 constant TCFLSH (line 999) | TCFLSH = 0x5407 constant TCGETA (line 1000) | TCGETA = 0x5401 constant TCGETS (line 1001) | TCGETS = 0x540d constant TCIFLUSH (line 1002) | TCIFLUSH = 0x0 constant TCIOFF (line 1003) | TCIOFF = 0x2 constant TCIOFLUSH (line 1004) | TCIOFLUSH = 0x2 constant TCION (line 1005) | TCION = 0x3 constant TCOFLUSH (line 1006) | TCOFLUSH = 0x1 constant TCOOFF (line 1007) | TCOOFF = 0x0 constant TCOON (line 1008) | TCOON = 0x1 constant TCP_ABORT_THRESHOLD (line 1009) | TCP_ABORT_THRESHOLD = 0x11 constant TCP_ANONPRIVBIND (line 1010) | TCP_ANONPRIVBIND = 0x20 constant TCP_CONN_ABORT_THRESHOLD (line 1011) | TCP_CONN_ABORT_THRESHOLD = 0x13 constant TCP_CONN_NOTIFY_THRESHOLD (line 1012) | TCP_CONN_NOTIFY_THRESHOLD = 0x12 constant TCP_CORK (line 1013) | TCP_CORK = 0x18 constant TCP_EXCLBIND (line 1014) | TCP_EXCLBIND = 0x21 constant TCP_INIT_CWND (line 1015) | TCP_INIT_CWND = 0x15 constant TCP_KEEPALIVE (line 1016) | TCP_KEEPALIVE = 0x8 constant TCP_KEEPALIVE_ABORT_THRESHOLD (line 1017) | TCP_KEEPALIVE_ABORT_THRESHOLD = 0x17 constant TCP_KEEPALIVE_THRESHOLD (line 1018) | TCP_KEEPALIVE_THRESHOLD = 0x16 constant TCP_KEEPCNT (line 1019) | TCP_KEEPCNT = 0x23 constant TCP_KEEPIDLE (line 1020) | TCP_KEEPIDLE = 0x22 constant TCP_KEEPINTVL (line 1021) | TCP_KEEPINTVL = 0x24 constant TCP_LINGER2 (line 1022) | TCP_LINGER2 = 0x1c constant TCP_MAXSEG (line 1023) | TCP_MAXSEG = 0x2 constant TCP_MSS (line 1024) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1025) | TCP_NODELAY = 0x1 constant TCP_NOTIFY_THRESHOLD (line 1026) | TCP_NOTIFY_THRESHOLD = 0x10 constant TCP_RECVDSTADDR (line 1027) | TCP_RECVDSTADDR = 0x14 constant TCP_RTO_INITIAL (line 1028) | TCP_RTO_INITIAL = 0x19 constant TCP_RTO_MAX (line 1029) | TCP_RTO_MAX = 0x1b constant TCP_RTO_MIN (line 1030) | TCP_RTO_MIN = 0x1a constant TCSAFLUSH (line 1031) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1032) | TCSBRK = 0x5405 constant TCSETA (line 1033) | TCSETA = 0x5402 constant TCSETAF (line 1034) | TCSETAF = 0x5404 constant TCSETAW (line 1035) | TCSETAW = 0x5403 constant TCSETS (line 1036) | TCSETS = 0x540e constant TCSETSF (line 1037) | TCSETSF = 0x5410 constant TCSETSW (line 1038) | TCSETSW = 0x540f constant TCXONC (line 1039) | TCXONC = 0x5406 constant TIOC (line 1040) | TIOC = 0x5400 constant TIOCCBRK (line 1041) | TIOCCBRK = 0x747a constant TIOCCDTR (line 1042) | TIOCCDTR = 0x7478 constant TIOCCILOOP (line 1043) | TIOCCILOOP = 0x746c constant TIOCEXCL (line 1044) | TIOCEXCL = 0x740d constant TIOCFLUSH (line 1045) | TIOCFLUSH = 0x7410 constant TIOCGETC (line 1046) | TIOCGETC = 0x7412 constant TIOCGETD (line 1047) | TIOCGETD = 0x7400 constant TIOCGETP (line 1048) | TIOCGETP = 0x7408 constant TIOCGLTC (line 1049) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1050) | TIOCGPGRP = 0x7414 constant TIOCGPPS (line 1051) | TIOCGPPS = 0x547d constant TIOCGPPSEV (line 1052) | TIOCGPPSEV = 0x547f constant TIOCGSID (line 1053) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1054) | TIOCGSOFTCAR = 0x5469 constant TIOCGWINSZ (line 1055) | TIOCGWINSZ = 0x5468 constant TIOCHPCL (line 1056) | TIOCHPCL = 0x7402 constant TIOCKBOF (line 1057) | TIOCKBOF = 0x5409 constant TIOCKBON (line 1058) | TIOCKBON = 0x5408 constant TIOCLBIC (line 1059) | TIOCLBIC = 0x747e constant TIOCLBIS (line 1060) | TIOCLBIS = 0x747f constant TIOCLGET (line 1061) | TIOCLGET = 0x747c constant TIOCLSET (line 1062) | TIOCLSET = 0x747d constant TIOCMBIC (line 1063) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1064) | TIOCMBIS = 0x741b constant TIOCMGET (line 1065) | TIOCMGET = 0x741d constant TIOCMSET (line 1066) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1067) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1068) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1069) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1070) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1071) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1072) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1073) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1074) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1075) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1076) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1077) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1078) | TIOCNOTTY = 0x7471 constant TIOCNXCL (line 1079) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1080) | TIOCOUTQ = 0x7473 constant TIOCREMOTE (line 1081) | TIOCREMOTE = 0x741e constant TIOCSBRK (line 1082) | TIOCSBRK = 0x747b constant TIOCSCTTY (line 1083) | TIOCSCTTY = 0x7484 constant TIOCSDTR (line 1084) | TIOCSDTR = 0x7479 constant TIOCSETC (line 1085) | TIOCSETC = 0x7411 constant TIOCSETD (line 1086) | TIOCSETD = 0x7401 constant TIOCSETN (line 1087) | TIOCSETN = 0x740a constant TIOCSETP (line 1088) | TIOCSETP = 0x7409 constant TIOCSIGNAL (line 1089) | TIOCSIGNAL = 0x741f constant TIOCSILOOP (line 1090) | TIOCSILOOP = 0x746d constant TIOCSLTC (line 1091) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1092) | TIOCSPGRP = 0x7415 constant TIOCSPPS (line 1093) | TIOCSPPS = 0x547e constant TIOCSSOFTCAR (line 1094) | TIOCSSOFTCAR = 0x546a constant TIOCSTART (line 1095) | TIOCSTART = 0x746e constant TIOCSTI (line 1096) | TIOCSTI = 0x7417 constant TIOCSTOP (line 1097) | TIOCSTOP = 0x746f constant TIOCSWINSZ (line 1098) | TIOCSWINSZ = 0x5467 constant TOSTOP (line 1099) | TOSTOP = 0x100 constant VCEOF (line 1100) | VCEOF = 0x8 constant VCEOL (line 1101) | VCEOL = 0x9 constant VDISCARD (line 1102) | VDISCARD = 0xd constant VDSUSP (line 1103) | VDSUSP = 0xb constant VEOF (line 1104) | VEOF = 0x4 constant VEOL (line 1105) | VEOL = 0x5 constant VEOL2 (line 1106) | VEOL2 = 0x6 constant VERASE (line 1107) | VERASE = 0x2 constant VINTR (line 1108) | VINTR = 0x0 constant VKILL (line 1109) | VKILL = 0x3 constant VLNEXT (line 1110) | VLNEXT = 0xf constant VMIN (line 1111) | VMIN = 0x4 constant VQUIT (line 1112) | VQUIT = 0x1 constant VREPRINT (line 1113) | VREPRINT = 0xc constant VSTART (line 1114) | VSTART = 0x8 constant VSTATUS (line 1115) | VSTATUS = 0x10 constant VSTOP (line 1116) | VSTOP = 0x9 constant VSUSP (line 1117) | VSUSP = 0xa constant VSWTCH (line 1118) | VSWTCH = 0x7 constant VT0 (line 1119) | VT0 = 0x0 constant VT1 (line 1120) | VT1 = 0x4000 constant VTDLY (line 1121) | VTDLY = 0x4000 constant VTIME (line 1122) | VTIME = 0x5 constant VWERASE (line 1123) | VWERASE = 0xe constant WCONTFLG (line 1124) | WCONTFLG = 0xffff constant WCONTINUED (line 1125) | WCONTINUED = 0x8 constant WCOREFLG (line 1126) | WCOREFLG = 0x80 constant WEXITED (line 1127) | WEXITED = 0x1 constant WNOHANG (line 1128) | WNOHANG = 0x40 constant WNOWAIT (line 1129) | WNOWAIT = 0x80 constant WOPTMASK (line 1130) | WOPTMASK = 0xcf constant WRAP (line 1131) | WRAP = 0x20000 constant WSIGMASK (line 1132) | WSIGMASK = 0x7f constant WSTOPFLG (line 1133) | WSTOPFLG = 0x7f constant WSTOPPED (line 1134) | WSTOPPED = 0x4 constant WTRAPPED (line 1135) | WTRAPPED = 0x2 constant WUNTRACED (line 1136) | WUNTRACED = 0x4 constant XCASE (line 1137) | XCASE = 0x4 constant XTABS (line 1138) | XTABS = 0x1800 constant E2BIG (line 1143) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1144) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1145) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1146) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1147) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1148) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1149) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1150) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1151) | EBADE = syscall.Errno(0x32) constant EBADF (line 1152) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1153) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1154) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1155) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1156) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1157) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1158) | EBFONT = syscall.Errno(0x39) constant EBUSY (line 1159) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1160) | ECANCELED = syscall.Errno(0x2f) constant ECHILD (line 1161) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1162) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1163) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1164) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1165) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1166) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1167) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1168) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1169) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1170) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1171) | EDQUOT = syscall.Errno(0x31) constant EEXIST (line 1172) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1173) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1174) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1175) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1176) | EHOSTUNREACH = syscall.Errno(0x94) constant EIDRM (line 1177) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1178) | EILSEQ = syscall.Errno(0x58) constant EINPROGRESS (line 1179) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1180) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1181) | EINVAL = syscall.Errno(0x16) constant EIO (line 1182) | EIO = syscall.Errno(0x5) constant EISCONN (line 1183) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1184) | EISDIR = syscall.Errno(0x15) constant EL2HLT (line 1185) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1186) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1187) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1188) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1189) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1190) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1191) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1192) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1193) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1194) | ELNRNG = syscall.Errno(0x29) constant ELOCKUNMAPPED (line 1195) | ELOCKUNMAPPED = syscall.Errno(0x48) constant ELOOP (line 1196) | ELOOP = syscall.Errno(0x5a) constant EMFILE (line 1197) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1198) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1199) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1200) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1201) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENETDOWN (line 1202) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1203) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1204) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1205) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1206) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1207) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1208) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1209) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1210) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1211) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1212) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1213) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1214) | ENOLINK = syscall.Errno(0x43) constant ENOMEM (line 1215) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1216) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1217) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1218) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1219) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1220) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1221) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1222) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1223) | ENOSYS = syscall.Errno(0x59) constant ENOTACTIVE (line 1224) | ENOTACTIVE = syscall.Errno(0x49) constant ENOTBLK (line 1225) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1226) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1227) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1228) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTRECOVERABLE (line 1229) | ENOTRECOVERABLE = syscall.Errno(0x3b) constant ENOTSOCK (line 1230) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1231) | ENOTSUP = syscall.Errno(0x30) constant ENOTTY (line 1232) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1233) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1234) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1235) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1236) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1237) | EOWNERDEAD = syscall.Errno(0x3a) constant EPERM (line 1238) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1239) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1240) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1241) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1242) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1243) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1244) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1245) | EREMCHG = syscall.Errno(0x52) constant EREMOTE (line 1246) | EREMOTE = syscall.Errno(0x42) constant ERESTART (line 1247) | ERESTART = syscall.Errno(0x5b) constant EROFS (line 1248) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1249) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1250) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1251) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1252) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1253) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1254) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1255) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1256) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1257) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1258) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1259) | ETXTBSY = syscall.Errno(0x1a) constant EUNATCH (line 1260) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1261) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1262) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1263) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1264) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1269) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1270) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1271) | SIGBUS = syscall.Signal(0xa) constant SIGCANCEL (line 1272) | SIGCANCEL = syscall.Signal(0x24) constant SIGCHLD (line 1273) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1274) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1275) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1276) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1277) | SIGFPE = syscall.Signal(0x8) constant SIGFREEZE (line 1278) | SIGFREEZE = syscall.Signal(0x22) constant SIGHUP (line 1279) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1280) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1281) | SIGINFO = syscall.Signal(0x29) constant SIGINT (line 1282) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1283) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1284) | SIGIOT = syscall.Signal(0x6) constant SIGJVM1 (line 1285) | SIGJVM1 = syscall.Signal(0x27) constant SIGJVM2 (line 1286) | SIGJVM2 = syscall.Signal(0x28) constant SIGKILL (line 1287) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1288) | SIGLOST = syscall.Signal(0x25) constant SIGLWP (line 1289) | SIGLWP = syscall.Signal(0x21) constant SIGPIPE (line 1290) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1291) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1292) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1293) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1294) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1295) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1296) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1297) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1298) | SIGTERM = syscall.Signal(0xf) constant SIGTHAW (line 1299) | SIGTHAW = syscall.Signal(0x23) constant SIGTRAP (line 1300) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1301) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1302) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1303) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1304) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1305) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1306) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1307) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWAITING (line 1308) | SIGWAITING = syscall.Signal(0x20) constant SIGWINCH (line 1309) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1310) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1311) | SIGXFSZ = syscall.Signal(0x1f) constant SIGXRES (line 1312) | SIGXRES = syscall.Signal(0x26) FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function ptrace (line 369) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 379) | func pipe() (r int, w int, err error) { function kill (line 391) | func kill(pid int, signum int, posix int) (err error) { function ioctl (line 401) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 411) | func Access(path string, mode uint32) (err error) { function Adjtime (line 426) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 436) | func Chdir(path string) (err error) { function Chflags (line 451) | func Chflags(path string, flags int) (err error) { function Chmod (line 466) | func Chmod(path string, mode uint32) (err error) { function Chown (line 481) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 496) | func Chroot(path string) (err error) { function Close (line 511) | func Close(fd int) (err error) { function Dup (line 521) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 532) | func Dup2(from int, to int) (err error) { function Exchangedata (line 542) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 562) | func Exit(code int) { function Faccessat (line 569) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 584) | func Fchdir(fd int) (err error) { function Fchflags (line 594) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 604) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 614) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 629) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 639) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 654) | func Flock(fd int, how int) (err error) { function Fpathconf (line 664) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 675) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 685) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 695) | func Fsync(fd int) (err error) { function Ftruncate (line 705) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 715) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 732) | func Getdtablesize() (size int) { function Getegid (line 740) | func Getegid() (egid int) { function Geteuid (line 748) | func Geteuid() (uid int) { function Getgid (line 756) | func Getgid() (gid int) { function Getpgid (line 764) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 775) | func Getpgrp() (pgrp int) { function Getpid (line 783) | func Getpid() (pid int) { function Getppid (line 791) | func Getppid() (ppid int) { function Getpriority (line 799) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 810) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 820) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 830) | func Getsid(pid int) (sid int, err error) { function Getuid (line 841) | func Getuid() (uid int) { function Issetugid (line 849) | func Issetugid() (tainted bool) { function Kqueue (line 857) | func Kqueue() (fd int, err error) { function Lchown (line 868) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 883) | func Link(path string, link string) (err error) { function Linkat (line 903) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 923) | func Listen(s int, backlog int) (err error) { function Lstat (line 933) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 948) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 963) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 978) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 993) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 1008) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1024) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1040) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1056) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1073) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1090) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1107) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1129) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1151) | func Rename(from string, to string) (err error) { function Renameat (line 1171) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1191) | func Revoke(path string) (err error) { function Rmdir (line 1206) | func Rmdir(path string) (err error) { function Seek (line 1221) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1232) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1242) | func Setegid(egid int) (err error) { function Seteuid (line 1252) | func Seteuid(euid int) (err error) { function Setgid (line 1262) | func Setgid(gid int) (err error) { function Setlogin (line 1272) | func Setlogin(name string) (err error) { function Setpgid (line 1287) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1297) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1307) | func Setprivexec(flag int) (err error) { function Setregid (line 1317) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1327) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1337) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1347) | func Setsid() (pid int, err error) { function Settimeofday (line 1358) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1368) | func Setuid(uid int) (err error) { function Stat (line 1378) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1393) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1408) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1428) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1448) | func Sync() (err error) { function Truncate (line 1458) | func Truncate(path string, length int64) (err error) { function Umask (line 1473) | func Umask(newmask int) (oldmask int) { function Undelete (line 1481) | func Undelete(path string) (err error) { function Unlink (line 1496) | func Unlink(path string) (err error) { function Unlinkat (line 1511) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1526) | func Unmount(path string, flags int) (err error) { function write (line 1541) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1558) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1569) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1579) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1590) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1601) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function ptrace (line 369) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 379) | func pipe() (r int, w int, err error) { function kill (line 391) | func kill(pid int, signum int, posix int) (err error) { function ioctl (line 401) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 411) | func Access(path string, mode uint32) (err error) { function Adjtime (line 426) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 436) | func Chdir(path string) (err error) { function Chflags (line 451) | func Chflags(path string, flags int) (err error) { function Chmod (line 466) | func Chmod(path string, mode uint32) (err error) { function Chown (line 481) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 496) | func Chroot(path string) (err error) { function Close (line 511) | func Close(fd int) (err error) { function Dup (line 521) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 532) | func Dup2(from int, to int) (err error) { function Exchangedata (line 542) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 562) | func Exit(code int) { function Faccessat (line 569) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 584) | func Fchdir(fd int) (err error) { function Fchflags (line 594) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 604) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 614) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 629) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 639) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 654) | func Flock(fd int, how int) (err error) { function Fpathconf (line 664) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 675) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 685) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 695) | func Fsync(fd int) (err error) { function Ftruncate (line 705) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 715) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 732) | func Getdtablesize() (size int) { function Getegid (line 740) | func Getegid() (egid int) { function Geteuid (line 748) | func Geteuid() (uid int) { function Getgid (line 756) | func Getgid() (gid int) { function Getpgid (line 764) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 775) | func Getpgrp() (pgrp int) { function Getpid (line 783) | func Getpid() (pid int) { function Getppid (line 791) | func Getppid() (ppid int) { function Getpriority (line 799) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 810) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 820) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 830) | func Getsid(pid int) (sid int, err error) { function Getuid (line 841) | func Getuid() (uid int) { function Issetugid (line 849) | func Issetugid() (tainted bool) { function Kqueue (line 857) | func Kqueue() (fd int, err error) { function Lchown (line 868) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 883) | func Link(path string, link string) (err error) { function Linkat (line 903) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 923) | func Listen(s int, backlog int) (err error) { function Lstat (line 933) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 948) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 963) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 978) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 993) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 1008) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1024) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1040) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1056) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1073) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1090) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1107) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1129) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1151) | func Rename(from string, to string) (err error) { function Renameat (line 1171) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1191) | func Revoke(path string) (err error) { function Rmdir (line 1206) | func Rmdir(path string) (err error) { function Seek (line 1221) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1232) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1242) | func Setegid(egid int) (err error) { function Seteuid (line 1252) | func Seteuid(euid int) (err error) { function Setgid (line 1262) | func Setgid(gid int) (err error) { function Setlogin (line 1272) | func Setlogin(name string) (err error) { function Setpgid (line 1287) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1297) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1307) | func Setprivexec(flag int) (err error) { function Setregid (line 1317) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1327) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1337) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1347) | func Setsid() (pid int, err error) { function Settimeofday (line 1358) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1368) | func Setuid(uid int) (err error) { function Stat (line 1378) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1393) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1408) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1428) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1448) | func Sync() (err error) { function Truncate (line 1458) | func Truncate(path string, length int64) (err error) { function Umask (line 1473) | func Umask(newmask int) (oldmask int) { function Undelete (line 1481) | func Undelete(path string) (err error) { function Unlink (line 1496) | func Unlink(path string) (err error) { function Unlinkat (line 1511) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1526) | func Unmount(path string, flags int) (err error) { function write (line 1541) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1558) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1569) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1579) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1590) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1601) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function ptrace (line 369) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 379) | func pipe() (r int, w int, err error) { function kill (line 391) | func kill(pid int, signum int, posix int) (err error) { function ioctl (line 401) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 411) | func Access(path string, mode uint32) (err error) { function Adjtime (line 426) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 436) | func Chdir(path string) (err error) { function Chflags (line 451) | func Chflags(path string, flags int) (err error) { function Chmod (line 466) | func Chmod(path string, mode uint32) (err error) { function Chown (line 481) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 496) | func Chroot(path string) (err error) { function Close (line 511) | func Close(fd int) (err error) { function Dup (line 521) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 532) | func Dup2(from int, to int) (err error) { function Exchangedata (line 542) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 562) | func Exit(code int) { function Faccessat (line 569) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 584) | func Fchdir(fd int) (err error) { function Fchflags (line 594) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 604) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 614) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 629) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 639) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 654) | func Flock(fd int, how int) (err error) { function Fpathconf (line 664) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 675) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 685) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 695) | func Fsync(fd int) (err error) { function Ftruncate (line 705) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 715) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 732) | func Getdtablesize() (size int) { function Getegid (line 740) | func Getegid() (egid int) { function Geteuid (line 748) | func Geteuid() (uid int) { function Getgid (line 756) | func Getgid() (gid int) { function Getpgid (line 764) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 775) | func Getpgrp() (pgrp int) { function Getpid (line 783) | func Getpid() (pid int) { function Getppid (line 791) | func Getppid() (ppid int) { function Getpriority (line 799) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 810) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 820) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 830) | func Getsid(pid int) (sid int, err error) { function Getuid (line 841) | func Getuid() (uid int) { function Issetugid (line 849) | func Issetugid() (tainted bool) { function Kqueue (line 857) | func Kqueue() (fd int, err error) { function Lchown (line 868) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 883) | func Link(path string, link string) (err error) { function Linkat (line 903) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 923) | func Listen(s int, backlog int) (err error) { function Lstat (line 933) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 948) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 963) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 978) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 993) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 1008) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1024) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1040) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1056) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1073) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1090) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1107) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1129) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1151) | func Rename(from string, to string) (err error) { function Renameat (line 1171) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1191) | func Revoke(path string) (err error) { function Rmdir (line 1206) | func Rmdir(path string) (err error) { function Seek (line 1221) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1232) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1242) | func Setegid(egid int) (err error) { function Seteuid (line 1252) | func Seteuid(euid int) (err error) { function Setgid (line 1262) | func Setgid(gid int) (err error) { function Setlogin (line 1272) | func Setlogin(name string) (err error) { function Setpgid (line 1287) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1297) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1307) | func Setprivexec(flag int) (err error) { function Setregid (line 1317) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1327) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1337) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1347) | func Setsid() (pid int, err error) { function Settimeofday (line 1358) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1368) | func Setuid(uid int) (err error) { function Stat (line 1378) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1393) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1408) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1428) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1448) | func Sync() (err error) { function Truncate (line 1458) | func Truncate(path string, length int64) (err error) { function Umask (line 1473) | func Umask(newmask int) (oldmask int) { function Undelete (line 1481) | func Undelete(path string) (err error) { function Unlink (line 1496) | func Unlink(path string) (err error) { function Unlinkat (line 1511) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1526) | func Unmount(path string, flags int) (err error) { function write (line 1541) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1558) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1569) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1579) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1590) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1601) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function ptrace (line 369) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 379) | func pipe() (r int, w int, err error) { function kill (line 391) | func kill(pid int, signum int, posix int) (err error) { function ioctl (line 401) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 411) | func Access(path string, mode uint32) (err error) { function Adjtime (line 426) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 436) | func Chdir(path string) (err error) { function Chflags (line 451) | func Chflags(path string, flags int) (err error) { function Chmod (line 466) | func Chmod(path string, mode uint32) (err error) { function Chown (line 481) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 496) | func Chroot(path string) (err error) { function Close (line 511) | func Close(fd int) (err error) { function Dup (line 521) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 532) | func Dup2(from int, to int) (err error) { function Exchangedata (line 542) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 562) | func Exit(code int) { function Faccessat (line 569) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 584) | func Fchdir(fd int) (err error) { function Fchflags (line 594) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 604) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 614) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 629) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 639) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 654) | func Flock(fd int, how int) (err error) { function Fpathconf (line 664) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 675) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 685) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 695) | func Fsync(fd int) (err error) { function Ftruncate (line 705) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 715) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 732) | func Getdtablesize() (size int) { function Getegid (line 740) | func Getegid() (egid int) { function Geteuid (line 748) | func Geteuid() (uid int) { function Getgid (line 756) | func Getgid() (gid int) { function Getpgid (line 764) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 775) | func Getpgrp() (pgrp int) { function Getpid (line 783) | func Getpid() (pid int) { function Getppid (line 791) | func Getppid() (ppid int) { function Getpriority (line 799) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 810) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 820) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 830) | func Getsid(pid int) (sid int, err error) { function Getuid (line 841) | func Getuid() (uid int) { function Issetugid (line 849) | func Issetugid() (tainted bool) { function Kqueue (line 857) | func Kqueue() (fd int, err error) { function Lchown (line 868) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 883) | func Link(path string, link string) (err error) { function Linkat (line 903) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 923) | func Listen(s int, backlog int) (err error) { function Lstat (line 933) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 948) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 963) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 978) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 993) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 1008) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1024) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1040) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1056) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1073) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1090) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1107) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1129) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1151) | func Rename(from string, to string) (err error) { function Renameat (line 1171) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1191) | func Revoke(path string) (err error) { function Rmdir (line 1206) | func Rmdir(path string) (err error) { function Seek (line 1221) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1232) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1242) | func Setegid(egid int) (err error) { function Seteuid (line 1252) | func Seteuid(euid int) (err error) { function Setgid (line 1262) | func Setgid(gid int) (err error) { function Setlogin (line 1272) | func Setlogin(name string) (err error) { function Setpgid (line 1287) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1297) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1307) | func Setprivexec(flag int) (err error) { function Setregid (line 1317) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1327) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1337) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1347) | func Setsid() (pid int, err error) { function Settimeofday (line 1358) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1368) | func Setuid(uid int) (err error) { function Stat (line 1378) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1393) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1408) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1428) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1448) | func Sync() (err error) { function Truncate (line 1458) | func Truncate(path string, length int64) (err error) { function Umask (line 1473) | func Umask(newmask int) (oldmask int) { function Undelete (line 1481) | func Undelete(path string) (err error) { function Unlink (line 1496) | func Unlink(path string) (err error) { function Unlinkat (line 1511) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1526) | func Unmount(path string, flags int) (err error) { function write (line 1541) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1558) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1569) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1579) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1590) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1601) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (r int, w int, err error) { function extpread (line 381) | func extpread(fd int, p []byte, flags int, offset int64) (n int, err err... function extpwrite (line 398) | func extpwrite(fd int, p []byte, flags int, offset int64) (n int, err er... function Access (line 415) | func Access(path string, mode uint32) (err error) { function Adjtime (line 430) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 440) | func Chdir(path string) (err error) { function Chflags (line 455) | func Chflags(path string, flags int) (err error) { function Chmod (line 470) | func Chmod(path string, mode uint32) (err error) { function Chown (line 485) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 500) | func Chroot(path string) (err error) { function Close (line 515) | func Close(fd int) (err error) { function Dup (line 525) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 536) | func Dup2(from int, to int) (err error) { function Exit (line 546) | func Exit(code int) { function Fchdir (line 553) | func Fchdir(fd int) (err error) { function Fchflags (line 563) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 573) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 583) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 593) | func Flock(fd int, how int) (err error) { function Fpathconf (line 603) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 614) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 624) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 634) | func Fsync(fd int) (err error) { function Ftruncate (line 644) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 654) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 671) | func Getdtablesize() (size int) { function Getegid (line 679) | func Getegid() (egid int) { function Geteuid (line 687) | func Geteuid() (uid int) { function Getgid (line 695) | func Getgid() (gid int) { function Getpgid (line 703) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 714) | func Getpgrp() (pgrp int) { function Getpid (line 722) | func Getpid() (pid int) { function Getppid (line 730) | func Getppid() (ppid int) { function Getpriority (line 738) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 749) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 759) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 769) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 780) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 790) | func Getuid() (uid int) { function Issetugid (line 798) | func Issetugid() (tainted bool) { function Kill (line 806) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 816) | func Kqueue() (fd int, err error) { function Lchown (line 827) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 842) | func Link(path string, link string) (err error) { function Listen (line 862) | func Listen(s int, backlog int) (err error) { function Lstat (line 872) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 887) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 902) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 917) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 932) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 942) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 958) | func Pathconf(path string, name int) (val int, err error) { function read (line 974) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 991) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1013) | func Rename(from string, to string) (err error) { function Revoke (line 1033) | func Revoke(path string) (err error) { function Rmdir (line 1048) | func Rmdir(path string) (err error) { function Seek (line 1063) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1074) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1084) | func Setegid(egid int) (err error) { function Seteuid (line 1094) | func Seteuid(euid int) (err error) { function Setgid (line 1104) | func Setgid(gid int) (err error) { function Setlogin (line 1114) | func Setlogin(name string) (err error) { function Setpgid (line 1129) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1139) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1149) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1159) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1169) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1179) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1189) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1199) | func Setsid() (pid int, err error) { function Settimeofday (line 1210) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1220) | func Setuid(uid int) (err error) { function Stat (line 1230) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1245) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1260) | func Symlink(path string, link string) (err error) { function Sync (line 1280) | func Sync() (err error) { function Truncate (line 1290) | func Truncate(path string, length int64) (err error) { function Umask (line 1305) | func Umask(newmask int) (oldmask int) { function Undelete (line 1313) | func Undelete(path string) (err error) { function Unlink (line 1328) | func Unlink(path string) (err error) { function Unmount (line 1343) | func Unmount(path string, flags int) (err error) { function write (line 1358) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1375) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1386) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1396) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1407) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1418) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 1429) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (r int, w int, err error) { function ioctl (line 381) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 391) | func Access(path string, mode uint32) (err error) { function Adjtime (line 406) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 416) | func CapEnter() (err error) { function capRightsGet (line 426) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 436) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 446) | func Chdir(path string) (err error) { function Chflags (line 461) | func Chflags(path string, flags int) (err error) { function Chmod (line 476) | func Chmod(path string, mode uint32) (err error) { function Chown (line 491) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 506) | func Chroot(path string) (err error) { function Close (line 521) | func Close(fd int) (err error) { function Dup (line 531) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 542) | func Dup2(from int, to int) (err error) { function Exit (line 552) | func Exit(code int) { function ExtattrGetFd (line 559) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 575) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 591) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 606) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 617) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 638) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 659) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 679) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 695) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 716) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 737) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 757) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 773) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 783) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 798) | func Fchdir(fd int) (err error) { function Fchflags (line 808) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 818) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 828) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 843) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 853) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 868) | func Flock(fd int, how int) (err error) { function Fpathconf (line 878) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 889) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 899) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 909) | func Fsync(fd int) (err error) { function Ftruncate (line 919) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 929) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 946) | func Getdtablesize() (size int) { function Getegid (line 954) | func Getegid() (egid int) { function Geteuid (line 962) | func Geteuid() (uid int) { function Getgid (line 970) | func Getgid() (gid int) { function Getpgid (line 978) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 989) | func Getpgrp() (pgrp int) { function Getpid (line 997) | func Getpid() (pid int) { function Getppid (line 1005) | func Getppid() (ppid int) { function Getpriority (line 1013) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1024) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1034) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1044) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1055) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1065) | func Getuid() (uid int) { function Issetugid (line 1073) | func Issetugid() (tainted bool) { function Kill (line 1081) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1091) | func Kqueue() (fd int, err error) { function Lchown (line 1102) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1117) | func Link(path string, link string) (err error) { function Linkat (line 1137) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1157) | func Listen(s int, backlog int) (err error) { function Lstat (line 1167) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1182) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1197) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1212) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1227) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 1242) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1252) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1268) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1284) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1300) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1317) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1334) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1351) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1373) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1395) | func Rename(from string, to string) (err error) { function Renameat (line 1415) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1435) | func Revoke(path string) (err error) { function Rmdir (line 1450) | func Rmdir(path string) (err error) { function Seek (line 1465) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1476) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1486) | func Setegid(egid int) (err error) { function Seteuid (line 1496) | func Seteuid(euid int) (err error) { function Setgid (line 1506) | func Setgid(gid int) (err error) { function Setlogin (line 1516) | func Setlogin(name string) (err error) { function Setpgid (line 1531) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1541) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1551) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1561) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1571) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1581) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1591) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1601) | func Setsid() (pid int, err error) { function Settimeofday (line 1612) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1622) | func Setuid(uid int) (err error) { function Stat (line 1632) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1647) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1662) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1682) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1702) | func Sync() (err error) { function Truncate (line 1712) | func Truncate(path string, length int64) (err error) { function Umask (line 1727) | func Umask(newmask int) (oldmask int) { function Undelete (line 1735) | func Undelete(path string) (err error) { function Unlink (line 1750) | func Unlink(path string) (err error) { function Unlinkat (line 1765) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1780) | func Unmount(path string, flags int) (err error) { function write (line 1795) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1812) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1823) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1833) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1844) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1855) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 1866) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (r int, w int, err error) { function ioctl (line 381) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 391) | func Access(path string, mode uint32) (err error) { function Adjtime (line 406) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 416) | func CapEnter() (err error) { function capRightsGet (line 426) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 436) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 446) | func Chdir(path string) (err error) { function Chflags (line 461) | func Chflags(path string, flags int) (err error) { function Chmod (line 476) | func Chmod(path string, mode uint32) (err error) { function Chown (line 491) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 506) | func Chroot(path string) (err error) { function Close (line 521) | func Close(fd int) (err error) { function Dup (line 531) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 542) | func Dup2(from int, to int) (err error) { function Exit (line 552) | func Exit(code int) { function ExtattrGetFd (line 559) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 575) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 591) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 606) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 617) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 638) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 659) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 679) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 695) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 716) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 737) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 757) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 773) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 783) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 798) | func Fchdir(fd int) (err error) { function Fchflags (line 808) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 818) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 828) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 843) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 853) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 868) | func Flock(fd int, how int) (err error) { function Fpathconf (line 878) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 889) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 899) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 909) | func Fsync(fd int) (err error) { function Ftruncate (line 919) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 929) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 946) | func Getdtablesize() (size int) { function Getegid (line 954) | func Getegid() (egid int) { function Geteuid (line 962) | func Geteuid() (uid int) { function Getgid (line 970) | func Getgid() (gid int) { function Getpgid (line 978) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 989) | func Getpgrp() (pgrp int) { function Getpid (line 997) | func Getpid() (pid int) { function Getppid (line 1005) | func Getppid() (ppid int) { function Getpriority (line 1013) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1024) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1034) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1044) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1055) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1065) | func Getuid() (uid int) { function Issetugid (line 1073) | func Issetugid() (tainted bool) { function Kill (line 1081) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1091) | func Kqueue() (fd int, err error) { function Lchown (line 1102) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1117) | func Link(path string, link string) (err error) { function Linkat (line 1137) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1157) | func Listen(s int, backlog int) (err error) { function Lstat (line 1167) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1182) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1197) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1212) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1227) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 1242) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1252) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1268) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1284) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1300) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1317) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1334) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1351) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1373) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1395) | func Rename(from string, to string) (err error) { function Renameat (line 1415) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1435) | func Revoke(path string) (err error) { function Rmdir (line 1450) | func Rmdir(path string) (err error) { function Seek (line 1465) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1476) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1486) | func Setegid(egid int) (err error) { function Seteuid (line 1496) | func Seteuid(euid int) (err error) { function Setgid (line 1506) | func Setgid(gid int) (err error) { function Setlogin (line 1516) | func Setlogin(name string) (err error) { function Setpgid (line 1531) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1541) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1551) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1561) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1571) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1581) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1591) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1601) | func Setsid() (pid int, err error) { function Settimeofday (line 1612) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1622) | func Setuid(uid int) (err error) { function Stat (line 1632) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1647) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1662) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1682) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1702) | func Sync() (err error) { function Truncate (line 1712) | func Truncate(path string, length int64) (err error) { function Umask (line 1727) | func Umask(newmask int) (oldmask int) { function Undelete (line 1735) | func Undelete(path string) (err error) { function Unlink (line 1750) | func Unlink(path string) (err error) { function Unlinkat (line 1765) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1780) | func Unmount(path string, flags int) (err error) { function write (line 1795) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1812) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1823) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1833) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1844) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1855) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 1866) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (r int, w int, err error) { function ioctl (line 381) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 391) | func Access(path string, mode uint32) (err error) { function Adjtime (line 406) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 416) | func CapEnter() (err error) { function capRightsGet (line 426) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 436) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 446) | func Chdir(path string) (err error) { function Chflags (line 461) | func Chflags(path string, flags int) (err error) { function Chmod (line 476) | func Chmod(path string, mode uint32) (err error) { function Chown (line 491) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 506) | func Chroot(path string) (err error) { function Close (line 521) | func Close(fd int) (err error) { function Dup (line 531) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 542) | func Dup2(from int, to int) (err error) { function Exit (line 552) | func Exit(code int) { function ExtattrGetFd (line 559) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 575) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 591) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 606) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 617) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 638) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 659) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 679) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 695) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 716) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 737) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 757) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 773) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 783) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 798) | func Fchdir(fd int) (err error) { function Fchflags (line 808) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 818) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 828) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 843) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 853) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 868) | func Flock(fd int, how int) (err error) { function Fpathconf (line 878) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 889) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 899) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 909) | func Fsync(fd int) (err error) { function Ftruncate (line 919) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 929) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 946) | func Getdtablesize() (size int) { function Getegid (line 954) | func Getegid() (egid int) { function Geteuid (line 962) | func Geteuid() (uid int) { function Getgid (line 970) | func Getgid() (gid int) { function Getpgid (line 978) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 989) | func Getpgrp() (pgrp int) { function Getpid (line 997) | func Getpid() (pid int) { function Getppid (line 1005) | func Getppid() (ppid int) { function Getpriority (line 1013) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1024) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1034) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1044) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1055) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1065) | func Getuid() (uid int) { function Issetugid (line 1073) | func Issetugid() (tainted bool) { function Kill (line 1081) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1091) | func Kqueue() (fd int, err error) { function Lchown (line 1102) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1117) | func Link(path string, link string) (err error) { function Linkat (line 1137) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1157) | func Listen(s int, backlog int) (err error) { function Lstat (line 1167) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1182) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1197) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1212) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1227) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 1242) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1252) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1268) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1284) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1300) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1317) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1334) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1351) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1373) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1395) | func Rename(from string, to string) (err error) { function Renameat (line 1415) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1435) | func Revoke(path string) (err error) { function Rmdir (line 1450) | func Rmdir(path string) (err error) { function Seek (line 1465) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1476) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1486) | func Setegid(egid int) (err error) { function Seteuid (line 1496) | func Seteuid(euid int) (err error) { function Setgid (line 1506) | func Setgid(gid int) (err error) { function Setlogin (line 1516) | func Setlogin(name string) (err error) { function Setpgid (line 1531) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1541) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1551) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1561) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1571) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1581) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1591) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1601) | func Setsid() (pid int, err error) { function Settimeofday (line 1612) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1622) | func Setuid(uid int) (err error) { function Stat (line 1632) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1647) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1662) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1682) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1702) | func Sync() (err error) { function Truncate (line 1712) | func Truncate(path string, length int64) (err error) { function Umask (line 1727) | func Umask(newmask int) (oldmask int) { function Undelete (line 1735) | func Undelete(path string) (err error) { function Unlink (line 1750) | func Unlink(path string) (err error) { function Unlinkat (line 1765) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1780) | func Unmount(path string, flags int) (err error) { function write (line 1795) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1812) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1823) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1833) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1844) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1855) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 1866) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function pipe (line 1501) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1511) | func pipe2(p *[2]_C_int, flags int) (err error) { function Dup2 (line 1521) | func Dup2(oldfd int, newfd int) (err error) { function Fadvise (line 1531) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 1541) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1551) | func Fstat(fd int, stat *Stat_t) (err error) { function Ftruncate (line 1561) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1571) | func Getegid() (egid int) { function Geteuid (line 1579) | func Geteuid() (euid int) { function Getgid (line 1587) | func Getgid() (gid int) { function Getuid (line 1595) | func Getuid() (uid int) { function InotifyInit (line 1603) | func InotifyInit() (fd int, err error) { function Ioperm (line 1614) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1624) | func Iopl(level int) (err error) { function Lchown (line 1634) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 1649) | func Lstat(path string, stat *Stat_t) (err error) { function Pread (line 1664) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1681) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function sendfile (line 1698) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1709) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1719) | func Setfsuid(uid int) (err error) { function Setregid (line 1729) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1739) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1749) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1759) | func Setreuid(ruid int, euid int) (err error) { function Splice (line 1769) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1780) | func Stat(path string, stat *Stat_t) (err error) { function SyncFileRange (line 1795) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1805) | func Truncate(path string, length int64) (err error) { function getgroups (line 1820) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1831) | func setgroups(n int, list *_Gid_t) (err error) { function Select (line 1841) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function mmap2 (line 1852) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function EpollWait (line 1863) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 1880) | func Pause() (err error) { function getrlimit (line 1890) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 1900) | func setrlimit(resource int, rlim *rlimit32) (err error) { function Gettimeofday (line 1910) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1920) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 1931) | func Utime(path string, buf *Utimbuf) (err error) { function poll (line 1946) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function Dup2 (line 1501) | func Dup2(oldfd int, newfd int) (err error) { function EpollWait (line 1511) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 1528) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 1538) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1548) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1558) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1568) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1578) | func Getegid() (egid int) { function Geteuid (line 1586) | func Geteuid() (euid int) { function Getgid (line 1594) | func Getgid() (gid int) { function Getrlimit (line 1602) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1612) | func Getuid() (uid int) { function InotifyInit (line 1620) | func InotifyInit() (fd int, err error) { function Ioperm (line 1631) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1641) | func Iopl(level int) (err error) { function Lchown (line 1651) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1666) | func Listen(s int, n int) (err error) { function Lstat (line 1676) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1691) | func Pause() (err error) { function Pread (line 1701) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1718) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1735) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1746) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1757) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1768) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1778) | func Setfsuid(uid int) (err error) { function Setregid (line 1788) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1798) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1808) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1818) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1828) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1838) | func Shutdown(fd int, how int) (err error) { function Splice (line 1848) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1859) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1874) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1889) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1899) | func Truncate(path string, length int64) (err error) { function accept (line 1914) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1925) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1936) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1946) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1956) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1967) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1977) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1987) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1997) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 2008) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 2018) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 2028) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 2038) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 2055) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 2071) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 2082) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 2093) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Utime (line 2104) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 2119) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 2129) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 2139) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function pipe2 (line 1501) | func pipe2(p *[2]_C_int, flags int) (err error) { function accept (line 1511) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1522) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1533) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1543) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1553) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1564) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1574) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1584) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1594) | func socket(domain int, typ int, proto int) (fd int, err error) { function getpeername (line 1605) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1615) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1625) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1642) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function socketpair (line 1658) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { function recvmsg (line 1668) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1679) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function Dup2 (line 1690) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1700) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1710) | func Fstat(fd int, stat *Stat_t) (err error) { function Getegid (line 1720) | func Getegid() (egid int) { function Geteuid (line 1728) | func Geteuid() (euid int) { function Getgid (line 1736) | func Getgid() (gid int) { function Getuid (line 1744) | func Getuid() (uid int) { function InotifyInit (line 1752) | func InotifyInit() (fd int, err error) { function Lchown (line 1763) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1778) | func Listen(s int, n int) (err error) { function Lstat (line 1788) | func Lstat(path string, stat *Stat_t) (err error) { function sendfile (line 1803) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Select (line 1814) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setfsgid (line 1825) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1835) | func Setfsuid(uid int) (err error) { function Setregid (line 1845) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1855) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1865) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1875) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1885) | func Shutdown(fd int, how int) (err error) { function Splice (line 1895) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1906) | func Stat(path string, stat *Stat_t) (err error) { function Gettimeofday (line 1921) | func Gettimeofday(tv *Timeval) (err error) { function EpollWait (line 1931) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 1948) | func Pause() (err error) { function Pread (line 1958) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1975) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Truncate (line 1992) | func Truncate(path string, length int64) (err error) { function Ftruncate (line 2007) | func Ftruncate(fd int, length int64) (err error) { function mmap2 (line 2017) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 2028) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 2038) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 2048) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function EpollWait (line 1501) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 1518) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1528) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 1538) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 1553) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1563) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1573) | func Getegid() (egid int) { function Geteuid (line 1581) | func Geteuid() (euid int) { function Getgid (line 1589) | func Getgid() (gid int) { function Getrlimit (line 1597) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1607) | func Getuid() (uid int) { function Listen (line 1615) | func Listen(s int, n int) (err error) { function Pread (line 1625) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1642) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1659) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1670) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1681) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1692) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1702) | func Setfsuid(uid int) (err error) { function Setregid (line 1712) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1722) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1732) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1742) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1752) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1762) | func Shutdown(fd int, how int) (err error) { function Splice (line 1772) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 1783) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1798) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1808) | func Truncate(path string, length int64) (err error) { function accept (line 1823) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1834) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1845) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1855) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1865) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1876) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1886) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1896) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1906) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1917) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1927) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1937) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1947) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1964) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1980) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1991) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 2002) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 2013) | func Gettimeofday(tv *Timeval) (err error) { function pipe2 (line 2023) | func pipe2(p *[2]_C_int, flags int) (err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function Dup2 (line 1501) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1511) | func Fchown(fd int, uid int, gid int) (err error) { function Ftruncate (line 1521) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1531) | func Getegid() (egid int) { function Geteuid (line 1539) | func Geteuid() (euid int) { function Getgid (line 1547) | func Getgid() (gid int) { function Getuid (line 1555) | func Getuid() (uid int) { function Lchown (line 1563) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1578) | func Listen(s int, n int) (err error) { function Pread (line 1588) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1605) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Select (line 1622) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1633) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1644) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1654) | func Setfsuid(uid int) (err error) { function Setregid (line 1664) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1674) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1684) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1694) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1704) | func Shutdown(fd int, how int) (err error) { function Splice (line 1714) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function SyncFileRange (line 1725) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1735) | func Truncate(path string, length int64) (err error) { function accept (line 1750) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1761) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1772) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1782) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1792) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1803) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1813) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1823) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1833) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1844) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1854) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1864) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1874) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1891) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1907) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1918) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function InotifyInit (line 1929) | func InotifyInit() (fd int, err error) { function Ioperm (line 1940) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1950) | func Iopl(level int) (err error) { function Gettimeofday (line 1960) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1970) | func Time(t *Time_t) (tt Time_t, err error) { function Lstat (line 1981) | func Lstat(path string, stat *Stat_t) (err error) { function Fstat (line 1996) | func Fstat(fd int, stat *Stat_t) (err error) { function Stat (line 2006) | func Stat(path string, stat *Stat_t) (err error) { function Utime (line 2021) | func Utime(path string, buf *Utimbuf) (err error) { function EpollWait (line 2036) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 2053) | func Pause() (err error) { function pipe2 (line 2063) | func pipe2(p *[2]_C_int, flags int) (err error) { function mmap2 (line 2073) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 2084) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 2094) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 2104) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function Dup2 (line 1501) | func Dup2(oldfd int, newfd int) (err error) { function EpollWait (line 1511) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 1528) | func Fchown(fd int, uid int, gid int) (err error) { function Fstatfs (line 1538) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1548) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1558) | func Getegid() (egid int) { function Geteuid (line 1566) | func Geteuid() (euid int) { function Getgid (line 1574) | func Getgid() (gid int) { function Getrlimit (line 1582) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1592) | func Getuid() (uid int) { function Lchown (line 1600) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1615) | func Listen(s int, n int) (err error) { function Pause (line 1625) | func Pause() (err error) { function Pread (line 1635) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1652) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1669) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1680) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1691) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1702) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1712) | func Setfsuid(uid int) (err error) { function Setregid (line 1722) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1732) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1742) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1752) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1762) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1772) | func Shutdown(fd int, how int) (err error) { function Splice (line 1782) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 1793) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1808) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1818) | func Truncate(path string, length int64) (err error) { function accept (line 1833) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1844) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1855) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1865) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1875) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1886) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1896) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1906) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1916) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1927) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1937) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1947) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1957) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1974) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1990) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 2001) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 2012) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 2023) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 2033) | func Utime(path string, buf *Utimbuf) (err error) { function pipe2 (line 2048) | func pipe2(p *[2]_C_int, flags int) (err error) { function fstat (line 2058) | func fstat(fd int, st *stat_t) (err error) { function lstat (line 2068) | func lstat(path string, st *stat_t) (err error) { function stat (line 2083) | func stat(path string, st *stat_t) (err error) { function poll (line 2098) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function Dup2 (line 1501) | func Dup2(oldfd int, newfd int) (err error) { function EpollWait (line 1511) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 1528) | func Fchown(fd int, uid int, gid int) (err error) { function Fstatfs (line 1538) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1548) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1558) | func Getegid() (egid int) { function Geteuid (line 1566) | func Geteuid() (euid int) { function Getgid (line 1574) | func Getgid() (gid int) { function Getrlimit (line 1582) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1592) | func Getuid() (uid int) { function Lchown (line 1600) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1615) | func Listen(s int, n int) (err error) { function Pause (line 1625) | func Pause() (err error) { function Pread (line 1635) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1652) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1669) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1680) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1691) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1702) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1712) | func Setfsuid(uid int) (err error) { function Setregid (line 1722) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1732) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1742) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1752) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1762) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1772) | func Shutdown(fd int, how int) (err error) { function Splice (line 1782) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 1793) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1808) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1818) | func Truncate(path string, length int64) (err error) { function accept (line 1833) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1844) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1855) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1865) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1875) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1886) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1896) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1906) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1916) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1927) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1937) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1947) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1957) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1974) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1990) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 2001) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 2012) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 2023) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 2033) | func Utime(path string, buf *Utimbuf) (err error) { function pipe2 (line 2048) | func pipe2(p *[2]_C_int, flags int) (err error) { function fstat (line 2058) | func fstat(fd int, st *stat_t) (err error) { function lstat (line 2068) | func lstat(path string, st *stat_t) (err error) { function stat (line 2083) | func stat(path string, st *stat_t) (err error) { function poll (line 2098) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function Dup2 (line 1501) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1511) | func Fchown(fd int, uid int, gid int) (err error) { function Ftruncate (line 1521) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1531) | func Getegid() (egid int) { function Geteuid (line 1539) | func Geteuid() (euid int) { function Getgid (line 1547) | func Getgid() (gid int) { function Getuid (line 1555) | func Getuid() (uid int) { function Lchown (line 1563) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1578) | func Listen(s int, n int) (err error) { function Pread (line 1588) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1605) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Select (line 1622) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1633) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1644) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1654) | func Setfsuid(uid int) (err error) { function Setregid (line 1664) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1674) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1684) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1694) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1704) | func Shutdown(fd int, how int) (err error) { function Splice (line 1714) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function SyncFileRange (line 1725) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1735) | func Truncate(path string, length int64) (err error) { function accept (line 1750) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1761) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1772) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1782) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1792) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1803) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1813) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1823) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1833) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1844) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1854) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1864) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1874) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1891) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1907) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1918) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function InotifyInit (line 1929) | func InotifyInit() (fd int, err error) { function Ioperm (line 1940) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1950) | func Iopl(level int) (err error) { function Gettimeofday (line 1960) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1970) | func Time(t *Time_t) (tt Time_t, err error) { function Lstat (line 1981) | func Lstat(path string, stat *Stat_t) (err error) { function Fstat (line 1996) | func Fstat(fd int, stat *Stat_t) (err error) { function Stat (line 2006) | func Stat(path string, stat *Stat_t) (err error) { function Utime (line 2021) | func Utime(path string, buf *Utimbuf) (err error) { function EpollWait (line 2036) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 2053) | func Pause() (err error) { function pipe2 (line 2063) | func pipe2(p *[2]_C_int, flags int) (err error) { function mmap2 (line 2073) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 2084) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 2094) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 2104) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function EpollWait (line 1501) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Dup2 (line 1518) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1528) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1538) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1548) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1558) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1568) | func Getegid() (egid int) { function Geteuid (line 1576) | func Geteuid() (euid int) { function Getgid (line 1584) | func Getgid() (gid int) { function Getrlimit (line 1592) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1602) | func Getuid() (uid int) { function InotifyInit (line 1610) | func InotifyInit() (fd int, err error) { function Ioperm (line 1621) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1631) | func Iopl(level int) (err error) { function Lchown (line 1641) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1656) | func Listen(s int, n int) (err error) { function Lstat (line 1666) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1681) | func Pause() (err error) { function Pread (line 1691) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1708) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1725) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1736) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1747) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1758) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1768) | func Setfsuid(uid int) (err error) { function Setregid (line 1778) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1788) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1798) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1808) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1818) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1828) | func Shutdown(fd int, how int) (err error) { function Splice (line 1838) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1849) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1864) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1879) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1889) | func Truncate(path string, length int64) (err error) { function accept (line 1904) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1915) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1926) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1936) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1946) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1957) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1967) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1977) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1987) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1998) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 2008) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 2018) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 2028) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 2045) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 2061) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 2072) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 2083) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 2094) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 2104) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 2115) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 2130) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 2140) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 2150) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function EpollWait (line 1501) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Dup2 (line 1518) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1528) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1538) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1548) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1558) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1568) | func Getegid() (egid int) { function Geteuid (line 1576) | func Geteuid() (euid int) { function Getgid (line 1584) | func Getgid() (gid int) { function Getrlimit (line 1592) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1602) | func Getuid() (uid int) { function InotifyInit (line 1610) | func InotifyInit() (fd int, err error) { function Ioperm (line 1621) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1631) | func Iopl(level int) (err error) { function Lchown (line 1641) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1656) | func Listen(s int, n int) (err error) { function Lstat (line 1666) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1681) | func Pause() (err error) { function Pread (line 1691) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1708) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1725) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1736) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1747) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1758) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1768) | func Setfsuid(uid int) (err error) { function Setregid (line 1778) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1788) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1798) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1808) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1818) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1828) | func Shutdown(fd int, how int) (err error) { function Splice (line 1838) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1849) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1864) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1879) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1889) | func Truncate(path string, length int64) (err error) { function accept (line 1904) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1915) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1926) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1936) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1946) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1957) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1967) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1977) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1987) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1998) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 2008) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 2018) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 2028) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 2045) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 2061) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 2072) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 2083) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 2094) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 2104) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 2115) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 2130) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 2140) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 2150) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go function fchmodat (line 17) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 32) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 42) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 62) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 78) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 89) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 111) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 131) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 146) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 161) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 176) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function ptrace (line 312) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 322) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 337) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 362) | func Acct(path string) (err error) { function AddKey (line 377) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 404) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 415) | func Chdir(path string) (err error) { function Chroot (line 430) | func Chroot(path string) (err error) { function ClockGettime (line 445) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 455) | func Close(fd int) (err error) { function CopyFileRange (line 465) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 476) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 487) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 497) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 508) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 519) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 529) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 540) | func Exit(code int) { function Faccessat (line 547) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 562) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 572) | func Fchdir(fd int) (err error) { function Fchmod (line 582) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 592) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 607) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 618) | func Fdatasync(fd int) (err error) { function Flock (line 628) | func Flock(fd int, how int) (err error) { function Fsync (line 638) | func Fsync(fd int) (err error) { function Getdents (line 648) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 665) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 676) | func Getpid() (pid int) { function Getppid (line 684) | func Getppid() (ppid int) { function Getpriority (line 692) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 703) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 720) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 730) | func Getsid(pid int) (sid int, err error) { function Gettid (line 741) | func Gettid() (tid int) { function Getxattr (line 749) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 776) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 792) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 803) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 814) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 824) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 841) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 868) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 890) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 912) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 932) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function Mkdirat (line 958) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 973) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 988) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 998) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1018) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1028) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 1038) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1055) | func Removexattr(path string, attr string) (err error) { function Renameat (line 1075) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function RequestKey (line 1095) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1121) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1137) | func Sethostname(p []byte) (err error) { function Setpgid (line 1153) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1163) | func Setsid() (pid int, err error) { function Settimeofday (line 1174) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1184) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1194) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1204) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 1230) | func Sync() { function Syncfs (line 1237) | func Syncfs(fd int) (err error) { function Sysinfo (line 1247) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 1257) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 1268) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1278) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1289) | func Umask(mask int) (oldmask int) { function Uname (line 1297) | func Uname(buf *Utsname) (err error) { function Unmount (line 1307) | func Unmount(target string, flags int) (err error) { function Unshare (line 1322) | func Unshare(flags int) (err error) { function Ustat (line 1332) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1342) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1359) | func exitThread(code int) (err error) { function readlen (line 1369) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1380) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1391) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1401) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1417) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1433) | func Mlock(b []byte) (err error) { function Munlock (line 1449) | func Munlock(b []byte) (err error) { function Mlockall (line 1465) | func Mlockall(flags int) (err error) { function Msync (line 1475) | func Msync(b []byte, flags int) (err error) { function Munlockall (line 1491) | func Munlockall() (err error) { function Dup2 (line 1501) | func Dup2(oldfd int, newfd int) (err error) { function EpollWait (line 1511) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 1528) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 1538) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1548) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1558) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1568) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1578) | func Getegid() (egid int) { function Geteuid (line 1586) | func Geteuid() (euid int) { function Getgid (line 1594) | func Getgid() (gid int) { function Getrlimit (line 1602) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1612) | func Getuid() (uid int) { function InotifyInit (line 1620) | func InotifyInit() (fd int, err error) { function Lchown (line 1631) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 1646) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1661) | func Pause() (err error) { function Pread (line 1671) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1688) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1705) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1716) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1727) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1738) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1748) | func Setfsuid(uid int) (err error) { function Setregid (line 1758) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1768) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1778) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1788) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1798) | func Setreuid(ruid int, euid int) (err error) { function Splice (line 1808) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1819) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1834) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1849) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1859) | func Truncate(path string, length int64) (err error) { function getgroups (line 1874) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1885) | func setgroups(n int, list *_Gid_t) (err error) { function Gettimeofday (line 1895) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 1905) | func Utime(path string, buf *Utimbuf) (err error) { function pipe2 (line 1920) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1930) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function CopyFileRange (line 315) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function Dup (line 326) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 337) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 347) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 358) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 369) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 379) | func Exit(code int) { function Faccessat (line 386) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 401) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 411) | func Fchdir(fd int) (err error) { function Fchmod (line 421) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 431) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 446) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 461) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 472) | func Fdatasync(fd int) (err error) { function Flock (line 482) | func Flock(fd int, how int) (err error) { function Fsync (line 492) | func Fsync(fd int) (err error) { function Getdents (line 502) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 519) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 530) | func Getpid() (pid int) { function Getppid (line 538) | func Getppid() (ppid int) { function Getpriority (line 546) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 557) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 574) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 584) | func Getsid(pid int) (sid int, err error) { function Gettid (line 595) | func Gettid() (tid int) { function Getxattr (line 603) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 630) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 646) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 657) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 668) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 678) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 695) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 717) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 732) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 747) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 757) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 777) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 787) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 797) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 814) | func Removexattr(path string, attr string) (err error) { function Renameat (line 834) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 854) | func Setdomainname(p []byte) (err error) { function Sethostname (line 870) | func Sethostname(p []byte) (err error) { function Setpgid (line 886) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 896) | func Setsid() (pid int, err error) { function Settimeofday (line 907) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 917) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 927) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 937) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 963) | func Sync() { function Sysinfo (line 970) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 980) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 991) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1001) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1012) | func Umask(mask int) (oldmask int) { function Uname (line 1020) | func Uname(buf *Utsname) (err error) { function Unmount (line 1030) | func Unmount(target string, flags int) (err error) { function Unshare (line 1045) | func Unshare(flags int) (err error) { function Ustat (line 1055) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1065) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1082) | func exitThread(code int) (err error) { function readlen (line 1092) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1103) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1114) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1124) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1140) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1156) | func Mlock(b []byte) (err error) { function Munlock (line 1172) | func Munlock(b []byte) (err error) { function Mlockall (line 1188) | func Mlockall(flags int) (err error) { function Munlockall (line 1198) | func Munlockall() (err error) { function EpollWait (line 1208) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Dup2 (line 1225) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1235) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1245) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1255) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1265) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1275) | func Getegid() (egid int) { function Geteuid (line 1283) | func Geteuid() (euid int) { function Getgid (line 1291) | func Getgid() (gid int) { function Getrlimit (line 1299) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1309) | func Getuid() (uid int) { function InotifyInit (line 1317) | func InotifyInit() (fd int, err error) { function Lchown (line 1328) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1343) | func Listen(s int, n int) (err error) { function Lstat (line 1353) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1368) | func Pause() (err error) { function Pread (line 1378) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1395) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1412) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1423) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1434) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1445) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1455) | func Setfsuid(uid int) (err error) { function Setregid (line 1465) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1475) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1485) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1495) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1505) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1515) | func Shutdown(fd int, how int) (err error) { function Splice (line 1525) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1536) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1551) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1566) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1576) | func Truncate(path string, length int64) (err error) { function accept (line 1591) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1602) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1613) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1623) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1633) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1644) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1654) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1664) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1674) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1685) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1695) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1705) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1715) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1732) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1748) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1759) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1770) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1781) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 1791) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 1806) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1816) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1826) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (fd1 int, fd2 int, err error) { function getdents (line 381) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 398) | func Access(path string, mode uint32) (err error) { function Adjtime (line 413) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 423) | func Chdir(path string) (err error) { function Chflags (line 438) | func Chflags(path string, flags int) (err error) { function Chmod (line 453) | func Chmod(path string, mode uint32) (err error) { function Chown (line 468) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 483) | func Chroot(path string) (err error) { function Close (line 498) | func Close(fd int) (err error) { function Dup (line 508) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 519) | func Dup2(from int, to int) (err error) { function Exit (line 529) | func Exit(code int) { function Fchdir (line 536) | func Fchdir(fd int) (err error) { function Fchflags (line 546) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 556) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 566) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 576) | func Flock(fd int, how int) (err error) { function Fpathconf (line 586) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 597) | func Fstat(fd int, stat *Stat_t) (err error) { function Fsync (line 607) | func Fsync(fd int) (err error) { function Ftruncate (line 617) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 627) | func Getegid() (egid int) { function Geteuid (line 635) | func Geteuid() (uid int) { function Getgid (line 643) | func Getgid() (gid int) { function Getpgid (line 651) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 662) | func Getpgrp() (pgrp int) { function Getpid (line 670) | func Getpid() (pid int) { function Getppid (line 678) | func Getppid() (ppid int) { function Getpriority (line 686) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 697) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 707) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 717) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 728) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 738) | func Getuid() (uid int) { function Issetugid (line 746) | func Issetugid() (tainted bool) { function Kill (line 754) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 764) | func Kqueue() (fd int, err error) { function Lchown (line 775) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 790) | func Link(path string, link string) (err error) { function Listen (line 810) | func Listen(s int, backlog int) (err error) { function Lstat (line 820) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 835) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 850) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 865) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 880) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 890) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 906) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 922) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 939) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 956) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 973) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 995) | func Rename(from string, to string) (err error) { function Revoke (line 1015) | func Revoke(path string) (err error) { function Rmdir (line 1030) | func Rmdir(path string) (err error) { function Seek (line 1045) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1056) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1066) | func Setegid(egid int) (err error) { function Seteuid (line 1076) | func Seteuid(euid int) (err error) { function Setgid (line 1086) | func Setgid(gid int) (err error) { function Setpgid (line 1096) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1106) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1116) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1126) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1136) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1146) | func Setsid() (pid int, err error) { function Settimeofday (line 1157) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1167) | func Setuid(uid int) (err error) { function Stat (line 1177) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1192) | func Symlink(path string, link string) (err error) { function Sync (line 1212) | func Sync() (err error) { function Truncate (line 1222) | func Truncate(path string, length int64) (err error) { function Umask (line 1237) | func Umask(newmask int) (oldmask int) { function Unlink (line 1245) | func Unlink(path string) (err error) { function Unmount (line 1260) | func Unmount(path string, flags int) (err error) { function write (line 1275) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1292) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1303) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1313) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1324) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1335) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (fd1 int, fd2 int, err error) { function getdents (line 381) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 398) | func Access(path string, mode uint32) (err error) { function Adjtime (line 413) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 423) | func Chdir(path string) (err error) { function Chflags (line 438) | func Chflags(path string, flags int) (err error) { function Chmod (line 453) | func Chmod(path string, mode uint32) (err error) { function Chown (line 468) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 483) | func Chroot(path string) (err error) { function Close (line 498) | func Close(fd int) (err error) { function Dup (line 508) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 519) | func Dup2(from int, to int) (err error) { function Exit (line 529) | func Exit(code int) { function Fchdir (line 536) | func Fchdir(fd int) (err error) { function Fchflags (line 546) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 556) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 566) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 576) | func Flock(fd int, how int) (err error) { function Fpathconf (line 586) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 597) | func Fstat(fd int, stat *Stat_t) (err error) { function Fsync (line 607) | func Fsync(fd int) (err error) { function Ftruncate (line 617) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 627) | func Getegid() (egid int) { function Geteuid (line 635) | func Geteuid() (uid int) { function Getgid (line 643) | func Getgid() (gid int) { function Getpgid (line 651) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 662) | func Getpgrp() (pgrp int) { function Getpid (line 670) | func Getpid() (pid int) { function Getppid (line 678) | func Getppid() (ppid int) { function Getpriority (line 686) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 697) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 707) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 717) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 728) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 738) | func Getuid() (uid int) { function Issetugid (line 746) | func Issetugid() (tainted bool) { function Kill (line 754) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 764) | func Kqueue() (fd int, err error) { function Lchown (line 775) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 790) | func Link(path string, link string) (err error) { function Listen (line 810) | func Listen(s int, backlog int) (err error) { function Lstat (line 820) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 835) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 850) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 865) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 880) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 890) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 906) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 922) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 939) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 956) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 973) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 995) | func Rename(from string, to string) (err error) { function Revoke (line 1015) | func Revoke(path string) (err error) { function Rmdir (line 1030) | func Rmdir(path string) (err error) { function Seek (line 1045) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1056) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1066) | func Setegid(egid int) (err error) { function Seteuid (line 1076) | func Seteuid(euid int) (err error) { function Setgid (line 1086) | func Setgid(gid int) (err error) { function Setpgid (line 1096) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1106) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1116) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1126) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1136) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1146) | func Setsid() (pid int, err error) { function Settimeofday (line 1157) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1167) | func Setuid(uid int) (err error) { function Stat (line 1177) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1192) | func Symlink(path string, link string) (err error) { function Sync (line 1212) | func Sync() (err error) { function Truncate (line 1222) | func Truncate(path string, length int64) (err error) { function Umask (line 1237) | func Umask(newmask int) (oldmask int) { function Unlink (line 1245) | func Unlink(path string) (err error) { function Unmount (line 1260) | func Unmount(path string, flags int) (err error) { function write (line 1275) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1292) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1303) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1313) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1324) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1335) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe() (fd1 int, fd2 int, err error) { function getdents (line 381) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 398) | func Access(path string, mode uint32) (err error) { function Adjtime (line 413) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 423) | func Chdir(path string) (err error) { function Chflags (line 438) | func Chflags(path string, flags int) (err error) { function Chmod (line 453) | func Chmod(path string, mode uint32) (err error) { function Chown (line 468) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 483) | func Chroot(path string) (err error) { function Close (line 498) | func Close(fd int) (err error) { function Dup (line 508) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 519) | func Dup2(from int, to int) (err error) { function Exit (line 529) | func Exit(code int) { function Fchdir (line 536) | func Fchdir(fd int) (err error) { function Fchflags (line 546) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 556) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 566) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 576) | func Flock(fd int, how int) (err error) { function Fpathconf (line 586) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 597) | func Fstat(fd int, stat *Stat_t) (err error) { function Fsync (line 607) | func Fsync(fd int) (err error) { function Ftruncate (line 617) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 627) | func Getegid() (egid int) { function Geteuid (line 635) | func Geteuid() (uid int) { function Getgid (line 643) | func Getgid() (gid int) { function Getpgid (line 651) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 662) | func Getpgrp() (pgrp int) { function Getpid (line 670) | func Getpid() (pid int) { function Getppid (line 678) | func Getppid() (ppid int) { function Getpriority (line 686) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 697) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 707) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 717) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 728) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 738) | func Getuid() (uid int) { function Issetugid (line 746) | func Issetugid() (tainted bool) { function Kill (line 754) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 764) | func Kqueue() (fd int, err error) { function Lchown (line 775) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 790) | func Link(path string, link string) (err error) { function Listen (line 810) | func Listen(s int, backlog int) (err error) { function Lstat (line 820) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 835) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 850) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 865) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 880) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 890) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 906) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 922) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 939) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 956) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 973) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 995) | func Rename(from string, to string) (err error) { function Revoke (line 1015) | func Revoke(path string) (err error) { function Rmdir (line 1030) | func Rmdir(path string) (err error) { function Seek (line 1045) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1056) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1066) | func Setegid(egid int) (err error) { function Seteuid (line 1076) | func Seteuid(euid int) (err error) { function Setgid (line 1086) | func Setgid(gid int) (err error) { function Setpgid (line 1096) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1106) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1116) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1126) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1136) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1146) | func Setsid() (pid int, err error) { function Settimeofday (line 1157) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1167) | func Setuid(uid int) (err error) { function Stat (line 1177) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1192) | func Symlink(path string, link string) (err error) { function Sync (line 1212) | func Sync() (err error) { function Truncate (line 1222) | func Truncate(path string, length int64) (err error) { function Umask (line 1237) | func Umask(newmask int) (oldmask int) { function Unlink (line 1245) | func Unlink(path string) (err error) { function Unmount (line 1260) | func Unmount(path string, flags int) (err error) { function write (line 1275) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1292) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1303) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1313) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1324) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1335) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe(p *[2]_C_int) (err error) { function getdents (line 379) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 396) | func Access(path string, mode uint32) (err error) { function Adjtime (line 411) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 421) | func Chdir(path string) (err error) { function Chflags (line 436) | func Chflags(path string, flags int) (err error) { function Chmod (line 451) | func Chmod(path string, mode uint32) (err error) { function Chown (line 466) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 481) | func Chroot(path string) (err error) { function Close (line 496) | func Close(fd int) (err error) { function Dup (line 506) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 517) | func Dup2(from int, to int) (err error) { function Exit (line 527) | func Exit(code int) { function Fchdir (line 534) | func Fchdir(fd int) (err error) { function Fchflags (line 544) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 554) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 564) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 574) | func Flock(fd int, how int) (err error) { function Fpathconf (line 584) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 595) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 605) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 615) | func Fsync(fd int) (err error) { function Ftruncate (line 625) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 635) | func Getegid() (egid int) { function Geteuid (line 643) | func Geteuid() (uid int) { function Getgid (line 651) | func Getgid() (gid int) { function Getpgid (line 659) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 670) | func Getpgrp() (pgrp int) { function Getpid (line 678) | func Getpid() (pid int) { function Getppid (line 686) | func Getppid() (ppid int) { function Getpriority (line 694) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 705) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 715) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 725) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 736) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 746) | func Getuid() (uid int) { function Issetugid (line 754) | func Issetugid() (tainted bool) { function Kill (line 762) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 772) | func Kqueue() (fd int, err error) { function Lchown (line 783) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 798) | func Link(path string, link string) (err error) { function Listen (line 818) | func Listen(s int, backlog int) (err error) { function Lstat (line 828) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 843) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 858) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 873) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 888) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 898) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 914) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 930) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 947) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 964) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 981) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1003) | func Rename(from string, to string) (err error) { function Revoke (line 1023) | func Revoke(path string) (err error) { function Rmdir (line 1038) | func Rmdir(path string) (err error) { function Seek (line 1053) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1064) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1074) | func Setegid(egid int) (err error) { function Seteuid (line 1084) | func Seteuid(euid int) (err error) { function Setgid (line 1094) | func Setgid(gid int) (err error) { function Setlogin (line 1104) | func Setlogin(name string) (err error) { function Setpgid (line 1119) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1129) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1139) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1149) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1159) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1169) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1179) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1189) | func Setsid() (pid int, err error) { function Settimeofday (line 1200) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1210) | func Setuid(uid int) (err error) { function Stat (line 1220) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1235) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1250) | func Symlink(path string, link string) (err error) { function Sync (line 1270) | func Sync() (err error) { function Truncate (line 1280) | func Truncate(path string, length int64) (err error) { function Umask (line 1295) | func Umask(newmask int) (oldmask int) { function Unlink (line 1303) | func Unlink(path string) (err error) { function Unmount (line 1318) | func Unmount(path string, flags int) (err error) { function write (line 1333) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1350) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1361) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1371) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1382) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1393) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe(p *[2]_C_int) (err error) { function getdents (line 379) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 396) | func Access(path string, mode uint32) (err error) { function Adjtime (line 411) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 421) | func Chdir(path string) (err error) { function Chflags (line 436) | func Chflags(path string, flags int) (err error) { function Chmod (line 451) | func Chmod(path string, mode uint32) (err error) { function Chown (line 466) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 481) | func Chroot(path string) (err error) { function Close (line 496) | func Close(fd int) (err error) { function Dup (line 506) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 517) | func Dup2(from int, to int) (err error) { function Exit (line 527) | func Exit(code int) { function Fchdir (line 534) | func Fchdir(fd int) (err error) { function Fchflags (line 544) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 554) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 564) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 574) | func Flock(fd int, how int) (err error) { function Fpathconf (line 584) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 595) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 605) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 615) | func Fsync(fd int) (err error) { function Ftruncate (line 625) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 635) | func Getegid() (egid int) { function Geteuid (line 643) | func Geteuid() (uid int) { function Getgid (line 651) | func Getgid() (gid int) { function Getpgid (line 659) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 670) | func Getpgrp() (pgrp int) { function Getpid (line 678) | func Getpid() (pid int) { function Getppid (line 686) | func Getppid() (ppid int) { function Getpriority (line 694) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 705) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 715) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 725) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 736) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 746) | func Getuid() (uid int) { function Issetugid (line 754) | func Issetugid() (tainted bool) { function Kill (line 762) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 772) | func Kqueue() (fd int, err error) { function Lchown (line 783) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 798) | func Link(path string, link string) (err error) { function Listen (line 818) | func Listen(s int, backlog int) (err error) { function Lstat (line 828) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 843) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 858) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 873) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 888) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 898) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 914) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 930) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 947) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 964) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 981) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1003) | func Rename(from string, to string) (err error) { function Revoke (line 1023) | func Revoke(path string) (err error) { function Rmdir (line 1038) | func Rmdir(path string) (err error) { function Seek (line 1053) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1064) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1074) | func Setegid(egid int) (err error) { function Seteuid (line 1084) | func Seteuid(euid int) (err error) { function Setgid (line 1094) | func Setgid(gid int) (err error) { function Setlogin (line 1104) | func Setlogin(name string) (err error) { function Setpgid (line 1119) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1129) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1139) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1149) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1159) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1169) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1179) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1189) | func Setsid() (pid int, err error) { function Settimeofday (line 1200) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1210) | func Setuid(uid int) (err error) { function Stat (line 1220) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1235) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1250) | func Symlink(path string, link string) (err error) { function Sync (line 1270) | func Sync() (err error) { function Truncate (line 1280) | func Truncate(path string, length int64) (err error) { function Umask (line 1295) | func Umask(newmask int) (oldmask int) { function Unlink (line 1303) | func Unlink(path string) (err error) { function Unmount (line 1318) | func Unmount(path string, flags int) (err error) { function write (line 1333) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1350) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1361) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1371) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1382) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1393) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Madvise (line 269) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 285) | func Mlock(b []byte) (err error) { function Mlockall (line 301) | func Mlockall(flags int) (err error) { function Mprotect (line 311) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 327) | func Msync(b []byte, flags int) (err error) { function Munlock (line 343) | func Munlock(b []byte) (err error) { function Munlockall (line 359) | func Munlockall() (err error) { function pipe (line 369) | func pipe(p *[2]_C_int) (err error) { function getdents (line 379) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 396) | func Access(path string, mode uint32) (err error) { function Adjtime (line 411) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 421) | func Chdir(path string) (err error) { function Chflags (line 436) | func Chflags(path string, flags int) (err error) { function Chmod (line 451) | func Chmod(path string, mode uint32) (err error) { function Chown (line 466) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 481) | func Chroot(path string) (err error) { function Close (line 496) | func Close(fd int) (err error) { function Dup (line 506) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 517) | func Dup2(from int, to int) (err error) { function Exit (line 527) | func Exit(code int) { function Fchdir (line 534) | func Fchdir(fd int) (err error) { function Fchflags (line 544) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 554) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 564) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 574) | func Flock(fd int, how int) (err error) { function Fpathconf (line 584) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 595) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 605) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 615) | func Fsync(fd int) (err error) { function Ftruncate (line 625) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 635) | func Getegid() (egid int) { function Geteuid (line 643) | func Geteuid() (uid int) { function Getgid (line 651) | func Getgid() (gid int) { function Getpgid (line 659) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 670) | func Getpgrp() (pgrp int) { function Getpid (line 678) | func Getpid() (pid int) { function Getppid (line 686) | func Getppid() (ppid int) { function Getpriority (line 694) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 705) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 715) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 725) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 736) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 746) | func Getuid() (uid int) { function Issetugid (line 754) | func Issetugid() (tainted bool) { function Kill (line 762) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 772) | func Kqueue() (fd int, err error) { function Lchown (line 783) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 798) | func Link(path string, link string) (err error) { function Listen (line 818) | func Listen(s int, backlog int) (err error) { function Lstat (line 828) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 843) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 858) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 873) | func Mknod(path string, mode uint32, dev int) (err error) { function Nanosleep (line 888) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 898) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 914) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 930) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 947) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 964) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 981) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1003) | func Rename(from string, to string) (err error) { function Revoke (line 1023) | func Revoke(path string) (err error) { function Rmdir (line 1038) | func Rmdir(path string) (err error) { function Seek (line 1053) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1064) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1074) | func Setegid(egid int) (err error) { function Seteuid (line 1084) | func Seteuid(euid int) (err error) { function Setgid (line 1094) | func Setgid(gid int) (err error) { function Setlogin (line 1104) | func Setlogin(name string) (err error) { function Setpgid (line 1119) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1129) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1139) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1149) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1159) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1169) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1179) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1189) | func Setsid() (pid int, err error) { function Settimeofday (line 1200) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1210) | func Setuid(uid int) (err error) { function Stat (line 1220) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1235) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1250) | func Symlink(path string, link string) (err error) { function Sync (line 1270) | func Sync() (err error) { function Truncate (line 1280) | func Truncate(path string, length int64) (err error) { function Umask (line 1295) | func Umask(newmask int) (oldmask int) { function Unlink (line 1303) | func Unlink(path string) (err error) { function Unmount (line 1318) | func Unmount(path string, flags int) (err error) { function write (line 1333) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1350) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1361) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1371) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1382) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1393) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go function pipe (line 378) | func pipe(p *[2]_C_int) (n int, err error) { function getsockname (line 387) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Getcwd (line 395) | func Getcwd(buf []byte) (n int, err error) { function getgroups (line 408) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 417) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 425) | func wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpi... function gethostname (line 434) | func gethostname(buf []byte) (n int, err error) { function utimes (line 447) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 460) | func utimensat(fd int, path string, times *[2]Timespec, flag int) (err e... function fcntl (line 473) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function futimesat (line 482) | func futimesat(fildes int, path *byte, times *[2]Timeval) (err error) { function accept (line 490) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function recvmsg (line 499) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 508) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function acct (line 517) | func acct(path *byte) (err error) { function ioctl (line 525) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 533) | func Access(path string, mode uint32) (err error) { function Adjtime (line 546) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 554) | func Chdir(path string) (err error) { function Chmod (line 567) | func Chmod(path string, mode uint32) (err error) { function Chown (line 580) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 593) | func Chroot(path string) (err error) { function Close (line 606) | func Close(fd int) (err error) { function Creat (line 614) | func Creat(path string, mode uint32) (fd int, err error) { function Dup (line 628) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 637) | func Dup2(oldfd int, newfd int) (err error) { function Exit (line 645) | func Exit(code int) { function Fchdir (line 650) | func Fchdir(fd int) (err error) { function Fchmod (line 658) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 666) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 679) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 687) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fdatasync (line 700) | func Fdatasync(fd int) (err error) { function Flock (line 708) | func Flock(fd int, how int) (err error) { function Fpathconf (line 716) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 725) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatvfs (line 733) | func Fstatvfs(fd int, vfsstat *Statvfs_t) (err error) { function Getdents (line 741) | func Getdents(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getgid (line 754) | func Getgid() (gid int) { function Getpid (line 760) | func Getpid() (pid int) { function Getpgid (line 766) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 775) | func Getpgrp() (pgid int, err error) { function Geteuid (line 784) | func Geteuid() (euid int) { function Getegid (line 790) | func Getegid() (egid int) { function Getppid (line 796) | func Getppid() (ppid int) { function Getpriority (line 802) | func Getpriority(which int, who int) (n int, err error) { function Getrlimit (line 811) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 819) | func Getrusage(who int, rusage *Rusage) (err error) { function Gettimeofday (line 827) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 835) | func Getuid() (uid int) { function Kill (line 841) | func Kill(pid int, signum syscall.Signal) (err error) { function Lchown (line 849) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 862) | func Link(path string, link string) (err error) { function Listen (line 880) | func Listen(s int, backlog int) (err error) { function Lstat (line 888) | func Lstat(path string, stat *Stat_t) (err error) { function Madvise (line 901) | func Madvise(b []byte, advice int) (err error) { function Mkdir (line 913) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 926) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 939) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 952) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 965) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 978) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Mlock (line 991) | func Mlock(b []byte) (err error) { function Mlockall (line 1003) | func Mlockall(flags int) (err error) { function Mprotect (line 1011) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 1023) | func Munlock(b []byte) (err error) { function Munlockall (line 1035) | func Munlockall() (err error) { function Nanosleep (line 1043) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1051) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1065) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function Pathconf (line 1079) | func Pathconf(path string, name int) (val int, err error) { function Pause (line 1093) | func Pause() (err error) { function Pread (line 1101) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1114) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1127) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1140) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1158) | func Rename(from string, to string) (err error) { function Renameat (line 1176) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Rmdir (line 1194) | func Rmdir(path string) (err error) { function Seek (line 1207) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Setegid (line 1216) | func Setegid(egid int) (err error) { function Seteuid (line 1224) | func Seteuid(euid int) (err error) { function Setgid (line 1232) | func Setgid(gid int) (err error) { function Sethostname (line 1240) | func Sethostname(p []byte) (err error) { function Setpgid (line 1252) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1260) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1268) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1276) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1284) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1292) | func Setsid() (pid int, err error) { function Setuid (line 1301) | func Setuid(uid int) (err error) { function Shutdown (line 1309) | func Shutdown(s int, how int) (err error) { function Stat (line 1317) | func Stat(path string, stat *Stat_t) (err error) { function Statvfs (line 1330) | func Statvfs(path string, vfsstat *Statvfs_t) (err error) { function Symlink (line 1343) | func Symlink(path string, link string) (err error) { function Sync (line 1361) | func Sync() (err error) { function Times (line 1369) | func Times(tms *Tms) (ticks uintptr, err error) { function Truncate (line 1378) | func Truncate(path string, length int64) (err error) { function Fsync (line 1391) | func Fsync(fd int) (err error) { function Ftruncate (line 1399) | func Ftruncate(fd int, length int64) (err error) { function Umask (line 1407) | func Umask(mask int) (oldmask int) { function Uname (line 1413) | func Uname(buf *Utsname) (err error) { function Unmount (line 1421) | func Unmount(target string, flags int) (err error) { function Unlink (line 1434) | func Unlink(path string) (err error) { function Unlinkat (line 1447) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Ustat (line 1460) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function Utime (line 1468) | func Utime(path string, buf *Utimbuf) (err error) { function bind (line 1481) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1489) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function mmap (line 1497) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1506) | func munmap(addr uintptr, length uintptr) (err error) { function sendto (line 1514) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function socket (line 1526) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1535) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function write (line 1543) | func write(fd int, p []byte) (n int, err error) { function getsockopt (line 1556) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function getpeername (line 1564) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function setsockopt (line 1572) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 1580) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sysconf (line 1593) | func sysconf(name int) (n int64, err error) { FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd.go type mibentry (line 6) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TRACE64 (line 124) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 125) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 126) | SYS_SETGID = 181 constant SYS_SETEGID (line 127) | SYS_SETEGID = 182 constant SYS_SETEUID (line 128) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 184 constant SYS_CHUD (line 130) | SYS_CHUD = 185 constant SYS_FDATASYNC (line 131) | SYS_FDATASYNC = 187 constant SYS_STAT (line 132) | SYS_STAT = 188 constant SYS_FSTAT (line 133) | SYS_FSTAT = 189 constant SYS_LSTAT (line 134) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 135) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 136) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 137) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 138) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 139) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 140) | SYS_MMAP = 197 constant SYS_LSEEK (line 141) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 142) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 143) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 144) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 145) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 146) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 147) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 148) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 149) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 150) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 151) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 152) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 153) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 154) | SYS_DELETE = 226 constant SYS_COPYFILE (line 155) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 156) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 157) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 158) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 159) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 160) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 161) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 163) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 164) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 165) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 166) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 167) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 169) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 170) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 171) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 172) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 173) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 174) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 175) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 176) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 177) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 178) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 179) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 180) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 181) | SYS_SEMGET = 255 constant SYS_SEMOP (line 182) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 184) | SYS_MSGGET = 259 constant SYS_MSGSND (line 185) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 186) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 187) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 188) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 189) | SYS_SHMDT = 264 constant SYS_SHMGET (line 190) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 191) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 192) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 193) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 194) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 195) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 196) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 197) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 198) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 199) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 200) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 201) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 202) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 203) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 204) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 205) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 206) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 207) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 208) | SYS_SETTID = 285 constant SYS_GETTID (line 209) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 210) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 211) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 212) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 213) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 214) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 215) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 216) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 217) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 218) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 219) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 220) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 221) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 222) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 223) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 224) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 225) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 226) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 227) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 228) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 229) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 230) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 231) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 232) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 233) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 234) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 235) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 236) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 237) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 238) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 239) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 240) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 241) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 242) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 243) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 244) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 245) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 246) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 247) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 248) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 249) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 250) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 251) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 252) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 253) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 254) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 255) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 256) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 257) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 258) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 259) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 260) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 261) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 262) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 263) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 266) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 267) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 268) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 269) | SYS_AUDIT = 350 constant SYS_AUDITON (line 270) | SYS_AUDITON = 351 constant SYS_GETAUID (line 271) | SYS_GETAUID = 353 constant SYS_SETAUID (line 272) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 273) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 274) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 275) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 276) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 277) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 278) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 279) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 280) | SYS_LCHOWN = 364 constant SYS_STACK_SNAPSHOT (line 281) | SYS_STACK_SNAPSHOT = 365 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS___MAC_EXECVE (line 290) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 291) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 292) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 293) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 294) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 295) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 296) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 297) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 298) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 299) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 300) | SYS___MAC_GET_PID = 390 constant SYS___MAC_GET_LCID (line 301) | SYS___MAC_GET_LCID = 391 constant SYS___MAC_GET_LCTX (line 302) | SYS___MAC_GET_LCTX = 392 constant SYS___MAC_SET_LCTX (line 303) | SYS___MAC_SET_LCTX = 393 constant SYS_SETLCID (line 304) | SYS_SETLCID = 394 constant SYS_GETLCID (line 305) | SYS_GETLCID = 395 constant SYS_READ_NOCANCEL (line 306) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 307) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 308) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 309) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 310) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 311) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 312) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 313) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 314) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 315) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 316) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 317) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 318) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 319) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 320) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 321) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 322) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 323) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 324) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 325) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 326) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 327) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 328) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 329) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 330) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 331) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 332) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 333) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 334) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 335) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 336) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 337) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 338) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 339) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 340) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 341) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 342) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 343) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 344) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 345) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 346) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 347) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 348) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 349) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 350) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 351) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 352) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 353) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_PROC_RLIMIT_CONTROL (line 354) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 355) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 356) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 357) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 358) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 359) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 360) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 361) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 362) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 363) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 364) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 365) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 366) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 367) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 368) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 369) | SYS_GETATTRLISTBULK = 461 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAME_EXT (line 395) | SYS_RENAME_EXT = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_MAXSYSCALL (line 397) | SYS_MAXSYSCALL = 490 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TRACE64 (line 124) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 125) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 126) | SYS_SETGID = 181 constant SYS_SETEGID (line 127) | SYS_SETEGID = 182 constant SYS_SETEUID (line 128) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 184 constant SYS_CHUD (line 130) | SYS_CHUD = 185 constant SYS_FDATASYNC (line 131) | SYS_FDATASYNC = 187 constant SYS_STAT (line 132) | SYS_STAT = 188 constant SYS_FSTAT (line 133) | SYS_FSTAT = 189 constant SYS_LSTAT (line 134) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 135) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 136) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 137) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 138) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 139) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 140) | SYS_MMAP = 197 constant SYS_LSEEK (line 141) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 142) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 143) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 144) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 145) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 146) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 147) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 148) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 149) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 150) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 151) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 152) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 153) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 154) | SYS_DELETE = 226 constant SYS_COPYFILE (line 155) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 156) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 157) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 158) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 159) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 160) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 161) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 163) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 164) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 165) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 166) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 167) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 169) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 170) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 171) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 172) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 173) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 174) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 175) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 176) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 177) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 178) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 179) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 180) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 181) | SYS_SEMGET = 255 constant SYS_SEMOP (line 182) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 184) | SYS_MSGGET = 259 constant SYS_MSGSND (line 185) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 186) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 187) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 188) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 189) | SYS_SHMDT = 264 constant SYS_SHMGET (line 190) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 191) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 192) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 193) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 194) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 195) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 196) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 197) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 198) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 199) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 200) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 201) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 202) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 203) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 204) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 205) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 206) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 207) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 208) | SYS_SETTID = 285 constant SYS_GETTID (line 209) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 210) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 211) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 212) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 213) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 214) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 215) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 216) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 217) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 218) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 219) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 220) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 221) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 222) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 223) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 224) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 225) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 226) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 227) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 228) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 229) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 230) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 231) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 232) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 233) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 234) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 235) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 236) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 237) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 238) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 239) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 240) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 241) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 242) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 243) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 244) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 245) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 246) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 247) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 248) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 249) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 250) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 251) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 252) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 253) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 254) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 255) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 256) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 257) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 258) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 259) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 260) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 261) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 262) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 263) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 266) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 267) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 268) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 269) | SYS_AUDIT = 350 constant SYS_AUDITON (line 270) | SYS_AUDITON = 351 constant SYS_GETAUID (line 271) | SYS_GETAUID = 353 constant SYS_SETAUID (line 272) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 273) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 274) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 275) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 276) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 277) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 278) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 279) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 280) | SYS_LCHOWN = 364 constant SYS_STACK_SNAPSHOT (line 281) | SYS_STACK_SNAPSHOT = 365 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS___MAC_EXECVE (line 290) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 291) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 292) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 293) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 294) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 295) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 296) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 297) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 298) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 299) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 300) | SYS___MAC_GET_PID = 390 constant SYS___MAC_GET_LCID (line 301) | SYS___MAC_GET_LCID = 391 constant SYS___MAC_GET_LCTX (line 302) | SYS___MAC_GET_LCTX = 392 constant SYS___MAC_SET_LCTX (line 303) | SYS___MAC_SET_LCTX = 393 constant SYS_SETLCID (line 304) | SYS_SETLCID = 394 constant SYS_GETLCID (line 305) | SYS_GETLCID = 395 constant SYS_READ_NOCANCEL (line 306) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 307) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 308) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 309) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 310) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 311) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 312) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 313) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 314) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 315) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 316) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 317) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 318) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 319) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 320) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 321) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 322) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 323) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 324) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 325) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 326) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 327) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 328) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 329) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 330) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 331) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 332) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 333) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 334) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 335) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 336) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 337) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 338) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 339) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 340) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 341) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 342) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 343) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 344) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 345) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 346) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 347) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 348) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 349) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 350) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 351) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 352) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 353) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_PROC_RLIMIT_CONTROL (line 354) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 355) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 356) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 357) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 358) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 359) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 360) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 361) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 362) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 363) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 364) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 365) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 366) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 367) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 368) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 369) | SYS_GETATTRLISTBULK = 461 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAME_EXT (line 395) | SYS_RENAME_EXT = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_MAXSYSCALL (line 397) | SYS_MAXSYSCALL = 490 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TYPEFILTER (line 124) | SYS_KDEBUG_TYPEFILTER = 177 constant SYS_KDEBUG_TRACE_STRING (line 125) | SYS_KDEBUG_TRACE_STRING = 178 constant SYS_KDEBUG_TRACE64 (line 126) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 127) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 128) | SYS_SETGID = 181 constant SYS_SETEGID (line 129) | SYS_SETEGID = 182 constant SYS_SETEUID (line 130) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 131) | SYS_SIGRETURN = 184 constant SYS_FDATASYNC (line 132) | SYS_FDATASYNC = 187 constant SYS_STAT (line 133) | SYS_STAT = 188 constant SYS_FSTAT (line 134) | SYS_FSTAT = 189 constant SYS_LSTAT (line 135) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 136) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 137) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 138) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 139) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 140) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 141) | SYS_MMAP = 197 constant SYS_LSEEK (line 142) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 143) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 144) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 145) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 146) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 147) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 148) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 149) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 150) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 151) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 152) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 153) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 154) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 155) | SYS_DELETE = 226 constant SYS_COPYFILE (line 156) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 157) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 158) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 159) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 160) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 161) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 162) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 163) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 164) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 165) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 166) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 167) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 168) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 169) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 170) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 171) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 172) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 173) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 174) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 175) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 176) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 177) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 178) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 179) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 180) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 181) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 182) | SYS_SEMGET = 255 constant SYS_SEMOP (line 183) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 184) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 185) | SYS_MSGGET = 259 constant SYS_MSGSND (line 186) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 187) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 188) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 189) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 190) | SYS_SHMDT = 264 constant SYS_SHMGET (line 191) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 192) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 193) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 194) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 195) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 196) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 197) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 198) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 199) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 200) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 201) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 202) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 203) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 204) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 205) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 206) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 207) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 208) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 209) | SYS_SETTID = 285 constant SYS_GETTID (line 210) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 211) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 212) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 213) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 214) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 215) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 216) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 217) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 218) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 219) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 220) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 221) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 222) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 223) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 224) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 225) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 226) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 227) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 228) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 229) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 230) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 231) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 232) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 233) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 234) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 235) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 236) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 237) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 238) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 239) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 240) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 241) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 242) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 243) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 244) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 245) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 246) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 247) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 248) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 249) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 250) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 251) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 252) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 253) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 254) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 255) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 256) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 257) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 258) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 259) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 260) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 261) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 262) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 263) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 264) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 265) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 266) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 267) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 268) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 269) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 270) | SYS_AUDIT = 350 constant SYS_AUDITON (line 271) | SYS_AUDITON = 351 constant SYS_GETAUID (line 272) | SYS_GETAUID = 353 constant SYS_SETAUID (line 273) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 274) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 275) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 276) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 277) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 278) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 279) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 280) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 281) | SYS_LCHOWN = 364 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS_KEVENT_QOS (line 290) | SYS_KEVENT_QOS = 374 constant SYS___MAC_EXECVE (line 291) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 292) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 293) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 294) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 295) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 296) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 297) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 298) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 299) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 300) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 301) | SYS___MAC_GET_PID = 390 constant SYS_PSELECT (line 302) | SYS_PSELECT = 394 constant SYS_PSELECT_NOCANCEL (line 303) | SYS_PSELECT_NOCANCEL = 395 constant SYS_READ_NOCANCEL (line 304) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 305) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 306) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 307) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 308) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 309) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 310) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 311) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 312) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 313) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 314) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 315) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 316) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 317) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 318) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 319) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 320) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 321) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 322) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 323) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 324) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 325) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 326) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 327) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 328) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 329) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 330) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 331) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 332) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 333) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 334) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 335) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 336) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 337) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 338) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 339) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 340) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 341) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 342) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 343) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 344) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 345) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 346) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 347) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 348) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 349) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 350) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 351) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_USRCTL (line 352) | SYS_USRCTL = 445 constant SYS_PROC_RLIMIT_CONTROL (line 353) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 354) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 355) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 356) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 357) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 358) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 359) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 360) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 361) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 362) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 363) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 364) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 365) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 366) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 367) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 368) | SYS_GETATTRLISTBULK = 461 constant SYS_CLONEFILEAT (line 369) | SYS_CLONEFILEAT = 462 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAMEATX_NP (line 395) | SYS_RENAMEATX_NP = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_NETAGENT_TRIGGER (line 397) | SYS_NETAGENT_TRIGGER = 490 constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 398) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491 constant SYS_MICROSTACKSHOT (line 399) | SYS_MICROSTACKSHOT = 492 constant SYS_GRAB_PGO_DATA (line 400) | SYS_GRAB_PGO_DATA = 493 constant SYS_PERSONA (line 401) | SYS_PERSONA = 494 constant SYS_WORK_INTERVAL_CTL (line 402) | SYS_WORK_INTERVAL_CTL = 499 constant SYS_GETENTROPY (line 403) | SYS_GETENTROPY = 500 constant SYS_NECP_OPEN (line 404) | SYS_NECP_OPEN = 501 constant SYS_NECP_CLIENT_ACTION (line 405) | SYS_NECP_CLIENT_ACTION = 502 constant SYS___NEXUS_OPEN (line 406) | SYS___NEXUS_OPEN = 503 constant SYS___NEXUS_REGISTER (line 407) | SYS___NEXUS_REGISTER = 504 constant SYS___NEXUS_DEREGISTER (line 408) | SYS___NEXUS_DEREGISTER = 505 constant SYS___NEXUS_CREATE (line 409) | SYS___NEXUS_CREATE = 506 constant SYS___NEXUS_DESTROY (line 410) | SYS___NEXUS_DESTROY = 507 constant SYS___NEXUS_GET_OPT (line 411) | SYS___NEXUS_GET_OPT = 508 constant SYS___NEXUS_SET_OPT (line 412) | SYS___NEXUS_SET_OPT = 509 constant SYS___CHANNEL_OPEN (line 413) | SYS___CHANNEL_OPEN = 510 constant SYS___CHANNEL_GET_INFO (line 414) | SYS___CHANNEL_GET_INFO = 511 constant SYS___CHANNEL_SYNC (line 415) | SYS___CHANNEL_SYNC = 512 constant SYS___CHANNEL_GET_OPT (line 416) | SYS___CHANNEL_GET_OPT = 513 constant SYS___CHANNEL_SET_OPT (line 417) | SYS___CHANNEL_SET_OPT = 514 constant SYS_ULOCK_WAIT (line 418) | SYS_ULOCK_WAIT = 515 constant SYS_ULOCK_WAKE (line 419) | SYS_ULOCK_WAKE = 516 constant SYS_FCLONEFILEAT (line 420) | SYS_FCLONEFILEAT = 517 constant SYS_FS_SNAPSHOT (line 421) | SYS_FS_SNAPSHOT = 518 constant SYS_TERMINATE_WITH_PAYLOAD (line 422) | SYS_TERMINATE_WITH_PAYLOAD = 520 constant SYS_ABORT_WITH_PAYLOAD (line 423) | SYS_ABORT_WITH_PAYLOAD = 521 constant SYS_MAXSYSCALL (line 424) | SYS_MAXSYSCALL = 522 constant SYS_INVALID (line 425) | SYS_INVALID = 63 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TYPEFILTER (line 124) | SYS_KDEBUG_TYPEFILTER = 177 constant SYS_KDEBUG_TRACE_STRING (line 125) | SYS_KDEBUG_TRACE_STRING = 178 constant SYS_KDEBUG_TRACE64 (line 126) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 127) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 128) | SYS_SETGID = 181 constant SYS_SETEGID (line 129) | SYS_SETEGID = 182 constant SYS_SETEUID (line 130) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 131) | SYS_SIGRETURN = 184 constant SYS_FDATASYNC (line 132) | SYS_FDATASYNC = 187 constant SYS_STAT (line 133) | SYS_STAT = 188 constant SYS_FSTAT (line 134) | SYS_FSTAT = 189 constant SYS_LSTAT (line 135) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 136) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 137) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 138) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 139) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 140) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 141) | SYS_MMAP = 197 constant SYS_LSEEK (line 142) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 143) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 144) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 145) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 146) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 147) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 148) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 149) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 150) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 151) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 152) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 153) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 154) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 155) | SYS_DELETE = 226 constant SYS_COPYFILE (line 156) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 157) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 158) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 159) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 160) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 161) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 162) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 163) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 164) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 165) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 166) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 167) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 168) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 169) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 170) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 171) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 172) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 173) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 174) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 175) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 176) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 177) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 178) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 179) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 180) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 181) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 182) | SYS_SEMGET = 255 constant SYS_SEMOP (line 183) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 184) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 185) | SYS_MSGGET = 259 constant SYS_MSGSND (line 186) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 187) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 188) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 189) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 190) | SYS_SHMDT = 264 constant SYS_SHMGET (line 191) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 192) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 193) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 194) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 195) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 196) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 197) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 198) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 199) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 200) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 201) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 202) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 203) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 204) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 205) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 206) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 207) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 208) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 209) | SYS_SETTID = 285 constant SYS_GETTID (line 210) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 211) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 212) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 213) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 214) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 215) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 216) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 217) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 218) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 219) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 220) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 221) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 222) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 223) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 224) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 225) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 226) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 227) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 228) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 229) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 230) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 231) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 232) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 233) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 234) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 235) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 236) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 237) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 238) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 239) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 240) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 241) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 242) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 243) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 244) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 245) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 246) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 247) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 248) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 249) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 250) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 251) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 252) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 253) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 254) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 255) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 256) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 257) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 258) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 259) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 260) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 261) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 262) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 263) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 264) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 265) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 266) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 267) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 268) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 269) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 270) | SYS_AUDIT = 350 constant SYS_AUDITON (line 271) | SYS_AUDITON = 351 constant SYS_GETAUID (line 272) | SYS_GETAUID = 353 constant SYS_SETAUID (line 273) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 274) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 275) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 276) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 277) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 278) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 279) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 280) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 281) | SYS_LCHOWN = 364 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS_KEVENT_QOS (line 290) | SYS_KEVENT_QOS = 374 constant SYS___MAC_EXECVE (line 291) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 292) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 293) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 294) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 295) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 296) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 297) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 298) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 299) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 300) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 301) | SYS___MAC_GET_PID = 390 constant SYS_PSELECT (line 302) | SYS_PSELECT = 394 constant SYS_PSELECT_NOCANCEL (line 303) | SYS_PSELECT_NOCANCEL = 395 constant SYS_READ_NOCANCEL (line 304) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 305) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 306) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 307) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 308) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 309) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 310) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 311) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 312) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 313) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 314) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 315) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 316) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 317) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 318) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 319) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 320) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 321) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 322) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 323) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 324) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 325) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 326) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 327) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 328) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 329) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 330) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 331) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 332) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 333) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 334) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 335) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 336) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 337) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 338) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 339) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 340) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 341) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 342) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 343) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 344) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 345) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 346) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 347) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 348) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 349) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 350) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 351) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_USRCTL (line 352) | SYS_USRCTL = 445 constant SYS_PROC_RLIMIT_CONTROL (line 353) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 354) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 355) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 356) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 357) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 358) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 359) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 360) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 361) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 362) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 363) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 364) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 365) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 366) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 367) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 368) | SYS_GETATTRLISTBULK = 461 constant SYS_CLONEFILEAT (line 369) | SYS_CLONEFILEAT = 462 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAMEATX_NP (line 395) | SYS_RENAMEATX_NP = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_NETAGENT_TRIGGER (line 397) | SYS_NETAGENT_TRIGGER = 490 constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 398) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491 constant SYS_MICROSTACKSHOT (line 399) | SYS_MICROSTACKSHOT = 492 constant SYS_GRAB_PGO_DATA (line 400) | SYS_GRAB_PGO_DATA = 493 constant SYS_PERSONA (line 401) | SYS_PERSONA = 494 constant SYS_WORK_INTERVAL_CTL (line 402) | SYS_WORK_INTERVAL_CTL = 499 constant SYS_GETENTROPY (line 403) | SYS_GETENTROPY = 500 constant SYS_NECP_OPEN (line 404) | SYS_NECP_OPEN = 501 constant SYS_NECP_CLIENT_ACTION (line 405) | SYS_NECP_CLIENT_ACTION = 502 constant SYS___NEXUS_OPEN (line 406) | SYS___NEXUS_OPEN = 503 constant SYS___NEXUS_REGISTER (line 407) | SYS___NEXUS_REGISTER = 504 constant SYS___NEXUS_DEREGISTER (line 408) | SYS___NEXUS_DEREGISTER = 505 constant SYS___NEXUS_CREATE (line 409) | SYS___NEXUS_CREATE = 506 constant SYS___NEXUS_DESTROY (line 410) | SYS___NEXUS_DESTROY = 507 constant SYS___NEXUS_GET_OPT (line 411) | SYS___NEXUS_GET_OPT = 508 constant SYS___NEXUS_SET_OPT (line 412) | SYS___NEXUS_SET_OPT = 509 constant SYS___CHANNEL_OPEN (line 413) | SYS___CHANNEL_OPEN = 510 constant SYS___CHANNEL_GET_INFO (line 414) | SYS___CHANNEL_GET_INFO = 511 constant SYS___CHANNEL_SYNC (line 415) | SYS___CHANNEL_SYNC = 512 constant SYS___CHANNEL_GET_OPT (line 416) | SYS___CHANNEL_GET_OPT = 513 constant SYS___CHANNEL_SET_OPT (line 417) | SYS___CHANNEL_SET_OPT = 514 constant SYS_ULOCK_WAIT (line 418) | SYS_ULOCK_WAIT = 515 constant SYS_ULOCK_WAKE (line 419) | SYS_ULOCK_WAKE = 516 constant SYS_FCLONEFILEAT (line 420) | SYS_FCLONEFILEAT = 517 constant SYS_FS_SNAPSHOT (line 421) | SYS_FS_SNAPSHOT = 518 constant SYS_TERMINATE_WITH_PAYLOAD (line 422) | SYS_TERMINATE_WITH_PAYLOAD = 520 constant SYS_ABORT_WITH_PAYLOAD (line 423) | SYS_ABORT_WITH_PAYLOAD = 521 constant SYS_MAXSYSCALL (line 424) | SYS_MAXSYSCALL = 522 constant SYS_INVALID (line 425) | SYS_INVALID = 63 FILE: vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETFSSTAT (line 25) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 26) | SYS_GETPID = 20 constant SYS_MOUNT (line 27) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 28) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 29) | SYS_SETUID = 23 constant SYS_GETUID (line 30) | SYS_GETUID = 24 constant SYS_GETEUID (line 31) | SYS_GETEUID = 25 constant SYS_PTRACE (line 32) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 33) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 34) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 35) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 36) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 37) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 38) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 39) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 40) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 41) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 42) | SYS_SYNC = 36 constant SYS_KILL (line 43) | SYS_KILL = 37 constant SYS_GETPPID (line 44) | SYS_GETPPID = 39 constant SYS_DUP (line 45) | SYS_DUP = 41 constant SYS_PIPE (line 46) | SYS_PIPE = 42 constant SYS_GETEGID (line 47) | SYS_GETEGID = 43 constant SYS_PROFIL (line 48) | SYS_PROFIL = 44 constant SYS_KTRACE (line 49) | SYS_KTRACE = 45 constant SYS_GETGID (line 50) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 51) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 52) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 53) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 54) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 55) | SYS_IOCTL = 54 constant SYS_REBOOT (line 56) | SYS_REBOOT = 55 constant SYS_REVOKE (line 57) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 58) | SYS_SYMLINK = 57 constant SYS_READLINK (line 59) | SYS_READLINK = 58 constant SYS_EXECVE (line 60) | SYS_EXECVE = 59 constant SYS_UMASK (line 61) | SYS_UMASK = 60 constant SYS_CHROOT (line 62) | SYS_CHROOT = 61 constant SYS_MSYNC (line 63) | SYS_MSYNC = 65 constant SYS_VFORK (line 64) | SYS_VFORK = 66 constant SYS_SBRK (line 65) | SYS_SBRK = 69 constant SYS_SSTK (line 66) | SYS_SSTK = 70 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_STATFS (line 112) | SYS_STATFS = 157 constant SYS_FSTATFS (line 113) | SYS_FSTATFS = 158 constant SYS_GETFH (line 114) | SYS_GETFH = 161 constant SYS_GETDOMAINNAME (line 115) | SYS_GETDOMAINNAME = 162 constant SYS_SETDOMAINNAME (line 116) | SYS_SETDOMAINNAME = 163 constant SYS_UNAME (line 117) | SYS_UNAME = 164 constant SYS_SYSARCH (line 118) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 119) | SYS_RTPRIO = 166 constant SYS_EXTPREAD (line 120) | SYS_EXTPREAD = 173 constant SYS_EXTPWRITE (line 121) | SYS_EXTPWRITE = 174 constant SYS_NTP_ADJTIME (line 122) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 123) | SYS_SETGID = 181 constant SYS_SETEGID (line 124) | SYS_SETEGID = 182 constant SYS_SETEUID (line 125) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 130) | SYS_MMAP = 197 constant SYS_LSEEK (line 132) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 133) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 134) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS___SEMCTL (line 142) | SYS___SEMCTL = 220 constant SYS_SEMGET (line 143) | SYS_SEMGET = 221 constant SYS_SEMOP (line 144) | SYS_SEMOP = 222 constant SYS_MSGCTL (line 145) | SYS_MSGCTL = 224 constant SYS_MSGGET (line 146) | SYS_MSGGET = 225 constant SYS_MSGSND (line 147) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 148) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 149) | SYS_SHMAT = 228 constant SYS_SHMCTL (line 150) | SYS_SHMCTL = 229 constant SYS_SHMDT (line 151) | SYS_SHMDT = 230 constant SYS_SHMGET (line 152) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 153) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 154) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 155) | SYS_CLOCK_GETRES = 234 constant SYS_NANOSLEEP (line 156) | SYS_NANOSLEEP = 240 constant SYS_MINHERIT (line 157) | SYS_MINHERIT = 250 constant SYS_RFORK (line 158) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 159) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 160) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 161) | SYS_LCHOWN = 254 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_EXTPREADV (line 164) | SYS_EXTPREADV = 289 constant SYS_EXTPWRITEV (line 165) | SYS_EXTPWRITEV = 290 constant SYS_FHSTATFS (line 166) | SYS_FHSTATFS = 297 constant SYS_FHOPEN (line 167) | SYS_FHOPEN = 298 constant SYS_MODNEXT (line 168) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 169) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 170) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 171) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 172) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 173) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 174) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 175) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 176) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 177) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 178) | SYS_GETSID = 310 constant SYS_SETRESUID (line 179) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 180) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 181) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 182) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 183) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 184) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 185) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 186) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 187) | SYS_LIO_LISTIO = 320 constant SYS_YIELD (line 188) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 189) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 190) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 191) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 192) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 193) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 194) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 195) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 196) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 197) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 198) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 199) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 200) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 201) | SYS_KLDSYM = 337 constant SYS_JAIL (line 202) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 203) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 204) | SYS_SIGSUSPEND = 341 constant SYS_SIGACTION (line 205) | SYS_SIGACTION = 342 constant SYS_SIGPENDING (line 206) | SYS_SIGPENDING = 343 constant SYS_SIGRETURN (line 207) | SYS_SIGRETURN = 344 constant SYS_SIGTIMEDWAIT (line 208) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 209) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 210) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 211) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 212) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 213) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 214) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 215) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 216) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 217) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 218) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 219) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 220) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 221) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 222) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 223) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 224) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 225) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 226) | SYS_KEVENT = 363 constant SYS_KENV (line 227) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 228) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 229) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 230) | SYS_SENDFILE = 393 constant SYS_VARSYM_SET (line 231) | SYS_VARSYM_SET = 450 constant SYS_VARSYM_GET (line 232) | SYS_VARSYM_GET = 451 constant SYS_VARSYM_LIST (line 233) | SYS_VARSYM_LIST = 452 constant SYS_EXEC_SYS_REGISTER (line 234) | SYS_EXEC_SYS_REGISTER = 465 constant SYS_EXEC_SYS_UNREGISTER (line 235) | SYS_EXEC_SYS_UNREGISTER = 466 constant SYS_SYS_CHECKPOINT (line 236) | SYS_SYS_CHECKPOINT = 467 constant SYS_MOUNTCTL (line 237) | SYS_MOUNTCTL = 468 constant SYS_UMTX_SLEEP (line 238) | SYS_UMTX_SLEEP = 469 constant SYS_UMTX_WAKEUP (line 239) | SYS_UMTX_WAKEUP = 470 constant SYS_JAIL_ATTACH (line 240) | SYS_JAIL_ATTACH = 471 constant SYS_SET_TLS_AREA (line 241) | SYS_SET_TLS_AREA = 472 constant SYS_GET_TLS_AREA (line 242) | SYS_GET_TLS_AREA = 473 constant SYS_CLOSEFROM (line 243) | SYS_CLOSEFROM = 474 constant SYS_STAT (line 244) | SYS_STAT = 475 constant SYS_FSTAT (line 245) | SYS_FSTAT = 476 constant SYS_LSTAT (line 246) | SYS_LSTAT = 477 constant SYS_FHSTAT (line 247) | SYS_FHSTAT = 478 constant SYS_GETDIRENTRIES (line 248) | SYS_GETDIRENTRIES = 479 constant SYS_GETDENTS (line 249) | SYS_GETDENTS = 480 constant SYS_USCHED_SET (line 250) | SYS_USCHED_SET = 481 constant SYS_EXTACCEPT (line 251) | SYS_EXTACCEPT = 482 constant SYS_EXTCONNECT (line 252) | SYS_EXTCONNECT = 483 constant SYS_MCONTROL (line 253) | SYS_MCONTROL = 485 constant SYS_VMSPACE_CREATE (line 254) | SYS_VMSPACE_CREATE = 486 constant SYS_VMSPACE_DESTROY (line 255) | SYS_VMSPACE_DESTROY = 487 constant SYS_VMSPACE_CTL (line 256) | SYS_VMSPACE_CTL = 488 constant SYS_VMSPACE_MMAP (line 257) | SYS_VMSPACE_MMAP = 489 constant SYS_VMSPACE_MUNMAP (line 258) | SYS_VMSPACE_MUNMAP = 490 constant SYS_VMSPACE_MCONTROL (line 259) | SYS_VMSPACE_MCONTROL = 491 constant SYS_VMSPACE_PREAD (line 260) | SYS_VMSPACE_PREAD = 492 constant SYS_VMSPACE_PWRITE (line 261) | SYS_VMSPACE_PWRITE = 493 constant SYS_EXTEXIT (line 262) | SYS_EXTEXIT = 494 constant SYS_LWP_CREATE (line 263) | SYS_LWP_CREATE = 495 constant SYS_LWP_GETTID (line 264) | SYS_LWP_GETTID = 496 constant SYS_LWP_KILL (line 265) | SYS_LWP_KILL = 497 constant SYS_LWP_RTPRIO (line 266) | SYS_LWP_RTPRIO = 498 constant SYS_PSELECT (line 267) | SYS_PSELECT = 499 constant SYS_STATVFS (line 268) | SYS_STATVFS = 500 constant SYS_FSTATVFS (line 269) | SYS_FSTATVFS = 501 constant SYS_FHSTATVFS (line 270) | SYS_FHSTATVFS = 502 constant SYS_GETVFSSTAT (line 271) | SYS_GETVFSSTAT = 503 constant SYS_OPENAT (line 272) | SYS_OPENAT = 504 constant SYS_FSTATAT (line 273) | SYS_FSTATAT = 505 constant SYS_FCHMODAT (line 274) | SYS_FCHMODAT = 506 constant SYS_FCHOWNAT (line 275) | SYS_FCHOWNAT = 507 constant SYS_UNLINKAT (line 276) | SYS_UNLINKAT = 508 constant SYS_FACCESSAT (line 277) | SYS_FACCESSAT = 509 constant SYS_MQ_OPEN (line 278) | SYS_MQ_OPEN = 510 constant SYS_MQ_CLOSE (line 279) | SYS_MQ_CLOSE = 511 constant SYS_MQ_UNLINK (line 280) | SYS_MQ_UNLINK = 512 constant SYS_MQ_GETATTR (line 281) | SYS_MQ_GETATTR = 513 constant SYS_MQ_SETATTR (line 282) | SYS_MQ_SETATTR = 514 constant SYS_MQ_NOTIFY (line 283) | SYS_MQ_NOTIFY = 515 constant SYS_MQ_SEND (line 284) | SYS_MQ_SEND = 516 constant SYS_MQ_RECEIVE (line 285) | SYS_MQ_RECEIVE = 517 constant SYS_MQ_TIMEDSEND (line 286) | SYS_MQ_TIMEDSEND = 518 constant SYS_MQ_TIMEDRECEIVE (line 287) | SYS_MQ_TIMEDRECEIVE = 519 constant SYS_IOPRIO_SET (line 288) | SYS_IOPRIO_SET = 520 constant SYS_IOPRIO_GET (line 289) | SYS_IOPRIO_GET = 521 constant SYS_CHROOT_KERNEL (line 290) | SYS_CHROOT_KERNEL = 522 constant SYS_RENAMEAT (line 291) | SYS_RENAMEAT = 523 constant SYS_MKDIRAT (line 292) | SYS_MKDIRAT = 524 constant SYS_MKFIFOAT (line 293) | SYS_MKFIFOAT = 525 constant SYS_MKNODAT (line 294) | SYS_MKNODAT = 526 constant SYS_READLINKAT (line 295) | SYS_READLINKAT = 527 constant SYS_SYMLINKAT (line 296) | SYS_SYMLINKAT = 528 constant SYS_SWAPOFF (line 297) | SYS_SWAPOFF = 529 constant SYS_VQUOTACTL (line 298) | SYS_VQUOTACTL = 530 constant SYS_LINKAT (line 299) | SYS_LINKAT = 531 constant SYS_EACCESS (line 300) | SYS_EACCESS = 532 constant SYS_LPATHCONF (line 301) | SYS_LPATHCONF = 533 constant SYS_VMM_GUEST_CTL (line 302) | SYS_VMM_GUEST_CTL = 534 constant SYS_VMM_GUEST_SYNC_ADDR (line 303) | SYS_VMM_GUEST_SYNC_ADDR = 535 constant SYS_PROCCTL (line 304) | SYS_PROCCTL = 536 constant SYS_CHFLAGSAT (line 305) | SYS_CHFLAGSAT = 537 constant SYS_PIPE2 (line 306) | SYS_PIPE2 = 538 constant SYS_UTIMENSAT (line 307) | SYS_UTIMENSAT = 539 constant SYS_FUTIMENS (line 308) | SYS_FUTIMENS = 540 constant SYS_ACCEPT4 (line 309) | SYS_ACCEPT4 = 541 constant SYS_LWP_SETNAME (line 310) | SYS_LWP_SETNAME = 542 constant SYS_PPOLL (line 311) | SYS_PPOLL = 543 constant SYS_LWP_SETAFFINITY (line 312) | SYS_LWP_SETAFFINITY = 544 constant SYS_LWP_GETAFFINITY (line 313) | SYS_LWP_GETAFFINITY = 545 constant SYS_LWP_CREATE2 (line 314) | SYS_LWP_CREATE2 = 546 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 27) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_GETEUID (line 30) | SYS_GETEUID = 25 constant SYS_PTRACE (line 31) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 32) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 33) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 34) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 35) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 36) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 37) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 38) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 39) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 40) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 41) | SYS_SYNC = 36 constant SYS_KILL (line 42) | SYS_KILL = 37 constant SYS_GETPPID (line 43) | SYS_GETPPID = 39 constant SYS_DUP (line 44) | SYS_DUP = 41 constant SYS_PIPE (line 45) | SYS_PIPE = 42 constant SYS_GETEGID (line 46) | SYS_GETEGID = 43 constant SYS_PROFIL (line 47) | SYS_PROFIL = 44 constant SYS_KTRACE (line 48) | SYS_KTRACE = 45 constant SYS_GETGID (line 49) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 50) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 51) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 52) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 53) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 54) | SYS_IOCTL = 54 constant SYS_REBOOT (line 55) | SYS_REBOOT = 55 constant SYS_REVOKE (line 56) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 57) | SYS_SYMLINK = 57 constant SYS_READLINK (line 58) | SYS_READLINK = 58 constant SYS_EXECVE (line 59) | SYS_EXECVE = 59 constant SYS_UMASK (line 60) | SYS_UMASK = 60 constant SYS_CHROOT (line 61) | SYS_CHROOT = 61 constant SYS_MSYNC (line 62) | SYS_MSYNC = 65 constant SYS_VFORK (line 63) | SYS_VFORK = 66 constant SYS_SBRK (line 64) | SYS_SBRK = 69 constant SYS_SSTK (line 65) | SYS_SSTK = 70 constant SYS_OVADVISE (line 66) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_LGETFH (line 112) | SYS_LGETFH = 160 constant SYS_GETFH (line 113) | SYS_GETFH = 161 constant SYS_SYSARCH (line 114) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 115) | SYS_RTPRIO = 166 constant SYS_FREEBSD6_PREAD (line 116) | SYS_FREEBSD6_PREAD = 173 constant SYS_FREEBSD6_PWRITE (line 117) | SYS_FREEBSD6_PWRITE = 174 constant SYS_SETFIB (line 118) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 119) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 120) | SYS_SETGID = 181 constant SYS_SETEGID (line 121) | SYS_SETEGID = 182 constant SYS_SETEUID (line 122) | SYS_SETEUID = 183 constant SYS_STAT (line 123) | SYS_STAT = 188 constant SYS_FSTAT (line 124) | SYS_FSTAT = 189 constant SYS_LSTAT (line 125) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 130) | SYS_GETDIRENTRIES = 196 constant SYS_FREEBSD6_MMAP (line 131) | SYS_FREEBSD6_MMAP = 197 constant SYS_FREEBSD6_LSEEK (line 132) | SYS_FREEBSD6_LSEEK = 199 constant SYS_FREEBSD6_TRUNCATE (line 133) | SYS_FREEBSD6_TRUNCATE = 200 constant SYS_FREEBSD6_FTRUNCATE (line 134) | SYS_FREEBSD6_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS_CLOCK_GETTIME (line 142) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 143) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 144) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 145) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 146) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 147) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 148) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 149) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 150) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 151) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 152) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 153) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_GETCPUCLOCKID2 (line 154) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 155) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 156) | SYS_MINHERIT = 250 constant SYS_RFORK (line 157) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 158) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 159) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 160) | SYS_LCHOWN = 254 constant SYS_GETDENTS (line 161) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 164) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 165) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 166) | SYS_NLSTAT = 280 constant SYS_PREADV (line 167) | SYS_PREADV = 289 constant SYS_PWRITEV (line 168) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 169) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 170) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 171) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 172) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 173) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 174) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 175) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 176) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 177) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 178) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 179) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 180) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 181) | SYS_GETSID = 310 constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 183) | SYS_SETRESGID = 312 constant SYS_YIELD (line 184) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 185) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 186) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 187) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 188) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 189) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 190) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 191) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 192) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 193) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 194) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 195) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 196) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 197) | SYS_KLDSYM = 337 constant SYS_JAIL (line 198) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 199) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 200) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 201) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 202) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 203) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 204) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 205) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 206) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 207) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 208) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 209) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 210) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 211) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 212) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 213) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 214) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 215) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_GETRESUID (line 216) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 217) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 218) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 219) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 220) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 221) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 222) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 223) | SYS___SETUGID = 374 constant SYS_EACCESS (line 224) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 225) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 226) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 227) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 228) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 229) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 230) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 231) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 232) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 233) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 234) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 235) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 236) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 237) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 238) | SYS_STATFS = 396 constant SYS_FSTATFS (line 239) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 240) | SYS_FHSTATFS = 398 constant SYS___MAC_GET_PID (line 241) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 242) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 243) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 244) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 245) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 246) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 247) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 248) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 249) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 250) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 251) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 252) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 253) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 254) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 255) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 256) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 257) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 258) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 259) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 260) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 261) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 262) | SYS_THR_KILL = 433 constant SYS__UMTX_LOCK (line 263) | SYS__UMTX_LOCK = 434 constant SYS__UMTX_UNLOCK (line 264) | SYS__UMTX_UNLOCK = 435 constant SYS_JAIL_ATTACH (line 265) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 266) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 267) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 268) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_THR_SUSPEND (line 269) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 270) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 271) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 272) | SYS_AUDIT = 445 constant SYS_AUDITON (line 273) | SYS_AUDITON = 446 constant SYS_GETAUID (line 274) | SYS_GETAUID = 447 constant SYS_SETAUID (line 275) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 276) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 277) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 278) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 279) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 280) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 281) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 282) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 283) | SYS_SIGQUEUE = 456 constant SYS_ABORT2 (line 284) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 285) | SYS_THR_SET_NAME = 464 constant SYS_RTPRIO_THREAD (line 286) | SYS_RTPRIO_THREAD = 466 constant SYS_PREAD (line 287) | SYS_PREAD = 475 constant SYS_PWRITE (line 288) | SYS_PWRITE = 476 constant SYS_MMAP (line 289) | SYS_MMAP = 477 constant SYS_LSEEK (line 290) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 291) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 292) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 293) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 294) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 295) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 296) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 297) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 298) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 299) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 300) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 301) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 302) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 303) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 304) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 305) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 306) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 307) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 308) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 309) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 310) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 311) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 312) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 313) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 314) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 315) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 316) | SYS_POSIX_OPENPT = 504 constant SYS_JAIL_GET (line 317) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 318) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 319) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 320) | SYS_CLOSEFROM = 509 constant SYS_LPATHCONF (line 321) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 322) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 323) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 324) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 325) | SYS_PDFORK = 518 constant SYS_PDKILL (line 326) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 327) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 328) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 329) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 330) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 331) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 332) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 333) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 334) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 335) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 336) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 337) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 338) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 339) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 340) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 341) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 342) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 343) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 344) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 345) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 346) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 347) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 348) | SYS_PIPE2 = 542 constant SYS_PROCCTL (line 349) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 350) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 351) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 352) | SYS_UTIMENSAT = 547 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 27) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_GETEUID (line 30) | SYS_GETEUID = 25 constant SYS_PTRACE (line 31) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 32) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 33) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 34) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 35) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 36) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 37) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 38) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 39) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 40) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 41) | SYS_SYNC = 36 constant SYS_KILL (line 42) | SYS_KILL = 37 constant SYS_GETPPID (line 43) | SYS_GETPPID = 39 constant SYS_DUP (line 44) | SYS_DUP = 41 constant SYS_PIPE (line 45) | SYS_PIPE = 42 constant SYS_GETEGID (line 46) | SYS_GETEGID = 43 constant SYS_PROFIL (line 47) | SYS_PROFIL = 44 constant SYS_KTRACE (line 48) | SYS_KTRACE = 45 constant SYS_GETGID (line 49) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 50) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 51) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 52) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 53) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 54) | SYS_IOCTL = 54 constant SYS_REBOOT (line 55) | SYS_REBOOT = 55 constant SYS_REVOKE (line 56) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 57) | SYS_SYMLINK = 57 constant SYS_READLINK (line 58) | SYS_READLINK = 58 constant SYS_EXECVE (line 59) | SYS_EXECVE = 59 constant SYS_UMASK (line 60) | SYS_UMASK = 60 constant SYS_CHROOT (line 61) | SYS_CHROOT = 61 constant SYS_MSYNC (line 62) | SYS_MSYNC = 65 constant SYS_VFORK (line 63) | SYS_VFORK = 66 constant SYS_SBRK (line 64) | SYS_SBRK = 69 constant SYS_SSTK (line 65) | SYS_SSTK = 70 constant SYS_OVADVISE (line 66) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_LGETFH (line 112) | SYS_LGETFH = 160 constant SYS_GETFH (line 113) | SYS_GETFH = 161 constant SYS_SYSARCH (line 114) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 115) | SYS_RTPRIO = 166 constant SYS_FREEBSD6_PREAD (line 116) | SYS_FREEBSD6_PREAD = 173 constant SYS_FREEBSD6_PWRITE (line 117) | SYS_FREEBSD6_PWRITE = 174 constant SYS_SETFIB (line 118) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 119) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 120) | SYS_SETGID = 181 constant SYS_SETEGID (line 121) | SYS_SETEGID = 182 constant SYS_SETEUID (line 122) | SYS_SETEUID = 183 constant SYS_STAT (line 123) | SYS_STAT = 188 constant SYS_FSTAT (line 124) | SYS_FSTAT = 189 constant SYS_LSTAT (line 125) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 130) | SYS_GETDIRENTRIES = 196 constant SYS_FREEBSD6_MMAP (line 131) | SYS_FREEBSD6_MMAP = 197 constant SYS_FREEBSD6_LSEEK (line 132) | SYS_FREEBSD6_LSEEK = 199 constant SYS_FREEBSD6_TRUNCATE (line 133) | SYS_FREEBSD6_TRUNCATE = 200 constant SYS_FREEBSD6_FTRUNCATE (line 134) | SYS_FREEBSD6_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS_CLOCK_GETTIME (line 142) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 143) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 144) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 145) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 146) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 147) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 148) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 149) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 150) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 151) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 152) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 153) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_GETCPUCLOCKID2 (line 154) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 155) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 156) | SYS_MINHERIT = 250 constant SYS_RFORK (line 157) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 158) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 159) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 160) | SYS_LCHOWN = 254 constant SYS_GETDENTS (line 161) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 164) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 165) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 166) | SYS_NLSTAT = 280 constant SYS_PREADV (line 167) | SYS_PREADV = 289 constant SYS_PWRITEV (line 168) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 169) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 170) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 171) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 172) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 173) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 174) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 175) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 176) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 177) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 178) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 179) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 180) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 181) | SYS_GETSID = 310 constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 183) | SYS_SETRESGID = 312 constant SYS_YIELD (line 184) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 185) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 186) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 187) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 188) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 189) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 190) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 191) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 192) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 193) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 194) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 195) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 196) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 197) | SYS_KLDSYM = 337 constant SYS_JAIL (line 198) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 199) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 200) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 201) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 202) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 203) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 204) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 205) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 206) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 207) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 208) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 209) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 210) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 211) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 212) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 213) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 214) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 215) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_GETRESUID (line 216) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 217) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 218) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 219) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 220) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 221) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 222) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 223) | SYS___SETUGID = 374 constant SYS_EACCESS (line 224) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 225) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 226) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 227) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 228) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 229) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 230) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 231) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 232) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 233) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 234) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 235) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 236) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 237) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 238) | SYS_STATFS = 396 constant SYS_FSTATFS (line 239) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 240) | SYS_FHSTATFS = 398 constant SYS___MAC_GET_PID (line 241) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 242) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 243) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 244) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 245) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 246) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 247) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 248) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 249) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 250) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 251) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 252) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 253) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 254) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 255) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 256) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 257) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 258) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 259) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 260) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 261) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 262) | SYS_THR_KILL = 433 constant SYS__UMTX_LOCK (line 263) | SYS__UMTX_LOCK = 434 constant SYS__UMTX_UNLOCK (line 264) | SYS__UMTX_UNLOCK = 435 constant SYS_JAIL_ATTACH (line 265) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 266) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 267) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 268) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_THR_SUSPEND (line 269) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 270) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 271) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 272) | SYS_AUDIT = 445 constant SYS_AUDITON (line 273) | SYS_AUDITON = 446 constant SYS_GETAUID (line 274) | SYS_GETAUID = 447 constant SYS_SETAUID (line 275) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 276) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 277) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 278) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 279) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 280) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 281) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 282) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 283) | SYS_SIGQUEUE = 456 constant SYS_ABORT2 (line 284) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 285) | SYS_THR_SET_NAME = 464 constant SYS_RTPRIO_THREAD (line 286) | SYS_RTPRIO_THREAD = 466 constant SYS_PREAD (line 287) | SYS_PREAD = 475 constant SYS_PWRITE (line 288) | SYS_PWRITE = 476 constant SYS_MMAP (line 289) | SYS_MMAP = 477 constant SYS_LSEEK (line 290) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 291) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 292) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 293) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 294) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 295) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 296) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 297) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 298) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 299) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 300) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 301) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 302) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 303) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 304) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 305) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 306) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 307) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 308) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 309) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 310) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 311) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 312) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 313) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 314) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 315) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 316) | SYS_POSIX_OPENPT = 504 constant SYS_JAIL_GET (line 317) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 318) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 319) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 320) | SYS_CLOSEFROM = 509 constant SYS_LPATHCONF (line 321) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 322) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 323) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 324) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 325) | SYS_PDFORK = 518 constant SYS_PDKILL (line 326) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 327) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 328) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 329) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 330) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 331) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 332) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 333) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 334) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 335) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 336) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 337) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 338) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 339) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 340) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 341) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 342) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 343) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 344) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 345) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 346) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 347) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 348) | SYS_PIPE2 = 542 constant SYS_PROCCTL (line 349) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 350) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 351) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 352) | SYS_UTIMENSAT = 547 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 27) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_GETEUID (line 30) | SYS_GETEUID = 25 constant SYS_PTRACE (line 31) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 32) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 33) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 34) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 35) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 36) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 37) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 38) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 39) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 40) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 41) | SYS_SYNC = 36 constant SYS_KILL (line 42) | SYS_KILL = 37 constant SYS_GETPPID (line 43) | SYS_GETPPID = 39 constant SYS_DUP (line 44) | SYS_DUP = 41 constant SYS_PIPE (line 45) | SYS_PIPE = 42 constant SYS_GETEGID (line 46) | SYS_GETEGID = 43 constant SYS_PROFIL (line 47) | SYS_PROFIL = 44 constant SYS_KTRACE (line 48) | SYS_KTRACE = 45 constant SYS_GETGID (line 49) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 50) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 51) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 52) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 53) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 54) | SYS_IOCTL = 54 constant SYS_REBOOT (line 55) | SYS_REBOOT = 55 constant SYS_REVOKE (line 56) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 57) | SYS_SYMLINK = 57 constant SYS_READLINK (line 58) | SYS_READLINK = 58 constant SYS_EXECVE (line 59) | SYS_EXECVE = 59 constant SYS_UMASK (line 60) | SYS_UMASK = 60 constant SYS_CHROOT (line 61) | SYS_CHROOT = 61 constant SYS_MSYNC (line 62) | SYS_MSYNC = 65 constant SYS_VFORK (line 63) | SYS_VFORK = 66 constant SYS_SBRK (line 64) | SYS_SBRK = 69 constant SYS_SSTK (line 65) | SYS_SSTK = 70 constant SYS_OVADVISE (line 66) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_LGETFH (line 112) | SYS_LGETFH = 160 constant SYS_GETFH (line 113) | SYS_GETFH = 161 constant SYS_SYSARCH (line 114) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 115) | SYS_RTPRIO = 166 constant SYS_FREEBSD6_PREAD (line 116) | SYS_FREEBSD6_PREAD = 173 constant SYS_FREEBSD6_PWRITE (line 117) | SYS_FREEBSD6_PWRITE = 174 constant SYS_SETFIB (line 118) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 119) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 120) | SYS_SETGID = 181 constant SYS_SETEGID (line 121) | SYS_SETEGID = 182 constant SYS_SETEUID (line 122) | SYS_SETEUID = 183 constant SYS_STAT (line 123) | SYS_STAT = 188 constant SYS_FSTAT (line 124) | SYS_FSTAT = 189 constant SYS_LSTAT (line 125) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 130) | SYS_GETDIRENTRIES = 196 constant SYS_FREEBSD6_MMAP (line 131) | SYS_FREEBSD6_MMAP = 197 constant SYS_FREEBSD6_LSEEK (line 132) | SYS_FREEBSD6_LSEEK = 199 constant SYS_FREEBSD6_TRUNCATE (line 133) | SYS_FREEBSD6_TRUNCATE = 200 constant SYS_FREEBSD6_FTRUNCATE (line 134) | SYS_FREEBSD6_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS_CLOCK_GETTIME (line 142) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 143) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 144) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 145) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 146) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 147) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 148) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 149) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 150) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 151) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 152) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 153) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_GETCPUCLOCKID2 (line 154) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 155) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 156) | SYS_MINHERIT = 250 constant SYS_RFORK (line 157) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 158) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 159) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 160) | SYS_LCHOWN = 254 constant SYS_GETDENTS (line 161) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 164) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 165) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 166) | SYS_NLSTAT = 280 constant SYS_PREADV (line 167) | SYS_PREADV = 289 constant SYS_PWRITEV (line 168) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 169) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 170) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 171) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 172) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 173) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 174) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 175) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 176) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 177) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 178) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 179) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 180) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 181) | SYS_GETSID = 310 constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 183) | SYS_SETRESGID = 312 constant SYS_YIELD (line 184) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 185) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 186) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 187) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 188) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 189) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 190) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 191) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 192) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 193) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 194) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 195) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 196) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 197) | SYS_KLDSYM = 337 constant SYS_JAIL (line 198) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 199) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 200) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 201) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 202) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 203) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 204) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 205) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 206) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 207) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 208) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 209) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 210) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 211) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 212) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 213) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 214) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 215) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_GETRESUID (line 216) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 217) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 218) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 219) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 220) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 221) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 222) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 223) | SYS___SETUGID = 374 constant SYS_EACCESS (line 224) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 225) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 226) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 227) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 228) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 229) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 230) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 231) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 232) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 233) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 234) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 235) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 236) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 237) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 238) | SYS_STATFS = 396 constant SYS_FSTATFS (line 239) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 240) | SYS_FHSTATFS = 398 constant SYS___MAC_GET_PID (line 241) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 242) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 243) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 244) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 245) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 246) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 247) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 248) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 249) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 250) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 251) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 252) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 253) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 254) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 255) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 256) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 257) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 258) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 259) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 260) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 261) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 262) | SYS_THR_KILL = 433 constant SYS__UMTX_LOCK (line 263) | SYS__UMTX_LOCK = 434 constant SYS__UMTX_UNLOCK (line 264) | SYS__UMTX_UNLOCK = 435 constant SYS_JAIL_ATTACH (line 265) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 266) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 267) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 268) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_THR_SUSPEND (line 269) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 270) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 271) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 272) | SYS_AUDIT = 445 constant SYS_AUDITON (line 273) | SYS_AUDITON = 446 constant SYS_GETAUID (line 274) | SYS_GETAUID = 447 constant SYS_SETAUID (line 275) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 276) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 277) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 278) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 279) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 280) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 281) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 282) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 283) | SYS_SIGQUEUE = 456 constant SYS_ABORT2 (line 284) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 285) | SYS_THR_SET_NAME = 464 constant SYS_RTPRIO_THREAD (line 286) | SYS_RTPRIO_THREAD = 466 constant SYS_PREAD (line 287) | SYS_PREAD = 475 constant SYS_PWRITE (line 288) | SYS_PWRITE = 476 constant SYS_MMAP (line 289) | SYS_MMAP = 477 constant SYS_LSEEK (line 290) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 291) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 292) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 293) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 294) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 295) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 296) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 297) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 298) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 299) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 300) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 301) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 302) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 303) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 304) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 305) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 306) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 307) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 308) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 309) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 310) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 311) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 312) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 313) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 314) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 315) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 316) | SYS_POSIX_OPENPT = 504 constant SYS_JAIL_GET (line 317) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 318) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 319) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 320) | SYS_CLOSEFROM = 509 constant SYS_LPATHCONF (line 321) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 322) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 323) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 324) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 325) | SYS_PDFORK = 518 constant SYS_PDKILL (line 326) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 327) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 328) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 329) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 330) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 331) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 332) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 333) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 334) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 335) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 336) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 337) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 338) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 339) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 340) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 341) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 342) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 343) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 344) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 345) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 346) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 347) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 348) | SYS_PIPE2 = 542 constant SYS_PROCCTL (line 349) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 350) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 351) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 352) | SYS_UTIMENSAT = 547 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_386.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAITPID (line 16) | SYS_WAITPID = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECVE (line 20) | SYS_EXECVE = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_TIME (line 22) | SYS_TIME = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BREAK (line 26) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 27) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_STIME (line 34) | SYS_STIME = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 37) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_STTY (line 40) | SYS_STTY = 31 constant SYS_GTTY (line 41) | SYS_GTTY = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_NICE (line 43) | SYS_NICE = 34 constant SYS_FTIME (line 44) | SYS_FTIME = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_KILL (line 46) | SYS_KILL = 37 constant SYS_RENAME (line 47) | SYS_RENAME = 38 constant SYS_MKDIR (line 48) | SYS_MKDIR = 39 constant SYS_RMDIR (line 49) | SYS_RMDIR = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_PIPE (line 51) | SYS_PIPE = 42 constant SYS_TIMES (line 52) | SYS_TIMES = 43 constant SYS_PROF (line 53) | SYS_PROF = 44 constant SYS_BRK (line 54) | SYS_BRK = 45 constant SYS_SETGID (line 55) | SYS_SETGID = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 58) | SYS_GETEUID = 49 constant SYS_GETEGID (line 59) | SYS_GETEGID = 50 constant SYS_ACCT (line 60) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 62) | SYS_LOCK = 53 constant SYS_IOCTL (line 63) | SYS_IOCTL = 54 constant SYS_FCNTL (line 64) | SYS_FCNTL = 55 constant SYS_MPX (line 65) | SYS_MPX = 56 constant SYS_SETPGID (line 66) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 68) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 69) | SYS_UMASK = 60 constant SYS_CHROOT (line 70) | SYS_CHROOT = 61 constant SYS_USTAT (line 71) | SYS_USTAT = 62 constant SYS_DUP2 (line 72) | SYS_DUP2 = 63 constant SYS_GETPPID (line 73) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 65 constant SYS_SETSID (line 75) | SYS_SETSID = 66 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 79) | SYS_SETREUID = 70 constant SYS_SETREGID (line 80) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 91) | SYS_SELECT = 82 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 93) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 94) | SYS_READLINK = 85 constant SYS_USELIB (line 95) | SYS_USELIB = 86 constant SYS_SWAPON (line 96) | SYS_SWAPON = 87 constant SYS_REBOOT (line 97) | SYS_REBOOT = 88 constant SYS_READDIR (line 98) | SYS_READDIR = 89 constant SYS_MMAP (line 99) | SYS_MMAP = 90 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 107) | SYS_PROFIL = 98 constant SYS_STATFS (line 108) | SYS_STATFS = 99 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 105 constant SYS_STAT (line 115) | SYS_STAT = 106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 118) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 119) | SYS_IOPL = 110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 111 constant SYS_IDLE (line 121) | SYS_IDLE = 112 constant SYS_VM86OLD (line 122) | SYS_VM86OLD = 113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 116 constant SYS_IPC (line 126) | SYS_IPC = 117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 129) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 131) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 144 constant SYS_READV (line 154) | SYS_READV = 145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 146 constant SYS_GETSID (line 156) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 157) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 158) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 159) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 163) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 164) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 165) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 166) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 167) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 168) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 169) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 170) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 171) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 172) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 173) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 174) | SYS_GETRESUID = 165 constant SYS_VM86 (line 175) | SYS_VM86 = 166 constant SYS_QUERY_MODULE (line 176) | SYS_QUERY_MODULE = 167 constant SYS_POLL (line 177) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 178) | SYS_NFSSERVCTL = 169 constant SYS_SETRESGID (line 179) | SYS_SETRESGID = 170 constant SYS_GETRESGID (line 180) | SYS_GETRESGID = 171 constant SYS_PRCTL (line 181) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 182) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 183) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 184) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 185) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 186) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 187) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 188) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 189) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 190) | SYS_PWRITE64 = 181 constant SYS_CHOWN (line 191) | SYS_CHOWN = 182 constant SYS_GETCWD (line 192) | SYS_GETCWD = 183 constant SYS_CAPGET (line 193) | SYS_CAPGET = 184 constant SYS_CAPSET (line 194) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 195) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 196) | SYS_SENDFILE = 187 constant SYS_GETPMSG (line 197) | SYS_GETPMSG = 188 constant SYS_PUTPMSG (line 198) | SYS_PUTPMSG = 189 constant SYS_VFORK (line 199) | SYS_VFORK = 190 constant SYS_UGETRLIMIT (line 200) | SYS_UGETRLIMIT = 191 constant SYS_MMAP2 (line 201) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 202) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 203) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 204) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 205) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 206) | SYS_FSTAT64 = 197 constant SYS_LCHOWN32 (line 207) | SYS_LCHOWN32 = 198 constant SYS_GETUID32 (line 208) | SYS_GETUID32 = 199 constant SYS_GETGID32 (line 209) | SYS_GETGID32 = 200 constant SYS_GETEUID32 (line 210) | SYS_GETEUID32 = 201 constant SYS_GETEGID32 (line 211) | SYS_GETEGID32 = 202 constant SYS_SETREUID32 (line 212) | SYS_SETREUID32 = 203 constant SYS_SETREGID32 (line 213) | SYS_SETREGID32 = 204 constant SYS_GETGROUPS32 (line 214) | SYS_GETGROUPS32 = 205 constant SYS_SETGROUPS32 (line 215) | SYS_SETGROUPS32 = 206 constant SYS_FCHOWN32 (line 216) | SYS_FCHOWN32 = 207 constant SYS_SETRESUID32 (line 217) | SYS_SETRESUID32 = 208 constant SYS_GETRESUID32 (line 218) | SYS_GETRESUID32 = 209 constant SYS_SETRESGID32 (line 219) | SYS_SETRESGID32 = 210 constant SYS_GETRESGID32 (line 220) | SYS_GETRESGID32 = 211 constant SYS_CHOWN32 (line 221) | SYS_CHOWN32 = 212 constant SYS_SETUID32 (line 222) | SYS_SETUID32 = 213 constant SYS_SETGID32 (line 223) | SYS_SETGID32 = 214 constant SYS_SETFSUID32 (line 224) | SYS_SETFSUID32 = 215 constant SYS_SETFSGID32 (line 225) | SYS_SETFSGID32 = 216 constant SYS_PIVOT_ROOT (line 226) | SYS_PIVOT_ROOT = 217 constant SYS_MINCORE (line 227) | SYS_MINCORE = 218 constant SYS_MADVISE (line 228) | SYS_MADVISE = 219 constant SYS_GETDENTS64 (line 229) | SYS_GETDENTS64 = 220 constant SYS_FCNTL64 (line 230) | SYS_FCNTL64 = 221 constant SYS_GETTID (line 231) | SYS_GETTID = 224 constant SYS_READAHEAD (line 232) | SYS_READAHEAD = 225 constant SYS_SETXATTR (line 233) | SYS_SETXATTR = 226 constant SYS_LSETXATTR (line 234) | SYS_LSETXATTR = 227 constant SYS_FSETXATTR (line 235) | SYS_FSETXATTR = 228 constant SYS_GETXATTR (line 236) | SYS_GETXATTR = 229 constant SYS_LGETXATTR (line 237) | SYS_LGETXATTR = 230 constant SYS_FGETXATTR (line 238) | SYS_FGETXATTR = 231 constant SYS_LISTXATTR (line 239) | SYS_LISTXATTR = 232 constant SYS_LLISTXATTR (line 240) | SYS_LLISTXATTR = 233 constant SYS_FLISTXATTR (line 241) | SYS_FLISTXATTR = 234 constant SYS_REMOVEXATTR (line 242) | SYS_REMOVEXATTR = 235 constant SYS_LREMOVEXATTR (line 243) | SYS_LREMOVEXATTR = 236 constant SYS_FREMOVEXATTR (line 244) | SYS_FREMOVEXATTR = 237 constant SYS_TKILL (line 245) | SYS_TKILL = 238 constant SYS_SENDFILE64 (line 246) | SYS_SENDFILE64 = 239 constant SYS_FUTEX (line 247) | SYS_FUTEX = 240 constant SYS_SCHED_SETAFFINITY (line 248) | SYS_SCHED_SETAFFINITY = 241 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 242 constant SYS_SET_THREAD_AREA (line 250) | SYS_SET_THREAD_AREA = 243 constant SYS_GET_THREAD_AREA (line 251) | SYS_GET_THREAD_AREA = 244 constant SYS_IO_SETUP (line 252) | SYS_IO_SETUP = 245 constant SYS_IO_DESTROY (line 253) | SYS_IO_DESTROY = 246 constant SYS_IO_GETEVENTS (line 254) | SYS_IO_GETEVENTS = 247 constant SYS_IO_SUBMIT (line 255) | SYS_IO_SUBMIT = 248 constant SYS_IO_CANCEL (line 256) | SYS_IO_CANCEL = 249 constant SYS_FADVISE64 (line 257) | SYS_FADVISE64 = 250 constant SYS_EXIT_GROUP (line 258) | SYS_EXIT_GROUP = 252 constant SYS_LOOKUP_DCOOKIE (line 259) | SYS_LOOKUP_DCOOKIE = 253 constant SYS_EPOLL_CREATE (line 260) | SYS_EPOLL_CREATE = 254 constant SYS_EPOLL_CTL (line 261) | SYS_EPOLL_CTL = 255 constant SYS_EPOLL_WAIT (line 262) | SYS_EPOLL_WAIT = 256 constant SYS_REMAP_FILE_PAGES (line 263) | SYS_REMAP_FILE_PAGES = 257 constant SYS_SET_TID_ADDRESS (line 264) | SYS_SET_TID_ADDRESS = 258 constant SYS_TIMER_CREATE (line 265) | SYS_TIMER_CREATE = 259 constant SYS_TIMER_SETTIME (line 266) | SYS_TIMER_SETTIME = 260 constant SYS_TIMER_GETTIME (line 267) | SYS_TIMER_GETTIME = 261 constant SYS_TIMER_GETOVERRUN (line 268) | SYS_TIMER_GETOVERRUN = 262 constant SYS_TIMER_DELETE (line 269) | SYS_TIMER_DELETE = 263 constant SYS_CLOCK_SETTIME (line 270) | SYS_CLOCK_SETTIME = 264 constant SYS_CLOCK_GETTIME (line 271) | SYS_CLOCK_GETTIME = 265 constant SYS_CLOCK_GETRES (line 272) | SYS_CLOCK_GETRES = 266 constant SYS_CLOCK_NANOSLEEP (line 273) | SYS_CLOCK_NANOSLEEP = 267 constant SYS_STATFS64 (line 274) | SYS_STATFS64 = 268 constant SYS_FSTATFS64 (line 275) | SYS_FSTATFS64 = 269 constant SYS_TGKILL (line 276) | SYS_TGKILL = 270 constant SYS_UTIMES (line 277) | SYS_UTIMES = 271 constant SYS_FADVISE64_64 (line 278) | SYS_FADVISE64_64 = 272 constant SYS_VSERVER (line 279) | SYS_VSERVER = 273 constant SYS_MBIND (line 280) | SYS_MBIND = 274 constant SYS_GET_MEMPOLICY (line 281) | SYS_GET_MEMPOLICY = 275 constant SYS_SET_MEMPOLICY (line 282) | SYS_SET_MEMPOLICY = 276 constant SYS_MQ_OPEN (line 283) | SYS_MQ_OPEN = 277 constant SYS_MQ_UNLINK (line 284) | SYS_MQ_UNLINK = 278 constant SYS_MQ_TIMEDSEND (line 285) | SYS_MQ_TIMEDSEND = 279 constant SYS_MQ_TIMEDRECEIVE (line 286) | SYS_MQ_TIMEDRECEIVE = 280 constant SYS_MQ_NOTIFY (line 287) | SYS_MQ_NOTIFY = 281 constant SYS_MQ_GETSETATTR (line 288) | SYS_MQ_GETSETATTR = 282 constant SYS_KEXEC_LOAD (line 289) | SYS_KEXEC_LOAD = 283 constant SYS_WAITID (line 290) | SYS_WAITID = 284 constant SYS_ADD_KEY (line 291) | SYS_ADD_KEY = 286 constant SYS_REQUEST_KEY (line 292) | SYS_REQUEST_KEY = 287 constant SYS_KEYCTL (line 293) | SYS_KEYCTL = 288 constant SYS_IOPRIO_SET (line 294) | SYS_IOPRIO_SET = 289 constant SYS_IOPRIO_GET (line 295) | SYS_IOPRIO_GET = 290 constant SYS_INOTIFY_INIT (line 296) | SYS_INOTIFY_INIT = 291 constant SYS_INOTIFY_ADD_WATCH (line 297) | SYS_INOTIFY_ADD_WATCH = 292 constant SYS_INOTIFY_RM_WATCH (line 298) | SYS_INOTIFY_RM_WATCH = 293 constant SYS_MIGRATE_PAGES (line 299) | SYS_MIGRATE_PAGES = 294 constant SYS_OPENAT (line 300) | SYS_OPENAT = 295 constant SYS_MKDIRAT (line 301) | SYS_MKDIRAT = 296 constant SYS_MKNODAT (line 302) | SYS_MKNODAT = 297 constant SYS_FCHOWNAT (line 303) | SYS_FCHOWNAT = 298 constant SYS_FUTIMESAT (line 304) | SYS_FUTIMESAT = 299 constant SYS_FSTATAT64 (line 305) | SYS_FSTATAT64 = 300 constant SYS_UNLINKAT (line 306) | SYS_UNLINKAT = 301 constant SYS_RENAMEAT (line 307) | SYS_RENAMEAT = 302 constant SYS_LINKAT (line 308) | SYS_LINKAT = 303 constant SYS_SYMLINKAT (line 309) | SYS_SYMLINKAT = 304 constant SYS_READLINKAT (line 310) | SYS_READLINKAT = 305 constant SYS_FCHMODAT (line 311) | SYS_FCHMODAT = 306 constant SYS_FACCESSAT (line 312) | SYS_FACCESSAT = 307 constant SYS_PSELECT6 (line 313) | SYS_PSELECT6 = 308 constant SYS_PPOLL (line 314) | SYS_PPOLL = 309 constant SYS_UNSHARE (line 315) | SYS_UNSHARE = 310 constant SYS_SET_ROBUST_LIST (line 316) | SYS_SET_ROBUST_LIST = 311 constant SYS_GET_ROBUST_LIST (line 317) | SYS_GET_ROBUST_LIST = 312 constant SYS_SPLICE (line 318) | SYS_SPLICE = 313 constant SYS_SYNC_FILE_RANGE (line 319) | SYS_SYNC_FILE_RANGE = 314 constant SYS_TEE (line 320) | SYS_TEE = 315 constant SYS_VMSPLICE (line 321) | SYS_VMSPLICE = 316 constant SYS_MOVE_PAGES (line 322) | SYS_MOVE_PAGES = 317 constant SYS_GETCPU (line 323) | SYS_GETCPU = 318 constant SYS_EPOLL_PWAIT (line 324) | SYS_EPOLL_PWAIT = 319 constant SYS_UTIMENSAT (line 325) | SYS_UTIMENSAT = 320 constant SYS_SIGNALFD (line 326) | SYS_SIGNALFD = 321 constant SYS_TIMERFD_CREATE (line 327) | SYS_TIMERFD_CREATE = 322 constant SYS_EVENTFD (line 328) | SYS_EVENTFD = 323 constant SYS_FALLOCATE (line 329) | SYS_FALLOCATE = 324 constant SYS_TIMERFD_SETTIME (line 330) | SYS_TIMERFD_SETTIME = 325 constant SYS_TIMERFD_GETTIME (line 331) | SYS_TIMERFD_GETTIME = 326 constant SYS_SIGNALFD4 (line 332) | SYS_SIGNALFD4 = 327 constant SYS_EVENTFD2 (line 333) | SYS_EVENTFD2 = 328 constant SYS_EPOLL_CREATE1 (line 334) | SYS_EPOLL_CREATE1 = 329 constant SYS_DUP3 (line 335) | SYS_DUP3 = 330 constant SYS_PIPE2 (line 336) | SYS_PIPE2 = 331 constant SYS_INOTIFY_INIT1 (line 337) | SYS_INOTIFY_INIT1 = 332 constant SYS_PREADV (line 338) | SYS_PREADV = 333 constant SYS_PWRITEV (line 339) | SYS_PWRITEV = 334 constant SYS_RT_TGSIGQUEUEINFO (line 340) | SYS_RT_TGSIGQUEUEINFO = 335 constant SYS_PERF_EVENT_OPEN (line 341) | SYS_PERF_EVENT_OPEN = 336 constant SYS_RECVMMSG (line 342) | SYS_RECVMMSG = 337 constant SYS_FANOTIFY_INIT (line 343) | SYS_FANOTIFY_INIT = 338 constant SYS_FANOTIFY_MARK (line 344) | SYS_FANOTIFY_MARK = 339 constant SYS_PRLIMIT64 (line 345) | SYS_PRLIMIT64 = 340 constant SYS_NAME_TO_HANDLE_AT (line 346) | SYS_NAME_TO_HANDLE_AT = 341 constant SYS_OPEN_BY_HANDLE_AT (line 347) | SYS_OPEN_BY_HANDLE_AT = 342 constant SYS_CLOCK_ADJTIME (line 348) | SYS_CLOCK_ADJTIME = 343 constant SYS_SYNCFS (line 349) | SYS_SYNCFS = 344 constant SYS_SENDMMSG (line 350) | SYS_SENDMMSG = 345 constant SYS_SETNS (line 351) | SYS_SETNS = 346 constant SYS_PROCESS_VM_READV (line 352) | SYS_PROCESS_VM_READV = 347 constant SYS_PROCESS_VM_WRITEV (line 353) | SYS_PROCESS_VM_WRITEV = 348 constant SYS_KCMP (line 354) | SYS_KCMP = 349 constant SYS_FINIT_MODULE (line 355) | SYS_FINIT_MODULE = 350 constant SYS_SCHED_SETATTR (line 356) | SYS_SCHED_SETATTR = 351 constant SYS_SCHED_GETATTR (line 357) | SYS_SCHED_GETATTR = 352 constant SYS_RENAMEAT2 (line 358) | SYS_RENAMEAT2 = 353 constant SYS_SECCOMP (line 359) | SYS_SECCOMP = 354 constant SYS_GETRANDOM (line 360) | SYS_GETRANDOM = 355 constant SYS_MEMFD_CREATE (line 361) | SYS_MEMFD_CREATE = 356 constant SYS_BPF (line 362) | SYS_BPF = 357 constant SYS_EXECVEAT (line 363) | SYS_EXECVEAT = 358 constant SYS_SOCKET (line 364) | SYS_SOCKET = 359 constant SYS_SOCKETPAIR (line 365) | SYS_SOCKETPAIR = 360 constant SYS_BIND (line 366) | SYS_BIND = 361 constant SYS_CONNECT (line 367) | SYS_CONNECT = 362 constant SYS_LISTEN (line 368) | SYS_LISTEN = 363 constant SYS_ACCEPT4 (line 369) | SYS_ACCEPT4 = 364 constant SYS_GETSOCKOPT (line 370) | SYS_GETSOCKOPT = 365 constant SYS_SETSOCKOPT (line 371) | SYS_SETSOCKOPT = 366 constant SYS_GETSOCKNAME (line 372) | SYS_GETSOCKNAME = 367 constant SYS_GETPEERNAME (line 373) | SYS_GETPEERNAME = 368 constant SYS_SENDTO (line 374) | SYS_SENDTO = 369 constant SYS_SENDMSG (line 375) | SYS_SENDMSG = 370 constant SYS_RECVFROM (line 376) | SYS_RECVFROM = 371 constant SYS_RECVMSG (line 377) | SYS_RECVMSG = 372 constant SYS_SHUTDOWN (line 378) | SYS_SHUTDOWN = 373 constant SYS_USERFAULTFD (line 379) | SYS_USERFAULTFD = 374 constant SYS_MEMBARRIER (line 380) | SYS_MEMBARRIER = 375 constant SYS_MLOCK2 (line 381) | SYS_MLOCK2 = 376 constant SYS_COPY_FILE_RANGE (line 382) | SYS_COPY_FILE_RANGE = 377 constant SYS_PREADV2 (line 383) | SYS_PREADV2 = 378 constant SYS_PWRITEV2 (line 384) | SYS_PWRITEV2 = 379 constant SYS_PKEY_MPROTECT (line 385) | SYS_PKEY_MPROTECT = 380 constant SYS_PKEY_ALLOC (line 386) | SYS_PKEY_ALLOC = 381 constant SYS_PKEY_FREE (line 387) | SYS_PKEY_FREE = 382 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go constant SYS_READ (line 9) | SYS_READ = 0 constant SYS_WRITE (line 10) | SYS_WRITE = 1 constant SYS_OPEN (line 11) | SYS_OPEN = 2 constant SYS_CLOSE (line 12) | SYS_CLOSE = 3 constant SYS_STAT (line 13) | SYS_STAT = 4 constant SYS_FSTAT (line 14) | SYS_FSTAT = 5 constant SYS_LSTAT (line 15) | SYS_LSTAT = 6 constant SYS_POLL (line 16) | SYS_POLL = 7 constant SYS_LSEEK (line 17) | SYS_LSEEK = 8 constant SYS_MMAP (line 18) | SYS_MMAP = 9 constant SYS_MPROTECT (line 19) | SYS_MPROTECT = 10 constant SYS_MUNMAP (line 20) | SYS_MUNMAP = 11 constant SYS_BRK (line 21) | SYS_BRK = 12 constant SYS_RT_SIGACTION (line 22) | SYS_RT_SIGACTION = 13 constant SYS_RT_SIGPROCMASK (line 23) | SYS_RT_SIGPROCMASK = 14 constant SYS_RT_SIGRETURN (line 24) | SYS_RT_SIGRETURN = 15 constant SYS_IOCTL (line 25) | SYS_IOCTL = 16 constant SYS_PREAD64 (line 26) | SYS_PREAD64 = 17 constant SYS_PWRITE64 (line 27) | SYS_PWRITE64 = 18 constant SYS_READV (line 28) | SYS_READV = 19 constant SYS_WRITEV (line 29) | SYS_WRITEV = 20 constant SYS_ACCESS (line 30) | SYS_ACCESS = 21 constant SYS_PIPE (line 31) | SYS_PIPE = 22 constant SYS_SELECT (line 32) | SYS_SELECT = 23 constant SYS_SCHED_YIELD (line 33) | SYS_SCHED_YIELD = 24 constant SYS_MREMAP (line 34) | SYS_MREMAP = 25 constant SYS_MSYNC (line 35) | SYS_MSYNC = 26 constant SYS_MINCORE (line 36) | SYS_MINCORE = 27 constant SYS_MADVISE (line 37) | SYS_MADVISE = 28 constant SYS_SHMGET (line 38) | SYS_SHMGET = 29 constant SYS_SHMAT (line 39) | SYS_SHMAT = 30 constant SYS_SHMCTL (line 40) | SYS_SHMCTL = 31 constant SYS_DUP (line 41) | SYS_DUP = 32 constant SYS_DUP2 (line 42) | SYS_DUP2 = 33 constant SYS_PAUSE (line 43) | SYS_PAUSE = 34 constant SYS_NANOSLEEP (line 44) | SYS_NANOSLEEP = 35 constant SYS_GETITIMER (line 45) | SYS_GETITIMER = 36 constant SYS_ALARM (line 46) | SYS_ALARM = 37 constant SYS_SETITIMER (line 47) | SYS_SETITIMER = 38 constant SYS_GETPID (line 48) | SYS_GETPID = 39 constant SYS_SENDFILE (line 49) | SYS_SENDFILE = 40 constant SYS_SOCKET (line 50) | SYS_SOCKET = 41 constant SYS_CONNECT (line 51) | SYS_CONNECT = 42 constant SYS_ACCEPT (line 52) | SYS_ACCEPT = 43 constant SYS_SENDTO (line 53) | SYS_SENDTO = 44 constant SYS_RECVFROM (line 54) | SYS_RECVFROM = 45 constant SYS_SENDMSG (line 55) | SYS_SENDMSG = 46 constant SYS_RECVMSG (line 56) | SYS_RECVMSG = 47 constant SYS_SHUTDOWN (line 57) | SYS_SHUTDOWN = 48 constant SYS_BIND (line 58) | SYS_BIND = 49 constant SYS_LISTEN (line 59) | SYS_LISTEN = 50 constant SYS_GETSOCKNAME (line 60) | SYS_GETSOCKNAME = 51 constant SYS_GETPEERNAME (line 61) | SYS_GETPEERNAME = 52 constant SYS_SOCKETPAIR (line 62) | SYS_SOCKETPAIR = 53 constant SYS_SETSOCKOPT (line 63) | SYS_SETSOCKOPT = 54 constant SYS_GETSOCKOPT (line 64) | SYS_GETSOCKOPT = 55 constant SYS_CLONE (line 65) | SYS_CLONE = 56 constant SYS_FORK (line 66) | SYS_FORK = 57 constant SYS_VFORK (line 67) | SYS_VFORK = 58 constant SYS_EXECVE (line 68) | SYS_EXECVE = 59 constant SYS_EXIT (line 69) | SYS_EXIT = 60 constant SYS_WAIT4 (line 70) | SYS_WAIT4 = 61 constant SYS_KILL (line 71) | SYS_KILL = 62 constant SYS_UNAME (line 72) | SYS_UNAME = 63 constant SYS_SEMGET (line 73) | SYS_SEMGET = 64 constant SYS_SEMOP (line 74) | SYS_SEMOP = 65 constant SYS_SEMCTL (line 75) | SYS_SEMCTL = 66 constant SYS_SHMDT (line 76) | SYS_SHMDT = 67 constant SYS_MSGGET (line 77) | SYS_MSGGET = 68 constant SYS_MSGSND (line 78) | SYS_MSGSND = 69 constant SYS_MSGRCV (line 79) | SYS_MSGRCV = 70 constant SYS_MSGCTL (line 80) | SYS_MSGCTL = 71 constant SYS_FCNTL (line 81) | SYS_FCNTL = 72 constant SYS_FLOCK (line 82) | SYS_FLOCK = 73 constant SYS_FSYNC (line 83) | SYS_FSYNC = 74 constant SYS_FDATASYNC (line 84) | SYS_FDATASYNC = 75 constant SYS_TRUNCATE (line 85) | SYS_TRUNCATE = 76 constant SYS_FTRUNCATE (line 86) | SYS_FTRUNCATE = 77 constant SYS_GETDENTS (line 87) | SYS_GETDENTS = 78 constant SYS_GETCWD (line 88) | SYS_GETCWD = 79 constant SYS_CHDIR (line 89) | SYS_CHDIR = 80 constant SYS_FCHDIR (line 90) | SYS_FCHDIR = 81 constant SYS_RENAME (line 91) | SYS_RENAME = 82 constant SYS_MKDIR (line 92) | SYS_MKDIR = 83 constant SYS_RMDIR (line 93) | SYS_RMDIR = 84 constant SYS_CREAT (line 94) | SYS_CREAT = 85 constant SYS_LINK (line 95) | SYS_LINK = 86 constant SYS_UNLINK (line 96) | SYS_UNLINK = 87 constant SYS_SYMLINK (line 97) | SYS_SYMLINK = 88 constant SYS_READLINK (line 98) | SYS_READLINK = 89 constant SYS_CHMOD (line 99) | SYS_CHMOD = 90 constant SYS_FCHMOD (line 100) | SYS_FCHMOD = 91 constant SYS_CHOWN (line 101) | SYS_CHOWN = 92 constant SYS_FCHOWN (line 102) | SYS_FCHOWN = 93 constant SYS_LCHOWN (line 103) | SYS_LCHOWN = 94 constant SYS_UMASK (line 104) | SYS_UMASK = 95 constant SYS_GETTIMEOFDAY (line 105) | SYS_GETTIMEOFDAY = 96 constant SYS_GETRLIMIT (line 106) | SYS_GETRLIMIT = 97 constant SYS_GETRUSAGE (line 107) | SYS_GETRUSAGE = 98 constant SYS_SYSINFO (line 108) | SYS_SYSINFO = 99 constant SYS_TIMES (line 109) | SYS_TIMES = 100 constant SYS_PTRACE (line 110) | SYS_PTRACE = 101 constant SYS_GETUID (line 111) | SYS_GETUID = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_GETGID (line 113) | SYS_GETGID = 104 constant SYS_SETUID (line 114) | SYS_SETUID = 105 constant SYS_SETGID (line 115) | SYS_SETGID = 106 constant SYS_GETEUID (line 116) | SYS_GETEUID = 107 constant SYS_GETEGID (line 117) | SYS_GETEGID = 108 constant SYS_SETPGID (line 118) | SYS_SETPGID = 109 constant SYS_GETPPID (line 119) | SYS_GETPPID = 110 constant SYS_GETPGRP (line 120) | SYS_GETPGRP = 111 constant SYS_SETSID (line 121) | SYS_SETSID = 112 constant SYS_SETREUID (line 122) | SYS_SETREUID = 113 constant SYS_SETREGID (line 123) | SYS_SETREGID = 114 constant SYS_GETGROUPS (line 124) | SYS_GETGROUPS = 115 constant SYS_SETGROUPS (line 125) | SYS_SETGROUPS = 116 constant SYS_SETRESUID (line 126) | SYS_SETRESUID = 117 constant SYS_GETRESUID (line 127) | SYS_GETRESUID = 118 constant SYS_SETRESGID (line 128) | SYS_SETRESGID = 119 constant SYS_GETRESGID (line 129) | SYS_GETRESGID = 120 constant SYS_GETPGID (line 130) | SYS_GETPGID = 121 constant SYS_SETFSUID (line 131) | SYS_SETFSUID = 122 constant SYS_SETFSGID (line 132) | SYS_SETFSGID = 123 constant SYS_GETSID (line 133) | SYS_GETSID = 124 constant SYS_CAPGET (line 134) | SYS_CAPGET = 125 constant SYS_CAPSET (line 135) | SYS_CAPSET = 126 constant SYS_RT_SIGPENDING (line 136) | SYS_RT_SIGPENDING = 127 constant SYS_RT_SIGTIMEDWAIT (line 137) | SYS_RT_SIGTIMEDWAIT = 128 constant SYS_RT_SIGQUEUEINFO (line 138) | SYS_RT_SIGQUEUEINFO = 129 constant SYS_RT_SIGSUSPEND (line 139) | SYS_RT_SIGSUSPEND = 130 constant SYS_SIGALTSTACK (line 140) | SYS_SIGALTSTACK = 131 constant SYS_UTIME (line 141) | SYS_UTIME = 132 constant SYS_MKNOD (line 142) | SYS_MKNOD = 133 constant SYS_USELIB (line 143) | SYS_USELIB = 134 constant SYS_PERSONALITY (line 144) | SYS_PERSONALITY = 135 constant SYS_USTAT (line 145) | SYS_USTAT = 136 constant SYS_STATFS (line 146) | SYS_STATFS = 137 constant SYS_FSTATFS (line 147) | SYS_FSTATFS = 138 constant SYS_SYSFS (line 148) | SYS_SYSFS = 139 constant SYS_GETPRIORITY (line 149) | SYS_GETPRIORITY = 140 constant SYS_SETPRIORITY (line 150) | SYS_SETPRIORITY = 141 constant SYS_SCHED_SETPARAM (line 151) | SYS_SCHED_SETPARAM = 142 constant SYS_SCHED_GETPARAM (line 152) | SYS_SCHED_GETPARAM = 143 constant SYS_SCHED_SETSCHEDULER (line 153) | SYS_SCHED_SETSCHEDULER = 144 constant SYS_SCHED_GETSCHEDULER (line 154) | SYS_SCHED_GETSCHEDULER = 145 constant SYS_SCHED_GET_PRIORITY_MAX (line 155) | SYS_SCHED_GET_PRIORITY_MAX = 146 constant SYS_SCHED_GET_PRIORITY_MIN (line 156) | SYS_SCHED_GET_PRIORITY_MIN = 147 constant SYS_SCHED_RR_GET_INTERVAL (line 157) | SYS_SCHED_RR_GET_INTERVAL = 148 constant SYS_MLOCK (line 158) | SYS_MLOCK = 149 constant SYS_MUNLOCK (line 159) | SYS_MUNLOCK = 150 constant SYS_MLOCKALL (line 160) | SYS_MLOCKALL = 151 constant SYS_MUNLOCKALL (line 161) | SYS_MUNLOCKALL = 152 constant SYS_VHANGUP (line 162) | SYS_VHANGUP = 153 constant SYS_MODIFY_LDT (line 163) | SYS_MODIFY_LDT = 154 constant SYS_PIVOT_ROOT (line 164) | SYS_PIVOT_ROOT = 155 constant SYS__SYSCTL (line 165) | SYS__SYSCTL = 156 constant SYS_PRCTL (line 166) | SYS_PRCTL = 157 constant SYS_ARCH_PRCTL (line 167) | SYS_ARCH_PRCTL = 158 constant SYS_ADJTIMEX (line 168) | SYS_ADJTIMEX = 159 constant SYS_SETRLIMIT (line 169) | SYS_SETRLIMIT = 160 constant SYS_CHROOT (line 170) | SYS_CHROOT = 161 constant SYS_SYNC (line 171) | SYS_SYNC = 162 constant SYS_ACCT (line 172) | SYS_ACCT = 163 constant SYS_SETTIMEOFDAY (line 173) | SYS_SETTIMEOFDAY = 164 constant SYS_MOUNT (line 174) | SYS_MOUNT = 165 constant SYS_UMOUNT2 (line 175) | SYS_UMOUNT2 = 166 constant SYS_SWAPON (line 176) | SYS_SWAPON = 167 constant SYS_SWAPOFF (line 177) | SYS_SWAPOFF = 168 constant SYS_REBOOT (line 178) | SYS_REBOOT = 169 constant SYS_SETHOSTNAME (line 179) | SYS_SETHOSTNAME = 170 constant SYS_SETDOMAINNAME (line 180) | SYS_SETDOMAINNAME = 171 constant SYS_IOPL (line 181) | SYS_IOPL = 172 constant SYS_IOPERM (line 182) | SYS_IOPERM = 173 constant SYS_CREATE_MODULE (line 183) | SYS_CREATE_MODULE = 174 constant SYS_INIT_MODULE (line 184) | SYS_INIT_MODULE = 175 constant SYS_DELETE_MODULE (line 185) | SYS_DELETE_MODULE = 176 constant SYS_GET_KERNEL_SYMS (line 186) | SYS_GET_KERNEL_SYMS = 177 constant SYS_QUERY_MODULE (line 187) | SYS_QUERY_MODULE = 178 constant SYS_QUOTACTL (line 188) | SYS_QUOTACTL = 179 constant SYS_NFSSERVCTL (line 189) | SYS_NFSSERVCTL = 180 constant SYS_GETPMSG (line 190) | SYS_GETPMSG = 181 constant SYS_PUTPMSG (line 191) | SYS_PUTPMSG = 182 constant SYS_AFS_SYSCALL (line 192) | SYS_AFS_SYSCALL = 183 constant SYS_TUXCALL (line 193) | SYS_TUXCALL = 184 constant SYS_SECURITY (line 194) | SYS_SECURITY = 185 constant SYS_GETTID (line 195) | SYS_GETTID = 186 constant SYS_READAHEAD (line 196) | SYS_READAHEAD = 187 constant SYS_SETXATTR (line 197) | SYS_SETXATTR = 188 constant SYS_LSETXATTR (line 198) | SYS_LSETXATTR = 189 constant SYS_FSETXATTR (line 199) | SYS_FSETXATTR = 190 constant SYS_GETXATTR (line 200) | SYS_GETXATTR = 191 constant SYS_LGETXATTR (line 201) | SYS_LGETXATTR = 192 constant SYS_FGETXATTR (line 202) | SYS_FGETXATTR = 193 constant SYS_LISTXATTR (line 203) | SYS_LISTXATTR = 194 constant SYS_LLISTXATTR (line 204) | SYS_LLISTXATTR = 195 constant SYS_FLISTXATTR (line 205) | SYS_FLISTXATTR = 196 constant SYS_REMOVEXATTR (line 206) | SYS_REMOVEXATTR = 197 constant SYS_LREMOVEXATTR (line 207) | SYS_LREMOVEXATTR = 198 constant SYS_FREMOVEXATTR (line 208) | SYS_FREMOVEXATTR = 199 constant SYS_TKILL (line 209) | SYS_TKILL = 200 constant SYS_TIME (line 210) | SYS_TIME = 201 constant SYS_FUTEX (line 211) | SYS_FUTEX = 202 constant SYS_SCHED_SETAFFINITY (line 212) | SYS_SCHED_SETAFFINITY = 203 constant SYS_SCHED_GETAFFINITY (line 213) | SYS_SCHED_GETAFFINITY = 204 constant SYS_SET_THREAD_AREA (line 214) | SYS_SET_THREAD_AREA = 205 constant SYS_IO_SETUP (line 215) | SYS_IO_SETUP = 206 constant SYS_IO_DESTROY (line 216) | SYS_IO_DESTROY = 207 constant SYS_IO_GETEVENTS (line 217) | SYS_IO_GETEVENTS = 208 constant SYS_IO_SUBMIT (line 218) | SYS_IO_SUBMIT = 209 constant SYS_IO_CANCEL (line 219) | SYS_IO_CANCEL = 210 constant SYS_GET_THREAD_AREA (line 220) | SYS_GET_THREAD_AREA = 211 constant SYS_LOOKUP_DCOOKIE (line 221) | SYS_LOOKUP_DCOOKIE = 212 constant SYS_EPOLL_CREATE (line 222) | SYS_EPOLL_CREATE = 213 constant SYS_EPOLL_CTL_OLD (line 223) | SYS_EPOLL_CTL_OLD = 214 constant SYS_EPOLL_WAIT_OLD (line 224) | SYS_EPOLL_WAIT_OLD = 215 constant SYS_REMAP_FILE_PAGES (line 225) | SYS_REMAP_FILE_PAGES = 216 constant SYS_GETDENTS64 (line 226) | SYS_GETDENTS64 = 217 constant SYS_SET_TID_ADDRESS (line 227) | SYS_SET_TID_ADDRESS = 218 constant SYS_RESTART_SYSCALL (line 228) | SYS_RESTART_SYSCALL = 219 constant SYS_SEMTIMEDOP (line 229) | SYS_SEMTIMEDOP = 220 constant SYS_FADVISE64 (line 230) | SYS_FADVISE64 = 221 constant SYS_TIMER_CREATE (line 231) | SYS_TIMER_CREATE = 222 constant SYS_TIMER_SETTIME (line 232) | SYS_TIMER_SETTIME = 223 constant SYS_TIMER_GETTIME (line 233) | SYS_TIMER_GETTIME = 224 constant SYS_TIMER_GETOVERRUN (line 234) | SYS_TIMER_GETOVERRUN = 225 constant SYS_TIMER_DELETE (line 235) | SYS_TIMER_DELETE = 226 constant SYS_CLOCK_SETTIME (line 236) | SYS_CLOCK_SETTIME = 227 constant SYS_CLOCK_GETTIME (line 237) | SYS_CLOCK_GETTIME = 228 constant SYS_CLOCK_GETRES (line 238) | SYS_CLOCK_GETRES = 229 constant SYS_CLOCK_NANOSLEEP (line 239) | SYS_CLOCK_NANOSLEEP = 230 constant SYS_EXIT_GROUP (line 240) | SYS_EXIT_GROUP = 231 constant SYS_EPOLL_WAIT (line 241) | SYS_EPOLL_WAIT = 232 constant SYS_EPOLL_CTL (line 242) | SYS_EPOLL_CTL = 233 constant SYS_TGKILL (line 243) | SYS_TGKILL = 234 constant SYS_UTIMES (line 244) | SYS_UTIMES = 235 constant SYS_VSERVER (line 245) | SYS_VSERVER = 236 constant SYS_MBIND (line 246) | SYS_MBIND = 237 constant SYS_SET_MEMPOLICY (line 247) | SYS_SET_MEMPOLICY = 238 constant SYS_GET_MEMPOLICY (line 248) | SYS_GET_MEMPOLICY = 239 constant SYS_MQ_OPEN (line 249) | SYS_MQ_OPEN = 240 constant SYS_MQ_UNLINK (line 250) | SYS_MQ_UNLINK = 241 constant SYS_MQ_TIMEDSEND (line 251) | SYS_MQ_TIMEDSEND = 242 constant SYS_MQ_TIMEDRECEIVE (line 252) | SYS_MQ_TIMEDRECEIVE = 243 constant SYS_MQ_NOTIFY (line 253) | SYS_MQ_NOTIFY = 244 constant SYS_MQ_GETSETATTR (line 254) | SYS_MQ_GETSETATTR = 245 constant SYS_KEXEC_LOAD (line 255) | SYS_KEXEC_LOAD = 246 constant SYS_WAITID (line 256) | SYS_WAITID = 247 constant SYS_ADD_KEY (line 257) | SYS_ADD_KEY = 248 constant SYS_REQUEST_KEY (line 258) | SYS_REQUEST_KEY = 249 constant SYS_KEYCTL (line 259) | SYS_KEYCTL = 250 constant SYS_IOPRIO_SET (line 260) | SYS_IOPRIO_SET = 251 constant SYS_IOPRIO_GET (line 261) | SYS_IOPRIO_GET = 252 constant SYS_INOTIFY_INIT (line 262) | SYS_INOTIFY_INIT = 253 constant SYS_INOTIFY_ADD_WATCH (line 263) | SYS_INOTIFY_ADD_WATCH = 254 constant SYS_INOTIFY_RM_WATCH (line 264) | SYS_INOTIFY_RM_WATCH = 255 constant SYS_MIGRATE_PAGES (line 265) | SYS_MIGRATE_PAGES = 256 constant SYS_OPENAT (line 266) | SYS_OPENAT = 257 constant SYS_MKDIRAT (line 267) | SYS_MKDIRAT = 258 constant SYS_MKNODAT (line 268) | SYS_MKNODAT = 259 constant SYS_FCHOWNAT (line 269) | SYS_FCHOWNAT = 260 constant SYS_FUTIMESAT (line 270) | SYS_FUTIMESAT = 261 constant SYS_NEWFSTATAT (line 271) | SYS_NEWFSTATAT = 262 constant SYS_UNLINKAT (line 272) | SYS_UNLINKAT = 263 constant SYS_RENAMEAT (line 273) | SYS_RENAMEAT = 264 constant SYS_LINKAT (line 274) | SYS_LINKAT = 265 constant SYS_SYMLINKAT (line 275) | SYS_SYMLINKAT = 266 constant SYS_READLINKAT (line 276) | SYS_READLINKAT = 267 constant SYS_FCHMODAT (line 277) | SYS_FCHMODAT = 268 constant SYS_FACCESSAT (line 278) | SYS_FACCESSAT = 269 constant SYS_PSELECT6 (line 279) | SYS_PSELECT6 = 270 constant SYS_PPOLL (line 280) | SYS_PPOLL = 271 constant SYS_UNSHARE (line 281) | SYS_UNSHARE = 272 constant SYS_SET_ROBUST_LIST (line 282) | SYS_SET_ROBUST_LIST = 273 constant SYS_GET_ROBUST_LIST (line 283) | SYS_GET_ROBUST_LIST = 274 constant SYS_SPLICE (line 284) | SYS_SPLICE = 275 constant SYS_TEE (line 285) | SYS_TEE = 276 constant SYS_SYNC_FILE_RANGE (line 286) | SYS_SYNC_FILE_RANGE = 277 constant SYS_VMSPLICE (line 287) | SYS_VMSPLICE = 278 constant SYS_MOVE_PAGES (line 288) | SYS_MOVE_PAGES = 279 constant SYS_UTIMENSAT (line 289) | SYS_UTIMENSAT = 280 constant SYS_EPOLL_PWAIT (line 290) | SYS_EPOLL_PWAIT = 281 constant SYS_SIGNALFD (line 291) | SYS_SIGNALFD = 282 constant SYS_TIMERFD_CREATE (line 292) | SYS_TIMERFD_CREATE = 283 constant SYS_EVENTFD (line 293) | SYS_EVENTFD = 284 constant SYS_FALLOCATE (line 294) | SYS_FALLOCATE = 285 constant SYS_TIMERFD_SETTIME (line 295) | SYS_TIMERFD_SETTIME = 286 constant SYS_TIMERFD_GETTIME (line 296) | SYS_TIMERFD_GETTIME = 287 constant SYS_ACCEPT4 (line 297) | SYS_ACCEPT4 = 288 constant SYS_SIGNALFD4 (line 298) | SYS_SIGNALFD4 = 289 constant SYS_EVENTFD2 (line 299) | SYS_EVENTFD2 = 290 constant SYS_EPOLL_CREATE1 (line 300) | SYS_EPOLL_CREATE1 = 291 constant SYS_DUP3 (line 301) | SYS_DUP3 = 292 constant SYS_PIPE2 (line 302) | SYS_PIPE2 = 293 constant SYS_INOTIFY_INIT1 (line 303) | SYS_INOTIFY_INIT1 = 294 constant SYS_PREADV (line 304) | SYS_PREADV = 295 constant SYS_PWRITEV (line 305) | SYS_PWRITEV = 296 constant SYS_RT_TGSIGQUEUEINFO (line 306) | SYS_RT_TGSIGQUEUEINFO = 297 constant SYS_PERF_EVENT_OPEN (line 307) | SYS_PERF_EVENT_OPEN = 298 constant SYS_RECVMMSG (line 308) | SYS_RECVMMSG = 299 constant SYS_FANOTIFY_INIT (line 309) | SYS_FANOTIFY_INIT = 300 constant SYS_FANOTIFY_MARK (line 310) | SYS_FANOTIFY_MARK = 301 constant SYS_PRLIMIT64 (line 311) | SYS_PRLIMIT64 = 302 constant SYS_NAME_TO_HANDLE_AT (line 312) | SYS_NAME_TO_HANDLE_AT = 303 constant SYS_OPEN_BY_HANDLE_AT (line 313) | SYS_OPEN_BY_HANDLE_AT = 304 constant SYS_CLOCK_ADJTIME (line 314) | SYS_CLOCK_ADJTIME = 305 constant SYS_SYNCFS (line 315) | SYS_SYNCFS = 306 constant SYS_SENDMMSG (line 316) | SYS_SENDMMSG = 307 constant SYS_SETNS (line 317) | SYS_SETNS = 308 constant SYS_GETCPU (line 318) | SYS_GETCPU = 309 constant SYS_PROCESS_VM_READV (line 319) | SYS_PROCESS_VM_READV = 310 constant SYS_PROCESS_VM_WRITEV (line 320) | SYS_PROCESS_VM_WRITEV = 311 constant SYS_KCMP (line 321) | SYS_KCMP = 312 constant SYS_FINIT_MODULE (line 322) | SYS_FINIT_MODULE = 313 constant SYS_SCHED_SETATTR (line 323) | SYS_SCHED_SETATTR = 314 constant SYS_SCHED_GETATTR (line 324) | SYS_SCHED_GETATTR = 315 constant SYS_RENAMEAT2 (line 325) | SYS_RENAMEAT2 = 316 constant SYS_SECCOMP (line 326) | SYS_SECCOMP = 317 constant SYS_GETRANDOM (line 327) | SYS_GETRANDOM = 318 constant SYS_MEMFD_CREATE (line 328) | SYS_MEMFD_CREATE = 319 constant SYS_KEXEC_FILE_LOAD (line 329) | SYS_KEXEC_FILE_LOAD = 320 constant SYS_BPF (line 330) | SYS_BPF = 321 constant SYS_EXECVEAT (line 331) | SYS_EXECVEAT = 322 constant SYS_USERFAULTFD (line 332) | SYS_USERFAULTFD = 323 constant SYS_MEMBARRIER (line 333) | SYS_MEMBARRIER = 324 constant SYS_MLOCK2 (line 334) | SYS_MLOCK2 = 325 constant SYS_COPY_FILE_RANGE (line 335) | SYS_COPY_FILE_RANGE = 326 constant SYS_PREADV2 (line 336) | SYS_PREADV2 = 327 constant SYS_PWRITEV2 (line 337) | SYS_PWRITEV2 = 328 constant SYS_PKEY_MPROTECT (line 338) | SYS_PKEY_MPROTECT = 329 constant SYS_PKEY_ALLOC (line 339) | SYS_PKEY_ALLOC = 330 constant SYS_PKEY_FREE (line 340) | SYS_PKEY_FREE = 331 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_CREAT (line 16) | SYS_CREAT = 8 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_EXECVE (line 19) | SYS_EXECVE = 11 constant SYS_CHDIR (line 20) | SYS_CHDIR = 12 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 23) | SYS_LCHOWN = 16 constant SYS_LSEEK (line 24) | SYS_LSEEK = 19 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_SETUID (line 27) | SYS_SETUID = 23 constant SYS_GETUID (line 28) | SYS_GETUID = 24 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_PAUSE (line 30) | SYS_PAUSE = 29 constant SYS_ACCESS (line 31) | SYS_ACCESS = 33 constant SYS_NICE (line 32) | SYS_NICE = 34 constant SYS_SYNC (line 33) | SYS_SYNC = 36 constant SYS_KILL (line 34) | SYS_KILL = 37 constant SYS_RENAME (line 35) | SYS_RENAME = 38 constant SYS_MKDIR (line 36) | SYS_MKDIR = 39 constant SYS_RMDIR (line 37) | SYS_RMDIR = 40 constant SYS_DUP (line 38) | SYS_DUP = 41 constant SYS_PIPE (line 39) | SYS_PIPE = 42 constant SYS_TIMES (line 40) | SYS_TIMES = 43 constant SYS_BRK (line 41) | SYS_BRK = 45 constant SYS_SETGID (line 42) | SYS_SETGID = 46 constant SYS_GETGID (line 43) | SYS_GETGID = 47 constant SYS_GETEUID (line 44) | SYS_GETEUID = 49 constant SYS_GETEGID (line 45) | SYS_GETEGID = 50 constant SYS_ACCT (line 46) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 47) | SYS_UMOUNT2 = 52 constant SYS_IOCTL (line 48) | SYS_IOCTL = 54 constant SYS_FCNTL (line 49) | SYS_FCNTL = 55 constant SYS_SETPGID (line 50) | SYS_SETPGID = 57 constant SYS_UMASK (line 51) | SYS_UMASK = 60 constant SYS_CHROOT (line 52) | SYS_CHROOT = 61 constant SYS_USTAT (line 53) | SYS_USTAT = 62 constant SYS_DUP2 (line 54) | SYS_DUP2 = 63 constant SYS_GETPPID (line 55) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 56) | SYS_GETPGRP = 65 constant SYS_SETSID (line 57) | SYS_SETSID = 66 constant SYS_SIGACTION (line 58) | SYS_SIGACTION = 67 constant SYS_SETREUID (line 59) | SYS_SETREUID = 70 constant SYS_SETREGID (line 60) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 61) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 62) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 63) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 64) | SYS_SETRLIMIT = 75 constant SYS_GETRUSAGE (line 65) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 66) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 67) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 68) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 69) | SYS_SETGROUPS = 81 constant SYS_SYMLINK (line 70) | SYS_SYMLINK = 83 constant SYS_READLINK (line 71) | SYS_READLINK = 85 constant SYS_USELIB (line 72) | SYS_USELIB = 86 constant SYS_SWAPON (line 73) | SYS_SWAPON = 87 constant SYS_REBOOT (line 74) | SYS_REBOOT = 88 constant SYS_MUNMAP (line 75) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 76) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 77) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 78) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 79) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 80) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 81) | SYS_SETPRIORITY = 97 constant SYS_STATFS (line 82) | SYS_STATFS = 99 constant SYS_FSTATFS (line 83) | SYS_FSTATFS = 100 constant SYS_SYSLOG (line 84) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 85) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 86) | SYS_GETITIMER = 105 constant SYS_STAT (line 87) | SYS_STAT = 106 constant SYS_LSTAT (line 88) | SYS_LSTAT = 107 constant SYS_FSTAT (line 89) | SYS_FSTAT = 108 constant SYS_VHANGUP (line 90) | SYS_VHANGUP = 111 constant SYS_WAIT4 (line 91) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 92) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 93) | SYS_SYSINFO = 116 constant SYS_FSYNC (line 94) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 95) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 96) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 97) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 98) | SYS_UNAME = 122 constant SYS_ADJTIMEX (line 99) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 100) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 101) | SYS_SIGPROCMASK = 126 constant SYS_INIT_MODULE (line 102) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 103) | SYS_DELETE_MODULE = 129 constant SYS_QUOTACTL (line 104) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 105) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 106) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 107) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 108) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 109) | SYS_PERSONALITY = 136 constant SYS_SETFSUID (line 110) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 111) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 112) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 113) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 114) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 115) | SYS_FLOCK = 143 constant SYS_MSYNC (line 116) | SYS_MSYNC = 144 constant SYS_READV (line 117) | SYS_READV = 145 constant SYS_WRITEV (line 118) | SYS_WRITEV = 146 constant SYS_GETSID (line 119) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 120) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 121) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 122) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 123) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 124) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 125) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 126) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 127) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 128) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 129) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 130) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 131) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 132) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 133) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 134) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 135) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 136) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 137) | SYS_GETRESUID = 165 constant SYS_POLL (line 138) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 139) | SYS_NFSSERVCTL = 169 constant SYS_SETRESGID (line 140) | SYS_SETRESGID = 170 constant SYS_GETRESGID (line 141) | SYS_GETRESGID = 171 constant SYS_PRCTL (line 142) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 143) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 144) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 145) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 146) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 147) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 148) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 149) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 150) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 151) | SYS_PWRITE64 = 181 constant SYS_CHOWN (line 152) | SYS_CHOWN = 182 constant SYS_GETCWD (line 153) | SYS_GETCWD = 183 constant SYS_CAPGET (line 154) | SYS_CAPGET = 184 constant SYS_CAPSET (line 155) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 156) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 157) | SYS_SENDFILE = 187 constant SYS_VFORK (line 158) | SYS_VFORK = 190 constant SYS_UGETRLIMIT (line 159) | SYS_UGETRLIMIT = 191 constant SYS_MMAP2 (line 160) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 161) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 162) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 163) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 164) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 165) | SYS_FSTAT64 = 197 constant SYS_LCHOWN32 (line 166) | SYS_LCHOWN32 = 198 constant SYS_GETUID32 (line 167) | SYS_GETUID32 = 199 constant SYS_GETGID32 (line 168) | SYS_GETGID32 = 200 constant SYS_GETEUID32 (line 169) | SYS_GETEUID32 = 201 constant SYS_GETEGID32 (line 170) | SYS_GETEGID32 = 202 constant SYS_SETREUID32 (line 171) | SYS_SETREUID32 = 203 constant SYS_SETREGID32 (line 172) | SYS_SETREGID32 = 204 constant SYS_GETGROUPS32 (line 173) | SYS_GETGROUPS32 = 205 constant SYS_SETGROUPS32 (line 174) | SYS_SETGROUPS32 = 206 constant SYS_FCHOWN32 (line 175) | SYS_FCHOWN32 = 207 constant SYS_SETRESUID32 (line 176) | SYS_SETRESUID32 = 208 constant SYS_GETRESUID32 (line 177) | SYS_GETRESUID32 = 209 constant SYS_SETRESGID32 (line 178) | SYS_SETRESGID32 = 210 constant SYS_GETRESGID32 (line 179) | SYS_GETRESGID32 = 211 constant SYS_CHOWN32 (line 180) | SYS_CHOWN32 = 212 constant SYS_SETUID32 (line 181) | SYS_SETUID32 = 213 constant SYS_SETGID32 (line 182) | SYS_SETGID32 = 214 constant SYS_SETFSUID32 (line 183) | SYS_SETFSUID32 = 215 constant SYS_SETFSGID32 (line 184) | SYS_SETFSGID32 = 216 constant SYS_GETDENTS64 (line 185) | SYS_GETDENTS64 = 217 constant SYS_PIVOT_ROOT (line 186) | SYS_PIVOT_ROOT = 218 constant SYS_MINCORE (line 187) | SYS_MINCORE = 219 constant SYS_MADVISE (line 188) | SYS_MADVISE = 220 constant SYS_FCNTL64 (line 189) | SYS_FCNTL64 = 221 constant SYS_GETTID (line 190) | SYS_GETTID = 224 constant SYS_READAHEAD (line 191) | SYS_READAHEAD = 225 constant SYS_SETXATTR (line 192) | SYS_SETXATTR = 226 constant SYS_LSETXATTR (line 193) | SYS_LSETXATTR = 227 constant SYS_FSETXATTR (line 194) | SYS_FSETXATTR = 228 constant SYS_GETXATTR (line 195) | SYS_GETXATTR = 229 constant SYS_LGETXATTR (line 196) | SYS_LGETXATTR = 230 constant SYS_FGETXATTR (line 197) | SYS_FGETXATTR = 231 constant SYS_LISTXATTR (line 198) | SYS_LISTXATTR = 232 constant SYS_LLISTXATTR (line 199) | SYS_LLISTXATTR = 233 constant SYS_FLISTXATTR (line 200) | SYS_FLISTXATTR = 234 constant SYS_REMOVEXATTR (line 201) | SYS_REMOVEXATTR = 235 constant SYS_LREMOVEXATTR (line 202) | SYS_LREMOVEXATTR = 236 constant SYS_FREMOVEXATTR (line 203) | SYS_FREMOVEXATTR = 237 constant SYS_TKILL (line 204) | SYS_TKILL = 238 constant SYS_SENDFILE64 (line 205) | SYS_SENDFILE64 = 239 constant SYS_FUTEX (line 206) | SYS_FUTEX = 240 constant SYS_SCHED_SETAFFINITY (line 207) | SYS_SCHED_SETAFFINITY = 241 constant SYS_SCHED_GETAFFINITY (line 208) | SYS_SCHED_GETAFFINITY = 242 constant SYS_IO_SETUP (line 209) | SYS_IO_SETUP = 243 constant SYS_IO_DESTROY (line 210) | SYS_IO_DESTROY = 244 constant SYS_IO_GETEVENTS (line 211) | SYS_IO_GETEVENTS = 245 constant SYS_IO_SUBMIT (line 212) | SYS_IO_SUBMIT = 246 constant SYS_IO_CANCEL (line 213) | SYS_IO_CANCEL = 247 constant SYS_EXIT_GROUP (line 214) | SYS_EXIT_GROUP = 248 constant SYS_LOOKUP_DCOOKIE (line 215) | SYS_LOOKUP_DCOOKIE = 249 constant SYS_EPOLL_CREATE (line 216) | SYS_EPOLL_CREATE = 250 constant SYS_EPOLL_CTL (line 217) | SYS_EPOLL_CTL = 251 constant SYS_EPOLL_WAIT (line 218) | SYS_EPOLL_WAIT = 252 constant SYS_REMAP_FILE_PAGES (line 219) | SYS_REMAP_FILE_PAGES = 253 constant SYS_SET_TID_ADDRESS (line 220) | SYS_SET_TID_ADDRESS = 256 constant SYS_TIMER_CREATE (line 221) | SYS_TIMER_CREATE = 257 constant SYS_TIMER_SETTIME (line 222) | SYS_TIMER_SETTIME = 258 constant SYS_TIMER_GETTIME (line 223) | SYS_TIMER_GETTIME = 259 constant SYS_TIMER_GETOVERRUN (line 224) | SYS_TIMER_GETOVERRUN = 260 constant SYS_TIMER_DELETE (line 225) | SYS_TIMER_DELETE = 261 constant SYS_CLOCK_SETTIME (line 226) | SYS_CLOCK_SETTIME = 262 constant SYS_CLOCK_GETTIME (line 227) | SYS_CLOCK_GETTIME = 263 constant SYS_CLOCK_GETRES (line 228) | SYS_CLOCK_GETRES = 264 constant SYS_CLOCK_NANOSLEEP (line 229) | SYS_CLOCK_NANOSLEEP = 265 constant SYS_STATFS64 (line 230) | SYS_STATFS64 = 266 constant SYS_FSTATFS64 (line 231) | SYS_FSTATFS64 = 267 constant SYS_TGKILL (line 232) | SYS_TGKILL = 268 constant SYS_UTIMES (line 233) | SYS_UTIMES = 269 constant SYS_ARM_FADVISE64_64 (line 234) | SYS_ARM_FADVISE64_64 = 270 constant SYS_PCICONFIG_IOBASE (line 235) | SYS_PCICONFIG_IOBASE = 271 constant SYS_PCICONFIG_READ (line 236) | SYS_PCICONFIG_READ = 272 constant SYS_PCICONFIG_WRITE (line 237) | SYS_PCICONFIG_WRITE = 273 constant SYS_MQ_OPEN (line 238) | SYS_MQ_OPEN = 274 constant SYS_MQ_UNLINK (line 239) | SYS_MQ_UNLINK = 275 constant SYS_MQ_TIMEDSEND (line 240) | SYS_MQ_TIMEDSEND = 276 constant SYS_MQ_TIMEDRECEIVE (line 241) | SYS_MQ_TIMEDRECEIVE = 277 constant SYS_MQ_NOTIFY (line 242) | SYS_MQ_NOTIFY = 278 constant SYS_MQ_GETSETATTR (line 243) | SYS_MQ_GETSETATTR = 279 constant SYS_WAITID (line 244) | SYS_WAITID = 280 constant SYS_SOCKET (line 245) | SYS_SOCKET = 281 constant SYS_BIND (line 246) | SYS_BIND = 282 constant SYS_CONNECT (line 247) | SYS_CONNECT = 283 constant SYS_LISTEN (line 248) | SYS_LISTEN = 284 constant SYS_ACCEPT (line 249) | SYS_ACCEPT = 285 constant SYS_GETSOCKNAME (line 250) | SYS_GETSOCKNAME = 286 constant SYS_GETPEERNAME (line 251) | SYS_GETPEERNAME = 287 constant SYS_SOCKETPAIR (line 252) | SYS_SOCKETPAIR = 288 constant SYS_SEND (line 253) | SYS_SEND = 289 constant SYS_SENDTO (line 254) | SYS_SENDTO = 290 constant SYS_RECV (line 255) | SYS_RECV = 291 constant SYS_RECVFROM (line 256) | SYS_RECVFROM = 292 constant SYS_SHUTDOWN (line 257) | SYS_SHUTDOWN = 293 constant SYS_SETSOCKOPT (line 258) | SYS_SETSOCKOPT = 294 constant SYS_GETSOCKOPT (line 259) | SYS_GETSOCKOPT = 295 constant SYS_SENDMSG (line 260) | SYS_SENDMSG = 296 constant SYS_RECVMSG (line 261) | SYS_RECVMSG = 297 constant SYS_SEMOP (line 262) | SYS_SEMOP = 298 constant SYS_SEMGET (line 263) | SYS_SEMGET = 299 constant SYS_SEMCTL (line 264) | SYS_SEMCTL = 300 constant SYS_MSGSND (line 265) | SYS_MSGSND = 301 constant SYS_MSGRCV (line 266) | SYS_MSGRCV = 302 constant SYS_MSGGET (line 267) | SYS_MSGGET = 303 constant SYS_MSGCTL (line 268) | SYS_MSGCTL = 304 constant SYS_SHMAT (line 269) | SYS_SHMAT = 305 constant SYS_SHMDT (line 270) | SYS_SHMDT = 306 constant SYS_SHMGET (line 271) | SYS_SHMGET = 307 constant SYS_SHMCTL (line 272) | SYS_SHMCTL = 308 constant SYS_ADD_KEY (line 273) | SYS_ADD_KEY = 309 constant SYS_REQUEST_KEY (line 274) | SYS_REQUEST_KEY = 310 constant SYS_KEYCTL (line 275) | SYS_KEYCTL = 311 constant SYS_SEMTIMEDOP (line 276) | SYS_SEMTIMEDOP = 312 constant SYS_VSERVER (line 277) | SYS_VSERVER = 313 constant SYS_IOPRIO_SET (line 278) | SYS_IOPRIO_SET = 314 constant SYS_IOPRIO_GET (line 279) | SYS_IOPRIO_GET = 315 constant SYS_INOTIFY_INIT (line 280) | SYS_INOTIFY_INIT = 316 constant SYS_INOTIFY_ADD_WATCH (line 281) | SYS_INOTIFY_ADD_WATCH = 317 constant SYS_INOTIFY_RM_WATCH (line 282) | SYS_INOTIFY_RM_WATCH = 318 constant SYS_MBIND (line 283) | SYS_MBIND = 319 constant SYS_GET_MEMPOLICY (line 284) | SYS_GET_MEMPOLICY = 320 constant SYS_SET_MEMPOLICY (line 285) | SYS_SET_MEMPOLICY = 321 constant SYS_OPENAT (line 286) | SYS_OPENAT = 322 constant SYS_MKDIRAT (line 287) | SYS_MKDIRAT = 323 constant SYS_MKNODAT (line 288) | SYS_MKNODAT = 324 constant SYS_FCHOWNAT (line 289) | SYS_FCHOWNAT = 325 constant SYS_FUTIMESAT (line 290) | SYS_FUTIMESAT = 326 constant SYS_FSTATAT64 (line 291) | SYS_FSTATAT64 = 327 constant SYS_UNLINKAT (line 292) | SYS_UNLINKAT = 328 constant SYS_RENAMEAT (line 293) | SYS_RENAMEAT = 329 constant SYS_LINKAT (line 294) | SYS_LINKAT = 330 constant SYS_SYMLINKAT (line 295) | SYS_SYMLINKAT = 331 constant SYS_READLINKAT (line 296) | SYS_READLINKAT = 332 constant SYS_FCHMODAT (line 297) | SYS_FCHMODAT = 333 constant SYS_FACCESSAT (line 298) | SYS_FACCESSAT = 334 constant SYS_PSELECT6 (line 299) | SYS_PSELECT6 = 335 constant SYS_PPOLL (line 300) | SYS_PPOLL = 336 constant SYS_UNSHARE (line 301) | SYS_UNSHARE = 337 constant SYS_SET_ROBUST_LIST (line 302) | SYS_SET_ROBUST_LIST = 338 constant SYS_GET_ROBUST_LIST (line 303) | SYS_GET_ROBUST_LIST = 339 constant SYS_SPLICE (line 304) | SYS_SPLICE = 340 constant SYS_ARM_SYNC_FILE_RANGE (line 305) | SYS_ARM_SYNC_FILE_RANGE = 341 constant SYS_TEE (line 306) | SYS_TEE = 342 constant SYS_VMSPLICE (line 307) | SYS_VMSPLICE = 343 constant SYS_MOVE_PAGES (line 308) | SYS_MOVE_PAGES = 344 constant SYS_GETCPU (line 309) | SYS_GETCPU = 345 constant SYS_EPOLL_PWAIT (line 310) | SYS_EPOLL_PWAIT = 346 constant SYS_KEXEC_LOAD (line 311) | SYS_KEXEC_LOAD = 347 constant SYS_UTIMENSAT (line 312) | SYS_UTIMENSAT = 348 constant SYS_SIGNALFD (line 313) | SYS_SIGNALFD = 349 constant SYS_TIMERFD_CREATE (line 314) | SYS_TIMERFD_CREATE = 350 constant SYS_EVENTFD (line 315) | SYS_EVENTFD = 351 constant SYS_FALLOCATE (line 316) | SYS_FALLOCATE = 352 constant SYS_TIMERFD_SETTIME (line 317) | SYS_TIMERFD_SETTIME = 353 constant SYS_TIMERFD_GETTIME (line 318) | SYS_TIMERFD_GETTIME = 354 constant SYS_SIGNALFD4 (line 319) | SYS_SIGNALFD4 = 355 constant SYS_EVENTFD2 (line 320) | SYS_EVENTFD2 = 356 constant SYS_EPOLL_CREATE1 (line 321) | SYS_EPOLL_CREATE1 = 357 constant SYS_DUP3 (line 322) | SYS_DUP3 = 358 constant SYS_PIPE2 (line 323) | SYS_PIPE2 = 359 constant SYS_INOTIFY_INIT1 (line 324) | SYS_INOTIFY_INIT1 = 360 constant SYS_PREADV (line 325) | SYS_PREADV = 361 constant SYS_PWRITEV (line 326) | SYS_PWRITEV = 362 constant SYS_RT_TGSIGQUEUEINFO (line 327) | SYS_RT_TGSIGQUEUEINFO = 363 constant SYS_PERF_EVENT_OPEN (line 328) | SYS_PERF_EVENT_OPEN = 364 constant SYS_RECVMMSG (line 329) | SYS_RECVMMSG = 365 constant SYS_ACCEPT4 (line 330) | SYS_ACCEPT4 = 366 constant SYS_FANOTIFY_INIT (line 331) | SYS_FANOTIFY_INIT = 367 constant SYS_FANOTIFY_MARK (line 332) | SYS_FANOTIFY_MARK = 368 constant SYS_PRLIMIT64 (line 333) | SYS_PRLIMIT64 = 369 constant SYS_NAME_TO_HANDLE_AT (line 334) | SYS_NAME_TO_HANDLE_AT = 370 constant SYS_OPEN_BY_HANDLE_AT (line 335) | SYS_OPEN_BY_HANDLE_AT = 371 constant SYS_CLOCK_ADJTIME (line 336) | SYS_CLOCK_ADJTIME = 372 constant SYS_SYNCFS (line 337) | SYS_SYNCFS = 373 constant SYS_SENDMMSG (line 338) | SYS_SENDMMSG = 374 constant SYS_SETNS (line 339) | SYS_SETNS = 375 constant SYS_PROCESS_VM_READV (line 340) | SYS_PROCESS_VM_READV = 376 constant SYS_PROCESS_VM_WRITEV (line 341) | SYS_PROCESS_VM_WRITEV = 377 constant SYS_KCMP (line 342) | SYS_KCMP = 378 constant SYS_FINIT_MODULE (line 343) | SYS_FINIT_MODULE = 379 constant SYS_SCHED_SETATTR (line 344) | SYS_SCHED_SETATTR = 380 constant SYS_SCHED_GETATTR (line 345) | SYS_SCHED_GETATTR = 381 constant SYS_RENAMEAT2 (line 346) | SYS_RENAMEAT2 = 382 constant SYS_SECCOMP (line 347) | SYS_SECCOMP = 383 constant SYS_GETRANDOM (line 348) | SYS_GETRANDOM = 384 constant SYS_MEMFD_CREATE (line 349) | SYS_MEMFD_CREATE = 385 constant SYS_BPF (line 350) | SYS_BPF = 386 constant SYS_EXECVEAT (line 351) | SYS_EXECVEAT = 387 constant SYS_USERFAULTFD (line 352) | SYS_USERFAULTFD = 388 constant SYS_MEMBARRIER (line 353) | SYS_MEMBARRIER = 389 constant SYS_MLOCK2 (line 354) | SYS_MLOCK2 = 390 constant SYS_COPY_FILE_RANGE (line 355) | SYS_COPY_FILE_RANGE = 391 constant SYS_PREADV2 (line 356) | SYS_PREADV2 = 392 constant SYS_PWRITEV2 (line 357) | SYS_PWRITEV2 = 393 constant SYS_PKEY_MPROTECT (line 358) | SYS_PKEY_MPROTECT = 394 constant SYS_PKEY_ALLOC (line 359) | SYS_PKEY_ALLOC = 395 constant SYS_PKEY_FREE (line 360) | SYS_PKEY_FREE = 396 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go constant SYS_IO_SETUP (line 9) | SYS_IO_SETUP = 0 constant SYS_IO_DESTROY (line 10) | SYS_IO_DESTROY = 1 constant SYS_IO_SUBMIT (line 11) | SYS_IO_SUBMIT = 2 constant SYS_IO_CANCEL (line 12) | SYS_IO_CANCEL = 3 constant SYS_IO_GETEVENTS (line 13) | SYS_IO_GETEVENTS = 4 constant SYS_SETXATTR (line 14) | SYS_SETXATTR = 5 constant SYS_LSETXATTR (line 15) | SYS_LSETXATTR = 6 constant SYS_FSETXATTR (line 16) | SYS_FSETXATTR = 7 constant SYS_GETXATTR (line 17) | SYS_GETXATTR = 8 constant SYS_LGETXATTR (line 18) | SYS_LGETXATTR = 9 constant SYS_FGETXATTR (line 19) | SYS_FGETXATTR = 10 constant SYS_LISTXATTR (line 20) | SYS_LISTXATTR = 11 constant SYS_LLISTXATTR (line 21) | SYS_LLISTXATTR = 12 constant SYS_FLISTXATTR (line 22) | SYS_FLISTXATTR = 13 constant SYS_REMOVEXATTR (line 23) | SYS_REMOVEXATTR = 14 constant SYS_LREMOVEXATTR (line 24) | SYS_LREMOVEXATTR = 15 constant SYS_FREMOVEXATTR (line 25) | SYS_FREMOVEXATTR = 16 constant SYS_GETCWD (line 26) | SYS_GETCWD = 17 constant SYS_LOOKUP_DCOOKIE (line 27) | SYS_LOOKUP_DCOOKIE = 18 constant SYS_EVENTFD2 (line 28) | SYS_EVENTFD2 = 19 constant SYS_EPOLL_CREATE1 (line 29) | SYS_EPOLL_CREATE1 = 20 constant SYS_EPOLL_CTL (line 30) | SYS_EPOLL_CTL = 21 constant SYS_EPOLL_PWAIT (line 31) | SYS_EPOLL_PWAIT = 22 constant SYS_DUP (line 32) | SYS_DUP = 23 constant SYS_DUP3 (line 33) | SYS_DUP3 = 24 constant SYS_FCNTL (line 34) | SYS_FCNTL = 25 constant SYS_INOTIFY_INIT1 (line 35) | SYS_INOTIFY_INIT1 = 26 constant SYS_INOTIFY_ADD_WATCH (line 36) | SYS_INOTIFY_ADD_WATCH = 27 constant SYS_INOTIFY_RM_WATCH (line 37) | SYS_INOTIFY_RM_WATCH = 28 constant SYS_IOCTL (line 38) | SYS_IOCTL = 29 constant SYS_IOPRIO_SET (line 39) | SYS_IOPRIO_SET = 30 constant SYS_IOPRIO_GET (line 40) | SYS_IOPRIO_GET = 31 constant SYS_FLOCK (line 41) | SYS_FLOCK = 32 constant SYS_MKNODAT (line 42) | SYS_MKNODAT = 33 constant SYS_MKDIRAT (line 43) | SYS_MKDIRAT = 34 constant SYS_UNLINKAT (line 44) | SYS_UNLINKAT = 35 constant SYS_SYMLINKAT (line 45) | SYS_SYMLINKAT = 36 constant SYS_LINKAT (line 46) | SYS_LINKAT = 37 constant SYS_RENAMEAT (line 47) | SYS_RENAMEAT = 38 constant SYS_UMOUNT2 (line 48) | SYS_UMOUNT2 = 39 constant SYS_MOUNT (line 49) | SYS_MOUNT = 40 constant SYS_PIVOT_ROOT (line 50) | SYS_PIVOT_ROOT = 41 constant SYS_NFSSERVCTL (line 51) | SYS_NFSSERVCTL = 42 constant SYS_STATFS (line 52) | SYS_STATFS = 43 constant SYS_FSTATFS (line 53) | SYS_FSTATFS = 44 constant SYS_TRUNCATE (line 54) | SYS_TRUNCATE = 45 constant SYS_FTRUNCATE (line 55) | SYS_FTRUNCATE = 46 constant SYS_FALLOCATE (line 56) | SYS_FALLOCATE = 47 constant SYS_FACCESSAT (line 57) | SYS_FACCESSAT = 48 constant SYS_CHDIR (line 58) | SYS_CHDIR = 49 constant SYS_FCHDIR (line 59) | SYS_FCHDIR = 50 constant SYS_CHROOT (line 60) | SYS_CHROOT = 51 constant SYS_FCHMOD (line 61) | SYS_FCHMOD = 52 constant SYS_FCHMODAT (line 62) | SYS_FCHMODAT = 53 constant SYS_FCHOWNAT (line 63) | SYS_FCHOWNAT = 54 constant SYS_FCHOWN (line 64) | SYS_FCHOWN = 55 constant SYS_OPENAT (line 65) | SYS_OPENAT = 56 constant SYS_CLOSE (line 66) | SYS_CLOSE = 57 constant SYS_VHANGUP (line 67) | SYS_VHANGUP = 58 constant SYS_PIPE2 (line 68) | SYS_PIPE2 = 59 constant SYS_QUOTACTL (line 69) | SYS_QUOTACTL = 60 constant SYS_GETDENTS64 (line 70) | SYS_GETDENTS64 = 61 constant SYS_LSEEK (line 71) | SYS_LSEEK = 62 constant SYS_READ (line 72) | SYS_READ = 63 constant SYS_WRITE (line 73) | SYS_WRITE = 64 constant SYS_READV (line 74) | SYS_READV = 65 constant SYS_WRITEV (line 75) | SYS_WRITEV = 66 constant SYS_PREAD64 (line 76) | SYS_PREAD64 = 67 constant SYS_PWRITE64 (line 77) | SYS_PWRITE64 = 68 constant SYS_PREADV (line 78) | SYS_PREADV = 69 constant SYS_PWRITEV (line 79) | SYS_PWRITEV = 70 constant SYS_SENDFILE (line 80) | SYS_SENDFILE = 71 constant SYS_PSELECT6 (line 81) | SYS_PSELECT6 = 72 constant SYS_PPOLL (line 82) | SYS_PPOLL = 73 constant SYS_SIGNALFD4 (line 83) | SYS_SIGNALFD4 = 74 constant SYS_VMSPLICE (line 84) | SYS_VMSPLICE = 75 constant SYS_SPLICE (line 85) | SYS_SPLICE = 76 constant SYS_TEE (line 86) | SYS_TEE = 77 constant SYS_READLINKAT (line 87) | SYS_READLINKAT = 78 constant SYS_FSTATAT (line 88) | SYS_FSTATAT = 79 constant SYS_FSTAT (line 89) | SYS_FSTAT = 80 constant SYS_SYNC (line 90) | SYS_SYNC = 81 constant SYS_FSYNC (line 91) | SYS_FSYNC = 82 constant SYS_FDATASYNC (line 92) | SYS_FDATASYNC = 83 constant SYS_SYNC_FILE_RANGE (line 93) | SYS_SYNC_FILE_RANGE = 84 constant SYS_TIMERFD_CREATE (line 94) | SYS_TIMERFD_CREATE = 85 constant SYS_TIMERFD_SETTIME (line 95) | SYS_TIMERFD_SETTIME = 86 constant SYS_TIMERFD_GETTIME (line 96) | SYS_TIMERFD_GETTIME = 87 constant SYS_UTIMENSAT (line 97) | SYS_UTIMENSAT = 88 constant SYS_ACCT (line 98) | SYS_ACCT = 89 constant SYS_CAPGET (line 99) | SYS_CAPGET = 90 constant SYS_CAPSET (line 100) | SYS_CAPSET = 91 constant SYS_PERSONALITY (line 101) | SYS_PERSONALITY = 92 constant SYS_EXIT (line 102) | SYS_EXIT = 93 constant SYS_EXIT_GROUP (line 103) | SYS_EXIT_GROUP = 94 constant SYS_WAITID (line 104) | SYS_WAITID = 95 constant SYS_SET_TID_ADDRESS (line 105) | SYS_SET_TID_ADDRESS = 96 constant SYS_UNSHARE (line 106) | SYS_UNSHARE = 97 constant SYS_FUTEX (line 107) | SYS_FUTEX = 98 constant SYS_SET_ROBUST_LIST (line 108) | SYS_SET_ROBUST_LIST = 99 constant SYS_GET_ROBUST_LIST (line 109) | SYS_GET_ROBUST_LIST = 100 constant SYS_NANOSLEEP (line 110) | SYS_NANOSLEEP = 101 constant SYS_GETITIMER (line 111) | SYS_GETITIMER = 102 constant SYS_SETITIMER (line 112) | SYS_SETITIMER = 103 constant SYS_KEXEC_LOAD (line 113) | SYS_KEXEC_LOAD = 104 constant SYS_INIT_MODULE (line 114) | SYS_INIT_MODULE = 105 constant SYS_DELETE_MODULE (line 115) | SYS_DELETE_MODULE = 106 constant SYS_TIMER_CREATE (line 116) | SYS_TIMER_CREATE = 107 constant SYS_TIMER_GETTIME (line 117) | SYS_TIMER_GETTIME = 108 constant SYS_TIMER_GETOVERRUN (line 118) | SYS_TIMER_GETOVERRUN = 109 constant SYS_TIMER_SETTIME (line 119) | SYS_TIMER_SETTIME = 110 constant SYS_TIMER_DELETE (line 120) | SYS_TIMER_DELETE = 111 constant SYS_CLOCK_SETTIME (line 121) | SYS_CLOCK_SETTIME = 112 constant SYS_CLOCK_GETTIME (line 122) | SYS_CLOCK_GETTIME = 113 constant SYS_CLOCK_GETRES (line 123) | SYS_CLOCK_GETRES = 114 constant SYS_CLOCK_NANOSLEEP (line 124) | SYS_CLOCK_NANOSLEEP = 115 constant SYS_SYSLOG (line 125) | SYS_SYSLOG = 116 constant SYS_PTRACE (line 126) | SYS_PTRACE = 117 constant SYS_SCHED_SETPARAM (line 127) | SYS_SCHED_SETPARAM = 118 constant SYS_SCHED_SETSCHEDULER (line 128) | SYS_SCHED_SETSCHEDULER = 119 constant SYS_SCHED_GETSCHEDULER (line 129) | SYS_SCHED_GETSCHEDULER = 120 constant SYS_SCHED_GETPARAM (line 130) | SYS_SCHED_GETPARAM = 121 constant SYS_SCHED_SETAFFINITY (line 131) | SYS_SCHED_SETAFFINITY = 122 constant SYS_SCHED_GETAFFINITY (line 132) | SYS_SCHED_GETAFFINITY = 123 constant SYS_SCHED_YIELD (line 133) | SYS_SCHED_YIELD = 124 constant SYS_SCHED_GET_PRIORITY_MAX (line 134) | SYS_SCHED_GET_PRIORITY_MAX = 125 constant SYS_SCHED_GET_PRIORITY_MIN (line 135) | SYS_SCHED_GET_PRIORITY_MIN = 126 constant SYS_SCHED_RR_GET_INTERVAL (line 136) | SYS_SCHED_RR_GET_INTERVAL = 127 constant SYS_RESTART_SYSCALL (line 137) | SYS_RESTART_SYSCALL = 128 constant SYS_KILL (line 138) | SYS_KILL = 129 constant SYS_TKILL (line 139) | SYS_TKILL = 130 constant SYS_TGKILL (line 140) | SYS_TGKILL = 131 constant SYS_SIGALTSTACK (line 141) | SYS_SIGALTSTACK = 132 constant SYS_RT_SIGSUSPEND (line 142) | SYS_RT_SIGSUSPEND = 133 constant SYS_RT_SIGACTION (line 143) | SYS_RT_SIGACTION = 134 constant SYS_RT_SIGPROCMASK (line 144) | SYS_RT_SIGPROCMASK = 135 constant SYS_RT_SIGPENDING (line 145) | SYS_RT_SIGPENDING = 136 constant SYS_RT_SIGTIMEDWAIT (line 146) | SYS_RT_SIGTIMEDWAIT = 137 constant SYS_RT_SIGQUEUEINFO (line 147) | SYS_RT_SIGQUEUEINFO = 138 constant SYS_RT_SIGRETURN (line 148) | SYS_RT_SIGRETURN = 139 constant SYS_SETPRIORITY (line 149) | SYS_SETPRIORITY = 140 constant SYS_GETPRIORITY (line 150) | SYS_GETPRIORITY = 141 constant SYS_REBOOT (line 151) | SYS_REBOOT = 142 constant SYS_SETREGID (line 152) | SYS_SETREGID = 143 constant SYS_SETGID (line 153) | SYS_SETGID = 144 constant SYS_SETREUID (line 154) | SYS_SETREUID = 145 constant SYS_SETUID (line 155) | SYS_SETUID = 146 constant SYS_SETRESUID (line 156) | SYS_SETRESUID = 147 constant SYS_GETRESUID (line 157) | SYS_GETRESUID = 148 constant SYS_SETRESGID (line 158) | SYS_SETRESGID = 149 constant SYS_GETRESGID (line 159) | SYS_GETRESGID = 150 constant SYS_SETFSUID (line 160) | SYS_SETFSUID = 151 constant SYS_SETFSGID (line 161) | SYS_SETFSGID = 152 constant SYS_TIMES (line 162) | SYS_TIMES = 153 constant SYS_SETPGID (line 163) | SYS_SETPGID = 154 constant SYS_GETPGID (line 164) | SYS_GETPGID = 155 constant SYS_GETSID (line 165) | SYS_GETSID = 156 constant SYS_SETSID (line 166) | SYS_SETSID = 157 constant SYS_GETGROUPS (line 167) | SYS_GETGROUPS = 158 constant SYS_SETGROUPS (line 168) | SYS_SETGROUPS = 159 constant SYS_UNAME (line 169) | SYS_UNAME = 160 constant SYS_SETHOSTNAME (line 170) | SYS_SETHOSTNAME = 161 constant SYS_SETDOMAINNAME (line 171) | SYS_SETDOMAINNAME = 162 constant SYS_GETRLIMIT (line 172) | SYS_GETRLIMIT = 163 constant SYS_SETRLIMIT (line 173) | SYS_SETRLIMIT = 164 constant SYS_GETRUSAGE (line 174) | SYS_GETRUSAGE = 165 constant SYS_UMASK (line 175) | SYS_UMASK = 166 constant SYS_PRCTL (line 176) | SYS_PRCTL = 167 constant SYS_GETCPU (line 177) | SYS_GETCPU = 168 constant SYS_GETTIMEOFDAY (line 178) | SYS_GETTIMEOFDAY = 169 constant SYS_SETTIMEOFDAY (line 179) | SYS_SETTIMEOFDAY = 170 constant SYS_ADJTIMEX (line 180) | SYS_ADJTIMEX = 171 constant SYS_GETPID (line 181) | SYS_GETPID = 172 constant SYS_GETPPID (line 182) | SYS_GETPPID = 173 constant SYS_GETUID (line 183) | SYS_GETUID = 174 constant SYS_GETEUID (line 184) | SYS_GETEUID = 175 constant SYS_GETGID (line 185) | SYS_GETGID = 176 constant SYS_GETEGID (line 186) | SYS_GETEGID = 177 constant SYS_GETTID (line 187) | SYS_GETTID = 178 constant SYS_SYSINFO (line 188) | SYS_SYSINFO = 179 constant SYS_MQ_OPEN (line 189) | SYS_MQ_OPEN = 180 constant SYS_MQ_UNLINK (line 190) | SYS_MQ_UNLINK = 181 constant SYS_MQ_TIMEDSEND (line 191) | SYS_MQ_TIMEDSEND = 182 constant SYS_MQ_TIMEDRECEIVE (line 192) | SYS_MQ_TIMEDRECEIVE = 183 constant SYS_MQ_NOTIFY (line 193) | SYS_MQ_NOTIFY = 184 constant SYS_MQ_GETSETATTR (line 194) | SYS_MQ_GETSETATTR = 185 constant SYS_MSGGET (line 195) | SYS_MSGGET = 186 constant SYS_MSGCTL (line 196) | SYS_MSGCTL = 187 constant SYS_MSGRCV (line 197) | SYS_MSGRCV = 188 constant SYS_MSGSND (line 198) | SYS_MSGSND = 189 constant SYS_SEMGET (line 199) | SYS_SEMGET = 190 constant SYS_SEMCTL (line 200) | SYS_SEMCTL = 191 constant SYS_SEMTIMEDOP (line 201) | SYS_SEMTIMEDOP = 192 constant SYS_SEMOP (line 202) | SYS_SEMOP = 193 constant SYS_SHMGET (line 203) | SYS_SHMGET = 194 constant SYS_SHMCTL (line 204) | SYS_SHMCTL = 195 constant SYS_SHMAT (line 205) | SYS_SHMAT = 196 constant SYS_SHMDT (line 206) | SYS_SHMDT = 197 constant SYS_SOCKET (line 207) | SYS_SOCKET = 198 constant SYS_SOCKETPAIR (line 208) | SYS_SOCKETPAIR = 199 constant SYS_BIND (line 209) | SYS_BIND = 200 constant SYS_LISTEN (line 210) | SYS_LISTEN = 201 constant SYS_ACCEPT (line 211) | SYS_ACCEPT = 202 constant SYS_CONNECT (line 212) | SYS_CONNECT = 203 constant SYS_GETSOCKNAME (line 213) | SYS_GETSOCKNAME = 204 constant SYS_GETPEERNAME (line 214) | SYS_GETPEERNAME = 205 constant SYS_SENDTO (line 215) | SYS_SENDTO = 206 constant SYS_RECVFROM (line 216) | SYS_RECVFROM = 207 constant SYS_SETSOCKOPT (line 217) | SYS_SETSOCKOPT = 208 constant SYS_GETSOCKOPT (line 218) | SYS_GETSOCKOPT = 209 constant SYS_SHUTDOWN (line 219) | SYS_SHUTDOWN = 210 constant SYS_SENDMSG (line 220) | SYS_SENDMSG = 211 constant SYS_RECVMSG (line 221) | SYS_RECVMSG = 212 constant SYS_READAHEAD (line 222) | SYS_READAHEAD = 213 constant SYS_BRK (line 223) | SYS_BRK = 214 constant SYS_MUNMAP (line 224) | SYS_MUNMAP = 215 constant SYS_MREMAP (line 225) | SYS_MREMAP = 216 constant SYS_ADD_KEY (line 226) | SYS_ADD_KEY = 217 constant SYS_REQUEST_KEY (line 227) | SYS_REQUEST_KEY = 218 constant SYS_KEYCTL (line 228) | SYS_KEYCTL = 219 constant SYS_CLONE (line 229) | SYS_CLONE = 220 constant SYS_EXECVE (line 230) | SYS_EXECVE = 221 constant SYS_MMAP (line 231) | SYS_MMAP = 222 constant SYS_FADVISE64 (line 232) | SYS_FADVISE64 = 223 constant SYS_SWAPON (line 233) | SYS_SWAPON = 224 constant SYS_SWAPOFF (line 234) | SYS_SWAPOFF = 225 constant SYS_MPROTECT (line 235) | SYS_MPROTECT = 226 constant SYS_MSYNC (line 236) | SYS_MSYNC = 227 constant SYS_MLOCK (line 237) | SYS_MLOCK = 228 constant SYS_MUNLOCK (line 238) | SYS_MUNLOCK = 229 constant SYS_MLOCKALL (line 239) | SYS_MLOCKALL = 230 constant SYS_MUNLOCKALL (line 240) | SYS_MUNLOCKALL = 231 constant SYS_MINCORE (line 241) | SYS_MINCORE = 232 constant SYS_MADVISE (line 242) | SYS_MADVISE = 233 constant SYS_REMAP_FILE_PAGES (line 243) | SYS_REMAP_FILE_PAGES = 234 constant SYS_MBIND (line 244) | SYS_MBIND = 235 constant SYS_GET_MEMPOLICY (line 245) | SYS_GET_MEMPOLICY = 236 constant SYS_SET_MEMPOLICY (line 246) | SYS_SET_MEMPOLICY = 237 constant SYS_MIGRATE_PAGES (line 247) | SYS_MIGRATE_PAGES = 238 constant SYS_MOVE_PAGES (line 248) | SYS_MOVE_PAGES = 239 constant SYS_RT_TGSIGQUEUEINFO (line 249) | SYS_RT_TGSIGQUEUEINFO = 240 constant SYS_PERF_EVENT_OPEN (line 250) | SYS_PERF_EVENT_OPEN = 241 constant SYS_ACCEPT4 (line 251) | SYS_ACCEPT4 = 242 constant SYS_RECVMMSG (line 252) | SYS_RECVMMSG = 243 constant SYS_ARCH_SPECIFIC_SYSCALL (line 253) | SYS_ARCH_SPECIFIC_SYSCALL = 244 constant SYS_WAIT4 (line 254) | SYS_WAIT4 = 260 constant SYS_PRLIMIT64 (line 255) | SYS_PRLIMIT64 = 261 constant SYS_FANOTIFY_INIT (line 256) | SYS_FANOTIFY_INIT = 262 constant SYS_FANOTIFY_MARK (line 257) | SYS_FANOTIFY_MARK = 263 constant SYS_NAME_TO_HANDLE_AT (line 258) | SYS_NAME_TO_HANDLE_AT = 264 constant SYS_OPEN_BY_HANDLE_AT (line 259) | SYS_OPEN_BY_HANDLE_AT = 265 constant SYS_CLOCK_ADJTIME (line 260) | SYS_CLOCK_ADJTIME = 266 constant SYS_SYNCFS (line 261) | SYS_SYNCFS = 267 constant SYS_SETNS (line 262) | SYS_SETNS = 268 constant SYS_SENDMMSG (line 263) | SYS_SENDMMSG = 269 constant SYS_PROCESS_VM_READV (line 264) | SYS_PROCESS_VM_READV = 270 constant SYS_PROCESS_VM_WRITEV (line 265) | SYS_PROCESS_VM_WRITEV = 271 constant SYS_KCMP (line 266) | SYS_KCMP = 272 constant SYS_FINIT_MODULE (line 267) | SYS_FINIT_MODULE = 273 constant SYS_SCHED_SETATTR (line 268) | SYS_SCHED_SETATTR = 274 constant SYS_SCHED_GETATTR (line 269) | SYS_SCHED_GETATTR = 275 constant SYS_RENAMEAT2 (line 270) | SYS_RENAMEAT2 = 276 constant SYS_SECCOMP (line 271) | SYS_SECCOMP = 277 constant SYS_GETRANDOM (line 272) | SYS_GETRANDOM = 278 constant SYS_MEMFD_CREATE (line 273) | SYS_MEMFD_CREATE = 279 constant SYS_BPF (line 274) | SYS_BPF = 280 constant SYS_EXECVEAT (line 275) | SYS_EXECVEAT = 281 constant SYS_USERFAULTFD (line 276) | SYS_USERFAULTFD = 282 constant SYS_MEMBARRIER (line 277) | SYS_MEMBARRIER = 283 constant SYS_MLOCK2 (line 278) | SYS_MLOCK2 = 284 constant SYS_COPY_FILE_RANGE (line 279) | SYS_COPY_FILE_RANGE = 285 constant SYS_PREADV2 (line 280) | SYS_PREADV2 = 286 constant SYS_PWRITEV2 (line 281) | SYS_PWRITEV2 = 287 constant SYS_PKEY_MPROTECT (line 282) | SYS_PKEY_MPROTECT = 288 constant SYS_PKEY_ALLOC (line 283) | SYS_PKEY_ALLOC = 289 constant SYS_PKEY_FREE (line 284) | SYS_PKEY_FREE = 290 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 4000 constant SYS_EXIT (line 10) | SYS_EXIT = 4001 constant SYS_FORK (line 11) | SYS_FORK = 4002 constant SYS_READ (line 12) | SYS_READ = 4003 constant SYS_WRITE (line 13) | SYS_WRITE = 4004 constant SYS_OPEN (line 14) | SYS_OPEN = 4005 constant SYS_CLOSE (line 15) | SYS_CLOSE = 4006 constant SYS_WAITPID (line 16) | SYS_WAITPID = 4007 constant SYS_CREAT (line 17) | SYS_CREAT = 4008 constant SYS_LINK (line 18) | SYS_LINK = 4009 constant SYS_UNLINK (line 19) | SYS_UNLINK = 4010 constant SYS_EXECVE (line 20) | SYS_EXECVE = 4011 constant SYS_CHDIR (line 21) | SYS_CHDIR = 4012 constant SYS_TIME (line 22) | SYS_TIME = 4013 constant SYS_MKNOD (line 23) | SYS_MKNOD = 4014 constant SYS_CHMOD (line 24) | SYS_CHMOD = 4015 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 4016 constant SYS_BREAK (line 26) | SYS_BREAK = 4017 constant SYS_UNUSED18 (line 27) | SYS_UNUSED18 = 4018 constant SYS_LSEEK (line 28) | SYS_LSEEK = 4019 constant SYS_GETPID (line 29) | SYS_GETPID = 4020 constant SYS_MOUNT (line 30) | SYS_MOUNT = 4021 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 4022 constant SYS_SETUID (line 32) | SYS_SETUID = 4023 constant SYS_GETUID (line 33) | SYS_GETUID = 4024 constant SYS_STIME (line 34) | SYS_STIME = 4025 constant SYS_PTRACE (line 35) | SYS_PTRACE = 4026 constant SYS_ALARM (line 36) | SYS_ALARM = 4027 constant SYS_UNUSED28 (line 37) | SYS_UNUSED28 = 4028 constant SYS_PAUSE (line 38) | SYS_PAUSE = 4029 constant SYS_UTIME (line 39) | SYS_UTIME = 4030 constant SYS_STTY (line 40) | SYS_STTY = 4031 constant SYS_GTTY (line 41) | SYS_GTTY = 4032 constant SYS_ACCESS (line 42) | SYS_ACCESS = 4033 constant SYS_NICE (line 43) | SYS_NICE = 4034 constant SYS_FTIME (line 44) | SYS_FTIME = 4035 constant SYS_SYNC (line 45) | SYS_SYNC = 4036 constant SYS_KILL (line 46) | SYS_KILL = 4037 constant SYS_RENAME (line 47) | SYS_RENAME = 4038 constant SYS_MKDIR (line 48) | SYS_MKDIR = 4039 constant SYS_RMDIR (line 49) | SYS_RMDIR = 4040 constant SYS_DUP (line 50) | SYS_DUP = 4041 constant SYS_PIPE (line 51) | SYS_PIPE = 4042 constant SYS_TIMES (line 52) | SYS_TIMES = 4043 constant SYS_PROF (line 53) | SYS_PROF = 4044 constant SYS_BRK (line 54) | SYS_BRK = 4045 constant SYS_SETGID (line 55) | SYS_SETGID = 4046 constant SYS_GETGID (line 56) | SYS_GETGID = 4047 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 4048 constant SYS_GETEUID (line 58) | SYS_GETEUID = 4049 constant SYS_GETEGID (line 59) | SYS_GETEGID = 4050 constant SYS_ACCT (line 60) | SYS_ACCT = 4051 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 4052 constant SYS_LOCK (line 62) | SYS_LOCK = 4053 constant SYS_IOCTL (line 63) | SYS_IOCTL = 4054 constant SYS_FCNTL (line 64) | SYS_FCNTL = 4055 constant SYS_MPX (line 65) | SYS_MPX = 4056 constant SYS_SETPGID (line 66) | SYS_SETPGID = 4057 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 4058 constant SYS_UNUSED59 (line 68) | SYS_UNUSED59 = 4059 constant SYS_UMASK (line 69) | SYS_UMASK = 4060 constant SYS_CHROOT (line 70) | SYS_CHROOT = 4061 constant SYS_USTAT (line 71) | SYS_USTAT = 4062 constant SYS_DUP2 (line 72) | SYS_DUP2 = 4063 constant SYS_GETPPID (line 73) | SYS_GETPPID = 4064 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 4065 constant SYS_SETSID (line 75) | SYS_SETSID = 4066 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 4067 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 4068 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 4069 constant SYS_SETREUID (line 79) | SYS_SETREUID = 4070 constant SYS_SETREGID (line 80) | SYS_SETREGID = 4071 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 4072 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 4073 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 4074 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 4075 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 4076 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 4077 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 4078 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 4079 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 4080 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 4081 constant SYS_RESERVED82 (line 91) | SYS_RESERVED82 = 4082 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 4083 constant SYS_UNUSED84 (line 93) | SYS_UNUSED84 = 4084 constant SYS_READLINK (line 94) | SYS_READLINK = 4085 constant SYS_USELIB (line 95) | SYS_USELIB = 4086 constant SYS_SWAPON (line 96) | SYS_SWAPON = 4087 constant SYS_REBOOT (line 97) | SYS_REBOOT = 4088 constant SYS_READDIR (line 98) | SYS_READDIR = 4089 constant SYS_MMAP (line 99) | SYS_MMAP = 4090 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 4091 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 4092 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 4093 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 4094 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 4095 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 4096 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 4097 constant SYS_PROFIL (line 107) | SYS_PROFIL = 4098 constant SYS_STATFS (line 108) | SYS_STATFS = 4099 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 4100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 4101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 4102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 4103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 4104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 4105 constant SYS_STAT (line 115) | SYS_STAT = 4106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 4107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 4108 constant SYS_UNUSED109 (line 118) | SYS_UNUSED109 = 4109 constant SYS_IOPL (line 119) | SYS_IOPL = 4110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 4111 constant SYS_IDLE (line 121) | SYS_IDLE = 4112 constant SYS_VM86 (line 122) | SYS_VM86 = 4113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 4114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 4115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 4116 constant SYS_IPC (line 126) | SYS_IPC = 4117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 4118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 4119 constant SYS_CLONE (line 129) | SYS_CLONE = 4120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 4121 constant SYS_UNAME (line 131) | SYS_UNAME = 4122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 4123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 4124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 4125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 4126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 4127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 4128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 4129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 4130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 4131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 4132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 4133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 4134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 4135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 4136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 4137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 4138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 4139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 4140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 4141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 4142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 4143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 4144 constant SYS_READV (line 154) | SYS_READV = 4145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 4146 constant SYS_CACHEFLUSH (line 156) | SYS_CACHEFLUSH = 4147 constant SYS_CACHECTL (line 157) | SYS_CACHECTL = 4148 constant SYS_SYSMIPS (line 158) | SYS_SYSMIPS = 4149 constant SYS_UNUSED150 (line 159) | SYS_UNUSED150 = 4150 constant SYS_GETSID (line 160) | SYS_GETSID = 4151 constant SYS_FDATASYNC (line 161) | SYS_FDATASYNC = 4152 constant SYS__SYSCTL (line 162) | SYS__SYSCTL = 4153 constant SYS_MLOCK (line 163) | SYS_MLOCK = 4154 constant SYS_MUNLOCK (line 164) | SYS_MUNLOCK = 4155 constant SYS_MLOCKALL (line 165) | SYS_MLOCKALL = 4156 constant SYS_MUNLOCKALL (line 166) | SYS_MUNLOCKALL = 4157 constant SYS_SCHED_SETPARAM (line 167) | SYS_SCHED_SETPARAM = 4158 constant SYS_SCHED_GETPARAM (line 168) | SYS_SCHED_GETPARAM = 4159 constant SYS_SCHED_SETSCHEDULER (line 169) | SYS_SCHED_SETSCHEDULER = 4160 constant SYS_SCHED_GETSCHEDULER (line 170) | SYS_SCHED_GETSCHEDULER = 4161 constant SYS_SCHED_YIELD (line 171) | SYS_SCHED_YIELD = 4162 constant SYS_SCHED_GET_PRIORITY_MAX (line 172) | SYS_SCHED_GET_PRIORITY_MAX = 4163 constant SYS_SCHED_GET_PRIORITY_MIN (line 173) | SYS_SCHED_GET_PRIORITY_MIN = 4164 constant SYS_SCHED_RR_GET_INTERVAL (line 174) | SYS_SCHED_RR_GET_INTERVAL = 4165 constant SYS_NANOSLEEP (line 175) | SYS_NANOSLEEP = 4166 constant SYS_MREMAP (line 176) | SYS_MREMAP = 4167 constant SYS_ACCEPT (line 177) | SYS_ACCEPT = 4168 constant SYS_BIND (line 178) | SYS_BIND = 4169 constant SYS_CONNECT (line 179) | SYS_CONNECT = 4170 constant SYS_GETPEERNAME (line 180) | SYS_GETPEERNAME = 4171 constant SYS_GETSOCKNAME (line 181) | SYS_GETSOCKNAME = 4172 constant SYS_GETSOCKOPT (line 182) | SYS_GETSOCKOPT = 4173 constant SYS_LISTEN (line 183) | SYS_LISTEN = 4174 constant SYS_RECV (line 184) | SYS_RECV = 4175 constant SYS_RECVFROM (line 185) | SYS_RECVFROM = 4176 constant SYS_RECVMSG (line 186) | SYS_RECVMSG = 4177 constant SYS_SEND (line 187) | SYS_SEND = 4178 constant SYS_SENDMSG (line 188) | SYS_SENDMSG = 4179 constant SYS_SENDTO (line 189) | SYS_SENDTO = 4180 constant SYS_SETSOCKOPT (line 190) | SYS_SETSOCKOPT = 4181 constant SYS_SHUTDOWN (line 191) | SYS_SHUTDOWN = 4182 constant SYS_SOCKET (line 192) | SYS_SOCKET = 4183 constant SYS_SOCKETPAIR (line 193) | SYS_SOCKETPAIR = 4184 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 4185 constant SYS_GETRESUID (line 195) | SYS_GETRESUID = 4186 constant SYS_QUERY_MODULE (line 196) | SYS_QUERY_MODULE = 4187 constant SYS_POLL (line 197) | SYS_POLL = 4188 constant SYS_NFSSERVCTL (line 198) | SYS_NFSSERVCTL = 4189 constant SYS_SETRESGID (line 199) | SYS_SETRESGID = 4190 constant SYS_GETRESGID (line 200) | SYS_GETRESGID = 4191 constant SYS_PRCTL (line 201) | SYS_PRCTL = 4192 constant SYS_RT_SIGRETURN (line 202) | SYS_RT_SIGRETURN = 4193 constant SYS_RT_SIGACTION (line 203) | SYS_RT_SIGACTION = 4194 constant SYS_RT_SIGPROCMASK (line 204) | SYS_RT_SIGPROCMASK = 4195 constant SYS_RT_SIGPENDING (line 205) | SYS_RT_SIGPENDING = 4196 constant SYS_RT_SIGTIMEDWAIT (line 206) | SYS_RT_SIGTIMEDWAIT = 4197 constant SYS_RT_SIGQUEUEINFO (line 207) | SYS_RT_SIGQUEUEINFO = 4198 constant SYS_RT_SIGSUSPEND (line 208) | SYS_RT_SIGSUSPEND = 4199 constant SYS_PREAD64 (line 209) | SYS_PREAD64 = 4200 constant SYS_PWRITE64 (line 210) | SYS_PWRITE64 = 4201 constant SYS_CHOWN (line 211) | SYS_CHOWN = 4202 constant SYS_GETCWD (line 212) | SYS_GETCWD = 4203 constant SYS_CAPGET (line 213) | SYS_CAPGET = 4204 constant SYS_CAPSET (line 214) | SYS_CAPSET = 4205 constant SYS_SIGALTSTACK (line 215) | SYS_SIGALTSTACK = 4206 constant SYS_SENDFILE (line 216) | SYS_SENDFILE = 4207 constant SYS_GETPMSG (line 217) | SYS_GETPMSG = 4208 constant SYS_PUTPMSG (line 218) | SYS_PUTPMSG = 4209 constant SYS_MMAP2 (line 219) | SYS_MMAP2 = 4210 constant SYS_TRUNCATE64 (line 220) | SYS_TRUNCATE64 = 4211 constant SYS_FTRUNCATE64 (line 221) | SYS_FTRUNCATE64 = 4212 constant SYS_STAT64 (line 222) | SYS_STAT64 = 4213 constant SYS_LSTAT64 (line 223) | SYS_LSTAT64 = 4214 constant SYS_FSTAT64 (line 224) | SYS_FSTAT64 = 4215 constant SYS_PIVOT_ROOT (line 225) | SYS_PIVOT_ROOT = 4216 constant SYS_MINCORE (line 226) | SYS_MINCORE = 4217 constant SYS_MADVISE (line 227) | SYS_MADVISE = 4218 constant SYS_GETDENTS64 (line 228) | SYS_GETDENTS64 = 4219 constant SYS_FCNTL64 (line 229) | SYS_FCNTL64 = 4220 constant SYS_RESERVED221 (line 230) | SYS_RESERVED221 = 4221 constant SYS_GETTID (line 231) | SYS_GETTID = 4222 constant SYS_READAHEAD (line 232) | SYS_READAHEAD = 4223 constant SYS_SETXATTR (line 233) | SYS_SETXATTR = 4224 constant SYS_LSETXATTR (line 234) | SYS_LSETXATTR = 4225 constant SYS_FSETXATTR (line 235) | SYS_FSETXATTR = 4226 constant SYS_GETXATTR (line 236) | SYS_GETXATTR = 4227 constant SYS_LGETXATTR (line 237) | SYS_LGETXATTR = 4228 constant SYS_FGETXATTR (line 238) | SYS_FGETXATTR = 4229 constant SYS_LISTXATTR (line 239) | SYS_LISTXATTR = 4230 constant SYS_LLISTXATTR (line 240) | SYS_LLISTXATTR = 4231 constant SYS_FLISTXATTR (line 241) | SYS_FLISTXATTR = 4232 constant SYS_REMOVEXATTR (line 242) | SYS_REMOVEXATTR = 4233 constant SYS_LREMOVEXATTR (line 243) | SYS_LREMOVEXATTR = 4234 constant SYS_FREMOVEXATTR (line 244) | SYS_FREMOVEXATTR = 4235 constant SYS_TKILL (line 245) | SYS_TKILL = 4236 constant SYS_SENDFILE64 (line 246) | SYS_SENDFILE64 = 4237 constant SYS_FUTEX (line 247) | SYS_FUTEX = 4238 constant SYS_SCHED_SETAFFINITY (line 248) | SYS_SCHED_SETAFFINITY = 4239 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 4240 constant SYS_IO_SETUP (line 250) | SYS_IO_SETUP = 4241 constant SYS_IO_DESTROY (line 251) | SYS_IO_DESTROY = 4242 constant SYS_IO_GETEVENTS (line 252) | SYS_IO_GETEVENTS = 4243 constant SYS_IO_SUBMIT (line 253) | SYS_IO_SUBMIT = 4244 constant SYS_IO_CANCEL (line 254) | SYS_IO_CANCEL = 4245 constant SYS_EXIT_GROUP (line 255) | SYS_EXIT_GROUP = 4246 constant SYS_LOOKUP_DCOOKIE (line 256) | SYS_LOOKUP_DCOOKIE = 4247 constant SYS_EPOLL_CREATE (line 257) | SYS_EPOLL_CREATE = 4248 constant SYS_EPOLL_CTL (line 258) | SYS_EPOLL_CTL = 4249 constant SYS_EPOLL_WAIT (line 259) | SYS_EPOLL_WAIT = 4250 constant SYS_REMAP_FILE_PAGES (line 260) | SYS_REMAP_FILE_PAGES = 4251 constant SYS_SET_TID_ADDRESS (line 261) | SYS_SET_TID_ADDRESS = 4252 constant SYS_RESTART_SYSCALL (line 262) | SYS_RESTART_SYSCALL = 4253 constant SYS_FADVISE64 (line 263) | SYS_FADVISE64 = 4254 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 4255 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 4256 constant SYS_TIMER_CREATE (line 266) | SYS_TIMER_CREATE = 4257 constant SYS_TIMER_SETTIME (line 267) | SYS_TIMER_SETTIME = 4258 constant SYS_TIMER_GETTIME (line 268) | SYS_TIMER_GETTIME = 4259 constant SYS_TIMER_GETOVERRUN (line 269) | SYS_TIMER_GETOVERRUN = 4260 constant SYS_TIMER_DELETE (line 270) | SYS_TIMER_DELETE = 4261 constant SYS_CLOCK_SETTIME (line 271) | SYS_CLOCK_SETTIME = 4262 constant SYS_CLOCK_GETTIME (line 272) | SYS_CLOCK_GETTIME = 4263 constant SYS_CLOCK_GETRES (line 273) | SYS_CLOCK_GETRES = 4264 constant SYS_CLOCK_NANOSLEEP (line 274) | SYS_CLOCK_NANOSLEEP = 4265 constant SYS_TGKILL (line 275) | SYS_TGKILL = 4266 constant SYS_UTIMES (line 276) | SYS_UTIMES = 4267 constant SYS_MBIND (line 277) | SYS_MBIND = 4268 constant SYS_GET_MEMPOLICY (line 278) | SYS_GET_MEMPOLICY = 4269 constant SYS_SET_MEMPOLICY (line 279) | SYS_SET_MEMPOLICY = 4270 constant SYS_MQ_OPEN (line 280) | SYS_MQ_OPEN = 4271 constant SYS_MQ_UNLINK (line 281) | SYS_MQ_UNLINK = 4272 constant SYS_MQ_TIMEDSEND (line 282) | SYS_MQ_TIMEDSEND = 4273 constant SYS_MQ_TIMEDRECEIVE (line 283) | SYS_MQ_TIMEDRECEIVE = 4274 constant SYS_MQ_NOTIFY (line 284) | SYS_MQ_NOTIFY = 4275 constant SYS_MQ_GETSETATTR (line 285) | SYS_MQ_GETSETATTR = 4276 constant SYS_VSERVER (line 286) | SYS_VSERVER = 4277 constant SYS_WAITID (line 287) | SYS_WAITID = 4278 constant SYS_ADD_KEY (line 288) | SYS_ADD_KEY = 4280 constant SYS_REQUEST_KEY (line 289) | SYS_REQUEST_KEY = 4281 constant SYS_KEYCTL (line 290) | SYS_KEYCTL = 4282 constant SYS_SET_THREAD_AREA (line 291) | SYS_SET_THREAD_AREA = 4283 constant SYS_INOTIFY_INIT (line 292) | SYS_INOTIFY_INIT = 4284 constant SYS_INOTIFY_ADD_WATCH (line 293) | SYS_INOTIFY_ADD_WATCH = 4285 constant SYS_INOTIFY_RM_WATCH (line 294) | SYS_INOTIFY_RM_WATCH = 4286 constant SYS_MIGRATE_PAGES (line 295) | SYS_MIGRATE_PAGES = 4287 constant SYS_OPENAT (line 296) | SYS_OPENAT = 4288 constant SYS_MKDIRAT (line 297) | SYS_MKDIRAT = 4289 constant SYS_MKNODAT (line 298) | SYS_MKNODAT = 4290 constant SYS_FCHOWNAT (line 299) | SYS_FCHOWNAT = 4291 constant SYS_FUTIMESAT (line 300) | SYS_FUTIMESAT = 4292 constant SYS_FSTATAT64 (line 301) | SYS_FSTATAT64 = 4293 constant SYS_UNLINKAT (line 302) | SYS_UNLINKAT = 4294 constant SYS_RENAMEAT (line 303) | SYS_RENAMEAT = 4295 constant SYS_LINKAT (line 304) | SYS_LINKAT = 4296 constant SYS_SYMLINKAT (line 305) | SYS_SYMLINKAT = 4297 constant SYS_READLINKAT (line 306) | SYS_READLINKAT = 4298 constant SYS_FCHMODAT (line 307) | SYS_FCHMODAT = 4299 constant SYS_FACCESSAT (line 308) | SYS_FACCESSAT = 4300 constant SYS_PSELECT6 (line 309) | SYS_PSELECT6 = 4301 constant SYS_PPOLL (line 310) | SYS_PPOLL = 4302 constant SYS_UNSHARE (line 311) | SYS_UNSHARE = 4303 constant SYS_SPLICE (line 312) | SYS_SPLICE = 4304 constant SYS_SYNC_FILE_RANGE (line 313) | SYS_SYNC_FILE_RANGE = 4305 constant SYS_TEE (line 314) | SYS_TEE = 4306 constant SYS_VMSPLICE (line 315) | SYS_VMSPLICE = 4307 constant SYS_MOVE_PAGES (line 316) | SYS_MOVE_PAGES = 4308 constant SYS_SET_ROBUST_LIST (line 317) | SYS_SET_ROBUST_LIST = 4309 constant SYS_GET_ROBUST_LIST (line 318) | SYS_GET_ROBUST_LIST = 4310 constant SYS_KEXEC_LOAD (line 319) | SYS_KEXEC_LOAD = 4311 constant SYS_GETCPU (line 320) | SYS_GETCPU = 4312 constant SYS_EPOLL_PWAIT (line 321) | SYS_EPOLL_PWAIT = 4313 constant SYS_IOPRIO_SET (line 322) | SYS_IOPRIO_SET = 4314 constant SYS_IOPRIO_GET (line 323) | SYS_IOPRIO_GET = 4315 constant SYS_UTIMENSAT (line 324) | SYS_UTIMENSAT = 4316 constant SYS_SIGNALFD (line 325) | SYS_SIGNALFD = 4317 constant SYS_TIMERFD (line 326) | SYS_TIMERFD = 4318 constant SYS_EVENTFD (line 327) | SYS_EVENTFD = 4319 constant SYS_FALLOCATE (line 328) | SYS_FALLOCATE = 4320 constant SYS_TIMERFD_CREATE (line 329) | SYS_TIMERFD_CREATE = 4321 constant SYS_TIMERFD_GETTIME (line 330) | SYS_TIMERFD_GETTIME = 4322 constant SYS_TIMERFD_SETTIME (line 331) | SYS_TIMERFD_SETTIME = 4323 constant SYS_SIGNALFD4 (line 332) | SYS_SIGNALFD4 = 4324 constant SYS_EVENTFD2 (line 333) | SYS_EVENTFD2 = 4325 constant SYS_EPOLL_CREATE1 (line 334) | SYS_EPOLL_CREATE1 = 4326 constant SYS_DUP3 (line 335) | SYS_DUP3 = 4327 constant SYS_PIPE2 (line 336) | SYS_PIPE2 = 4328 constant SYS_INOTIFY_INIT1 (line 337) | SYS_INOTIFY_INIT1 = 4329 constant SYS_PREADV (line 338) | SYS_PREADV = 4330 constant SYS_PWRITEV (line 339) | SYS_PWRITEV = 4331 constant SYS_RT_TGSIGQUEUEINFO (line 340) | SYS_RT_TGSIGQUEUEINFO = 4332 constant SYS_PERF_EVENT_OPEN (line 341) | SYS_PERF_EVENT_OPEN = 4333 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 4334 constant SYS_RECVMMSG (line 343) | SYS_RECVMMSG = 4335 constant SYS_FANOTIFY_INIT (line 344) | SYS_FANOTIFY_INIT = 4336 constant SYS_FANOTIFY_MARK (line 345) | SYS_FANOTIFY_MARK = 4337 constant SYS_PRLIMIT64 (line 346) | SYS_PRLIMIT64 = 4338 constant SYS_NAME_TO_HANDLE_AT (line 347) | SYS_NAME_TO_HANDLE_AT = 4339 constant SYS_OPEN_BY_HANDLE_AT (line 348) | SYS_OPEN_BY_HANDLE_AT = 4340 constant SYS_CLOCK_ADJTIME (line 349) | SYS_CLOCK_ADJTIME = 4341 constant SYS_SYNCFS (line 350) | SYS_SYNCFS = 4342 constant SYS_SENDMMSG (line 351) | SYS_SENDMMSG = 4343 constant SYS_SETNS (line 352) | SYS_SETNS = 4344 constant SYS_PROCESS_VM_READV (line 353) | SYS_PROCESS_VM_READV = 4345 constant SYS_PROCESS_VM_WRITEV (line 354) | SYS_PROCESS_VM_WRITEV = 4346 constant SYS_KCMP (line 355) | SYS_KCMP = 4347 constant SYS_FINIT_MODULE (line 356) | SYS_FINIT_MODULE = 4348 constant SYS_SCHED_SETATTR (line 357) | SYS_SCHED_SETATTR = 4349 constant SYS_SCHED_GETATTR (line 358) | SYS_SCHED_GETATTR = 4350 constant SYS_RENAMEAT2 (line 359) | SYS_RENAMEAT2 = 4351 constant SYS_SECCOMP (line 360) | SYS_SECCOMP = 4352 constant SYS_GETRANDOM (line 361) | SYS_GETRANDOM = 4353 constant SYS_MEMFD_CREATE (line 362) | SYS_MEMFD_CREATE = 4354 constant SYS_BPF (line 363) | SYS_BPF = 4355 constant SYS_EXECVEAT (line 364) | SYS_EXECVEAT = 4356 constant SYS_USERFAULTFD (line 365) | SYS_USERFAULTFD = 4357 constant SYS_MEMBARRIER (line 366) | SYS_MEMBARRIER = 4358 constant SYS_MLOCK2 (line 367) | SYS_MLOCK2 = 4359 constant SYS_COPY_FILE_RANGE (line 368) | SYS_COPY_FILE_RANGE = 4360 constant SYS_PREADV2 (line 369) | SYS_PREADV2 = 4361 constant SYS_PWRITEV2 (line 370) | SYS_PWRITEV2 = 4362 constant SYS_PKEY_MPROTECT (line 371) | SYS_PKEY_MPROTECT = 4363 constant SYS_PKEY_ALLOC (line 372) | SYS_PKEY_ALLOC = 4364 constant SYS_PKEY_FREE (line 373) | SYS_PKEY_FREE = 4365 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go constant SYS_READ (line 9) | SYS_READ = 5000 constant SYS_WRITE (line 10) | SYS_WRITE = 5001 constant SYS_OPEN (line 11) | SYS_OPEN = 5002 constant SYS_CLOSE (line 12) | SYS_CLOSE = 5003 constant SYS_STAT (line 13) | SYS_STAT = 5004 constant SYS_FSTAT (line 14) | SYS_FSTAT = 5005 constant SYS_LSTAT (line 15) | SYS_LSTAT = 5006 constant SYS_POLL (line 16) | SYS_POLL = 5007 constant SYS_LSEEK (line 17) | SYS_LSEEK = 5008 constant SYS_MMAP (line 18) | SYS_MMAP = 5009 constant SYS_MPROTECT (line 19) | SYS_MPROTECT = 5010 constant SYS_MUNMAP (line 20) | SYS_MUNMAP = 5011 constant SYS_BRK (line 21) | SYS_BRK = 5012 constant SYS_RT_SIGACTION (line 22) | SYS_RT_SIGACTION = 5013 constant SYS_RT_SIGPROCMASK (line 23) | SYS_RT_SIGPROCMASK = 5014 constant SYS_IOCTL (line 24) | SYS_IOCTL = 5015 constant SYS_PREAD64 (line 25) | SYS_PREAD64 = 5016 constant SYS_PWRITE64 (line 26) | SYS_PWRITE64 = 5017 constant SYS_READV (line 27) | SYS_READV = 5018 constant SYS_WRITEV (line 28) | SYS_WRITEV = 5019 constant SYS_ACCESS (line 29) | SYS_ACCESS = 5020 constant SYS_PIPE (line 30) | SYS_PIPE = 5021 constant SYS__NEWSELECT (line 31) | SYS__NEWSELECT = 5022 constant SYS_SCHED_YIELD (line 32) | SYS_SCHED_YIELD = 5023 constant SYS_MREMAP (line 33) | SYS_MREMAP = 5024 constant SYS_MSYNC (line 34) | SYS_MSYNC = 5025 constant SYS_MINCORE (line 35) | SYS_MINCORE = 5026 constant SYS_MADVISE (line 36) | SYS_MADVISE = 5027 constant SYS_SHMGET (line 37) | SYS_SHMGET = 5028 constant SYS_SHMAT (line 38) | SYS_SHMAT = 5029 constant SYS_SHMCTL (line 39) | SYS_SHMCTL = 5030 constant SYS_DUP (line 40) | SYS_DUP = 5031 constant SYS_DUP2 (line 41) | SYS_DUP2 = 5032 constant SYS_PAUSE (line 42) | SYS_PAUSE = 5033 constant SYS_NANOSLEEP (line 43) | SYS_NANOSLEEP = 5034 constant SYS_GETITIMER (line 44) | SYS_GETITIMER = 5035 constant SYS_SETITIMER (line 45) | SYS_SETITIMER = 5036 constant SYS_ALARM (line 46) | SYS_ALARM = 5037 constant SYS_GETPID (line 47) | SYS_GETPID = 5038 constant SYS_SENDFILE (line 48) | SYS_SENDFILE = 5039 constant SYS_SOCKET (line 49) | SYS_SOCKET = 5040 constant SYS_CONNECT (line 50) | SYS_CONNECT = 5041 constant SYS_ACCEPT (line 51) | SYS_ACCEPT = 5042 constant SYS_SENDTO (line 52) | SYS_SENDTO = 5043 constant SYS_RECVFROM (line 53) | SYS_RECVFROM = 5044 constant SYS_SENDMSG (line 54) | SYS_SENDMSG = 5045 constant SYS_RECVMSG (line 55) | SYS_RECVMSG = 5046 constant SYS_SHUTDOWN (line 56) | SYS_SHUTDOWN = 5047 constant SYS_BIND (line 57) | SYS_BIND = 5048 constant SYS_LISTEN (line 58) | SYS_LISTEN = 5049 constant SYS_GETSOCKNAME (line 59) | SYS_GETSOCKNAME = 5050 constant SYS_GETPEERNAME (line 60) | SYS_GETPEERNAME = 5051 constant SYS_SOCKETPAIR (line 61) | SYS_SOCKETPAIR = 5052 constant SYS_SETSOCKOPT (line 62) | SYS_SETSOCKOPT = 5053 constant SYS_GETSOCKOPT (line 63) | SYS_GETSOCKOPT = 5054 constant SYS_CLONE (line 64) | SYS_CLONE = 5055 constant SYS_FORK (line 65) | SYS_FORK = 5056 constant SYS_EXECVE (line 66) | SYS_EXECVE = 5057 constant SYS_EXIT (line 67) | SYS_EXIT = 5058 constant SYS_WAIT4 (line 68) | SYS_WAIT4 = 5059 constant SYS_KILL (line 69) | SYS_KILL = 5060 constant SYS_UNAME (line 70) | SYS_UNAME = 5061 constant SYS_SEMGET (line 71) | SYS_SEMGET = 5062 constant SYS_SEMOP (line 72) | SYS_SEMOP = 5063 constant SYS_SEMCTL (line 73) | SYS_SEMCTL = 5064 constant SYS_SHMDT (line 74) | SYS_SHMDT = 5065 constant SYS_MSGGET (line 75) | SYS_MSGGET = 5066 constant SYS_MSGSND (line 76) | SYS_MSGSND = 5067 constant SYS_MSGRCV (line 77) | SYS_MSGRCV = 5068 constant SYS_MSGCTL (line 78) | SYS_MSGCTL = 5069 constant SYS_FCNTL (line 79) | SYS_FCNTL = 5070 constant SYS_FLOCK (line 80) | SYS_FLOCK = 5071 constant SYS_FSYNC (line 81) | SYS_FSYNC = 5072 constant SYS_FDATASYNC (line 82) | SYS_FDATASYNC = 5073 constant SYS_TRUNCATE (line 83) | SYS_TRUNCATE = 5074 constant SYS_FTRUNCATE (line 84) | SYS_FTRUNCATE = 5075 constant SYS_GETDENTS (line 85) | SYS_GETDENTS = 5076 constant SYS_GETCWD (line 86) | SYS_GETCWD = 5077 constant SYS_CHDIR (line 87) | SYS_CHDIR = 5078 constant SYS_FCHDIR (line 88) | SYS_FCHDIR = 5079 constant SYS_RENAME (line 89) | SYS_RENAME = 5080 constant SYS_MKDIR (line 90) | SYS_MKDIR = 5081 constant SYS_RMDIR (line 91) | SYS_RMDIR = 5082 constant SYS_CREAT (line 92) | SYS_CREAT = 5083 constant SYS_LINK (line 93) | SYS_LINK = 5084 constant SYS_UNLINK (line 94) | SYS_UNLINK = 5085 constant SYS_SYMLINK (line 95) | SYS_SYMLINK = 5086 constant SYS_READLINK (line 96) | SYS_READLINK = 5087 constant SYS_CHMOD (line 97) | SYS_CHMOD = 5088 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 5089 constant SYS_CHOWN (line 99) | SYS_CHOWN = 5090 constant SYS_FCHOWN (line 100) | SYS_FCHOWN = 5091 constant SYS_LCHOWN (line 101) | SYS_LCHOWN = 5092 constant SYS_UMASK (line 102) | SYS_UMASK = 5093 constant SYS_GETTIMEOFDAY (line 103) | SYS_GETTIMEOFDAY = 5094 constant SYS_GETRLIMIT (line 104) | SYS_GETRLIMIT = 5095 constant SYS_GETRUSAGE (line 105) | SYS_GETRUSAGE = 5096 constant SYS_SYSINFO (line 106) | SYS_SYSINFO = 5097 constant SYS_TIMES (line 107) | SYS_TIMES = 5098 constant SYS_PTRACE (line 108) | SYS_PTRACE = 5099 constant SYS_GETUID (line 109) | SYS_GETUID = 5100 constant SYS_SYSLOG (line 110) | SYS_SYSLOG = 5101 constant SYS_GETGID (line 111) | SYS_GETGID = 5102 constant SYS_SETUID (line 112) | SYS_SETUID = 5103 constant SYS_SETGID (line 113) | SYS_SETGID = 5104 constant SYS_GETEUID (line 114) | SYS_GETEUID = 5105 constant SYS_GETEGID (line 115) | SYS_GETEGID = 5106 constant SYS_SETPGID (line 116) | SYS_SETPGID = 5107 constant SYS_GETPPID (line 117) | SYS_GETPPID = 5108 constant SYS_GETPGRP (line 118) | SYS_GETPGRP = 5109 constant SYS_SETSID (line 119) | SYS_SETSID = 5110 constant SYS_SETREUID (line 120) | SYS_SETREUID = 5111 constant SYS_SETREGID (line 121) | SYS_SETREGID = 5112 constant SYS_GETGROUPS (line 122) | SYS_GETGROUPS = 5113 constant SYS_SETGROUPS (line 123) | SYS_SETGROUPS = 5114 constant SYS_SETRESUID (line 124) | SYS_SETRESUID = 5115 constant SYS_GETRESUID (line 125) | SYS_GETRESUID = 5116 constant SYS_SETRESGID (line 126) | SYS_SETRESGID = 5117 constant SYS_GETRESGID (line 127) | SYS_GETRESGID = 5118 constant SYS_GETPGID (line 128) | SYS_GETPGID = 5119 constant SYS_SETFSUID (line 129) | SYS_SETFSUID = 5120 constant SYS_SETFSGID (line 130) | SYS_SETFSGID = 5121 constant SYS_GETSID (line 131) | SYS_GETSID = 5122 constant SYS_CAPGET (line 132) | SYS_CAPGET = 5123 constant SYS_CAPSET (line 133) | SYS_CAPSET = 5124 constant SYS_RT_SIGPENDING (line 134) | SYS_RT_SIGPENDING = 5125 constant SYS_RT_SIGTIMEDWAIT (line 135) | SYS_RT_SIGTIMEDWAIT = 5126 constant SYS_RT_SIGQUEUEINFO (line 136) | SYS_RT_SIGQUEUEINFO = 5127 constant SYS_RT_SIGSUSPEND (line 137) | SYS_RT_SIGSUSPEND = 5128 constant SYS_SIGALTSTACK (line 138) | SYS_SIGALTSTACK = 5129 constant SYS_UTIME (line 139) | SYS_UTIME = 5130 constant SYS_MKNOD (line 140) | SYS_MKNOD = 5131 constant SYS_PERSONALITY (line 141) | SYS_PERSONALITY = 5132 constant SYS_USTAT (line 142) | SYS_USTAT = 5133 constant SYS_STATFS (line 143) | SYS_STATFS = 5134 constant SYS_FSTATFS (line 144) | SYS_FSTATFS = 5135 constant SYS_SYSFS (line 145) | SYS_SYSFS = 5136 constant SYS_GETPRIORITY (line 146) | SYS_GETPRIORITY = 5137 constant SYS_SETPRIORITY (line 147) | SYS_SETPRIORITY = 5138 constant SYS_SCHED_SETPARAM (line 148) | SYS_SCHED_SETPARAM = 5139 constant SYS_SCHED_GETPARAM (line 149) | SYS_SCHED_GETPARAM = 5140 constant SYS_SCHED_SETSCHEDULER (line 150) | SYS_SCHED_SETSCHEDULER = 5141 constant SYS_SCHED_GETSCHEDULER (line 151) | SYS_SCHED_GETSCHEDULER = 5142 constant SYS_SCHED_GET_PRIORITY_MAX (line 152) | SYS_SCHED_GET_PRIORITY_MAX = 5143 constant SYS_SCHED_GET_PRIORITY_MIN (line 153) | SYS_SCHED_GET_PRIORITY_MIN = 5144 constant SYS_SCHED_RR_GET_INTERVAL (line 154) | SYS_SCHED_RR_GET_INTERVAL = 5145 constant SYS_MLOCK (line 155) | SYS_MLOCK = 5146 constant SYS_MUNLOCK (line 156) | SYS_MUNLOCK = 5147 constant SYS_MLOCKALL (line 157) | SYS_MLOCKALL = 5148 constant SYS_MUNLOCKALL (line 158) | SYS_MUNLOCKALL = 5149 constant SYS_VHANGUP (line 159) | SYS_VHANGUP = 5150 constant SYS_PIVOT_ROOT (line 160) | SYS_PIVOT_ROOT = 5151 constant SYS__SYSCTL (line 161) | SYS__SYSCTL = 5152 constant SYS_PRCTL (line 162) | SYS_PRCTL = 5153 constant SYS_ADJTIMEX (line 163) | SYS_ADJTIMEX = 5154 constant SYS_SETRLIMIT (line 164) | SYS_SETRLIMIT = 5155 constant SYS_CHROOT (line 165) | SYS_CHROOT = 5156 constant SYS_SYNC (line 166) | SYS_SYNC = 5157 constant SYS_ACCT (line 167) | SYS_ACCT = 5158 constant SYS_SETTIMEOFDAY (line 168) | SYS_SETTIMEOFDAY = 5159 constant SYS_MOUNT (line 169) | SYS_MOUNT = 5160 constant SYS_UMOUNT2 (line 170) | SYS_UMOUNT2 = 5161 constant SYS_SWAPON (line 171) | SYS_SWAPON = 5162 constant SYS_SWAPOFF (line 172) | SYS_SWAPOFF = 5163 constant SYS_REBOOT (line 173) | SYS_REBOOT = 5164 constant SYS_SETHOSTNAME (line 174) | SYS_SETHOSTNAME = 5165 constant SYS_SETDOMAINNAME (line 175) | SYS_SETDOMAINNAME = 5166 constant SYS_CREATE_MODULE (line 176) | SYS_CREATE_MODULE = 5167 constant SYS_INIT_MODULE (line 177) | SYS_INIT_MODULE = 5168 constant SYS_DELETE_MODULE (line 178) | SYS_DELETE_MODULE = 5169 constant SYS_GET_KERNEL_SYMS (line 179) | SYS_GET_KERNEL_SYMS = 5170 constant SYS_QUERY_MODULE (line 180) | SYS_QUERY_MODULE = 5171 constant SYS_QUOTACTL (line 181) | SYS_QUOTACTL = 5172 constant SYS_NFSSERVCTL (line 182) | SYS_NFSSERVCTL = 5173 constant SYS_GETPMSG (line 183) | SYS_GETPMSG = 5174 constant SYS_PUTPMSG (line 184) | SYS_PUTPMSG = 5175 constant SYS_AFS_SYSCALL (line 185) | SYS_AFS_SYSCALL = 5176 constant SYS_RESERVED177 (line 186) | SYS_RESERVED177 = 5177 constant SYS_GETTID (line 187) | SYS_GETTID = 5178 constant SYS_READAHEAD (line 188) | SYS_READAHEAD = 5179 constant SYS_SETXATTR (line 189) | SYS_SETXATTR = 5180 constant SYS_LSETXATTR (line 190) | SYS_LSETXATTR = 5181 constant SYS_FSETXATTR (line 191) | SYS_FSETXATTR = 5182 constant SYS_GETXATTR (line 192) | SYS_GETXATTR = 5183 constant SYS_LGETXATTR (line 193) | SYS_LGETXATTR = 5184 constant SYS_FGETXATTR (line 194) | SYS_FGETXATTR = 5185 constant SYS_LISTXATTR (line 195) | SYS_LISTXATTR = 5186 constant SYS_LLISTXATTR (line 196) | SYS_LLISTXATTR = 5187 constant SYS_FLISTXATTR (line 197) | SYS_FLISTXATTR = 5188 constant SYS_REMOVEXATTR (line 198) | SYS_REMOVEXATTR = 5189 constant SYS_LREMOVEXATTR (line 199) | SYS_LREMOVEXATTR = 5190 constant SYS_FREMOVEXATTR (line 200) | SYS_FREMOVEXATTR = 5191 constant SYS_TKILL (line 201) | SYS_TKILL = 5192 constant SYS_RESERVED193 (line 202) | SYS_RESERVED193 = 5193 constant SYS_FUTEX (line 203) | SYS_FUTEX = 5194 constant SYS_SCHED_SETAFFINITY (line 204) | SYS_SCHED_SETAFFINITY = 5195 constant SYS_SCHED_GETAFFINITY (line 205) | SYS_SCHED_GETAFFINITY = 5196 constant SYS_CACHEFLUSH (line 206) | SYS_CACHEFLUSH = 5197 constant SYS_CACHECTL (line 207) | SYS_CACHECTL = 5198 constant SYS_SYSMIPS (line 208) | SYS_SYSMIPS = 5199 constant SYS_IO_SETUP (line 209) | SYS_IO_SETUP = 5200 constant SYS_IO_DESTROY (line 210) | SYS_IO_DESTROY = 5201 constant SYS_IO_GETEVENTS (line 211) | SYS_IO_GETEVENTS = 5202 constant SYS_IO_SUBMIT (line 212) | SYS_IO_SUBMIT = 5203 constant SYS_IO_CANCEL (line 213) | SYS_IO_CANCEL = 5204 constant SYS_EXIT_GROUP (line 214) | SYS_EXIT_GROUP = 5205 constant SYS_LOOKUP_DCOOKIE (line 215) | SYS_LOOKUP_DCOOKIE = 5206 constant SYS_EPOLL_CREATE (line 216) | SYS_EPOLL_CREATE = 5207 constant SYS_EPOLL_CTL (line 217) | SYS_EPOLL_CTL = 5208 constant SYS_EPOLL_WAIT (line 218) | SYS_EPOLL_WAIT = 5209 constant SYS_REMAP_FILE_PAGES (line 219) | SYS_REMAP_FILE_PAGES = 5210 constant SYS_RT_SIGRETURN (line 220) | SYS_RT_SIGRETURN = 5211 constant SYS_SET_TID_ADDRESS (line 221) | SYS_SET_TID_ADDRESS = 5212 constant SYS_RESTART_SYSCALL (line 222) | SYS_RESTART_SYSCALL = 5213 constant SYS_SEMTIMEDOP (line 223) | SYS_SEMTIMEDOP = 5214 constant SYS_FADVISE64 (line 224) | SYS_FADVISE64 = 5215 constant SYS_TIMER_CREATE (line 225) | SYS_TIMER_CREATE = 5216 constant SYS_TIMER_SETTIME (line 226) | SYS_TIMER_SETTIME = 5217 constant SYS_TIMER_GETTIME (line 227) | SYS_TIMER_GETTIME = 5218 constant SYS_TIMER_GETOVERRUN (line 228) | SYS_TIMER_GETOVERRUN = 5219 constant SYS_TIMER_DELETE (line 229) | SYS_TIMER_DELETE = 5220 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 5221 constant SYS_CLOCK_GETTIME (line 231) | SYS_CLOCK_GETTIME = 5222 constant SYS_CLOCK_GETRES (line 232) | SYS_CLOCK_GETRES = 5223 constant SYS_CLOCK_NANOSLEEP (line 233) | SYS_CLOCK_NANOSLEEP = 5224 constant SYS_TGKILL (line 234) | SYS_TGKILL = 5225 constant SYS_UTIMES (line 235) | SYS_UTIMES = 5226 constant SYS_MBIND (line 236) | SYS_MBIND = 5227 constant SYS_GET_MEMPOLICY (line 237) | SYS_GET_MEMPOLICY = 5228 constant SYS_SET_MEMPOLICY (line 238) | SYS_SET_MEMPOLICY = 5229 constant SYS_MQ_OPEN (line 239) | SYS_MQ_OPEN = 5230 constant SYS_MQ_UNLINK (line 240) | SYS_MQ_UNLINK = 5231 constant SYS_MQ_TIMEDSEND (line 241) | SYS_MQ_TIMEDSEND = 5232 constant SYS_MQ_TIMEDRECEIVE (line 242) | SYS_MQ_TIMEDRECEIVE = 5233 constant SYS_MQ_NOTIFY (line 243) | SYS_MQ_NOTIFY = 5234 constant SYS_MQ_GETSETATTR (line 244) | SYS_MQ_GETSETATTR = 5235 constant SYS_VSERVER (line 245) | SYS_VSERVER = 5236 constant SYS_WAITID (line 246) | SYS_WAITID = 5237 constant SYS_ADD_KEY (line 247) | SYS_ADD_KEY = 5239 constant SYS_REQUEST_KEY (line 248) | SYS_REQUEST_KEY = 5240 constant SYS_KEYCTL (line 249) | SYS_KEYCTL = 5241 constant SYS_SET_THREAD_AREA (line 250) | SYS_SET_THREAD_AREA = 5242 constant SYS_INOTIFY_INIT (line 251) | SYS_INOTIFY_INIT = 5243 constant SYS_INOTIFY_ADD_WATCH (line 252) | SYS_INOTIFY_ADD_WATCH = 5244 constant SYS_INOTIFY_RM_WATCH (line 253) | SYS_INOTIFY_RM_WATCH = 5245 constant SYS_MIGRATE_PAGES (line 254) | SYS_MIGRATE_PAGES = 5246 constant SYS_OPENAT (line 255) | SYS_OPENAT = 5247 constant SYS_MKDIRAT (line 256) | SYS_MKDIRAT = 5248 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 5249 constant SYS_FCHOWNAT (line 258) | SYS_FCHOWNAT = 5250 constant SYS_FUTIMESAT (line 259) | SYS_FUTIMESAT = 5251 constant SYS_NEWFSTATAT (line 260) | SYS_NEWFSTATAT = 5252 constant SYS_UNLINKAT (line 261) | SYS_UNLINKAT = 5253 constant SYS_RENAMEAT (line 262) | SYS_RENAMEAT = 5254 constant SYS_LINKAT (line 263) | SYS_LINKAT = 5255 constant SYS_SYMLINKAT (line 264) | SYS_SYMLINKAT = 5256 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 5257 constant SYS_FCHMODAT (line 266) | SYS_FCHMODAT = 5258 constant SYS_FACCESSAT (line 267) | SYS_FACCESSAT = 5259 constant SYS_PSELECT6 (line 268) | SYS_PSELECT6 = 5260 constant SYS_PPOLL (line 269) | SYS_PPOLL = 5261 constant SYS_UNSHARE (line 270) | SYS_UNSHARE = 5262 constant SYS_SPLICE (line 271) | SYS_SPLICE = 5263 constant SYS_SYNC_FILE_RANGE (line 272) | SYS_SYNC_FILE_RANGE = 5264 constant SYS_TEE (line 273) | SYS_TEE = 5265 constant SYS_VMSPLICE (line 274) | SYS_VMSPLICE = 5266 constant SYS_MOVE_PAGES (line 275) | SYS_MOVE_PAGES = 5267 constant SYS_SET_ROBUST_LIST (line 276) | SYS_SET_ROBUST_LIST = 5268 constant SYS_GET_ROBUST_LIST (line 277) | SYS_GET_ROBUST_LIST = 5269 constant SYS_KEXEC_LOAD (line 278) | SYS_KEXEC_LOAD = 5270 constant SYS_GETCPU (line 279) | SYS_GETCPU = 5271 constant SYS_EPOLL_PWAIT (line 280) | SYS_EPOLL_PWAIT = 5272 constant SYS_IOPRIO_SET (line 281) | SYS_IOPRIO_SET = 5273 constant SYS_IOPRIO_GET (line 282) | SYS_IOPRIO_GET = 5274 constant SYS_UTIMENSAT (line 283) | SYS_UTIMENSAT = 5275 constant SYS_SIGNALFD (line 284) | SYS_SIGNALFD = 5276 constant SYS_TIMERFD (line 285) | SYS_TIMERFD = 5277 constant SYS_EVENTFD (line 286) | SYS_EVENTFD = 5278 constant SYS_FALLOCATE (line 287) | SYS_FALLOCATE = 5279 constant SYS_TIMERFD_CREATE (line 288) | SYS_TIMERFD_CREATE = 5280 constant SYS_TIMERFD_GETTIME (line 289) | SYS_TIMERFD_GETTIME = 5281 constant SYS_TIMERFD_SETTIME (line 290) | SYS_TIMERFD_SETTIME = 5282 constant SYS_SIGNALFD4 (line 291) | SYS_SIGNALFD4 = 5283 constant SYS_EVENTFD2 (line 292) | SYS_EVENTFD2 = 5284 constant SYS_EPOLL_CREATE1 (line 293) | SYS_EPOLL_CREATE1 = 5285 constant SYS_DUP3 (line 294) | SYS_DUP3 = 5286 constant SYS_PIPE2 (line 295) | SYS_PIPE2 = 5287 constant SYS_INOTIFY_INIT1 (line 296) | SYS_INOTIFY_INIT1 = 5288 constant SYS_PREADV (line 297) | SYS_PREADV = 5289 constant SYS_PWRITEV (line 298) | SYS_PWRITEV = 5290 constant SYS_RT_TGSIGQUEUEINFO (line 299) | SYS_RT_TGSIGQUEUEINFO = 5291 constant SYS_PERF_EVENT_OPEN (line 300) | SYS_PERF_EVENT_OPEN = 5292 constant SYS_ACCEPT4 (line 301) | SYS_ACCEPT4 = 5293 constant SYS_RECVMMSG (line 302) | SYS_RECVMMSG = 5294 constant SYS_FANOTIFY_INIT (line 303) | SYS_FANOTIFY_INIT = 5295 constant SYS_FANOTIFY_MARK (line 304) | SYS_FANOTIFY_MARK = 5296 constant SYS_PRLIMIT64 (line 305) | SYS_PRLIMIT64 = 5297 constant SYS_NAME_TO_HANDLE_AT (line 306) | SYS_NAME_TO_HANDLE_AT = 5298 constant SYS_OPEN_BY_HANDLE_AT (line 307) | SYS_OPEN_BY_HANDLE_AT = 5299 constant SYS_CLOCK_ADJTIME (line 308) | SYS_CLOCK_ADJTIME = 5300 constant SYS_SYNCFS (line 309) | SYS_SYNCFS = 5301 constant SYS_SENDMMSG (line 310) | SYS_SENDMMSG = 5302 constant SYS_SETNS (line 311) | SYS_SETNS = 5303 constant SYS_PROCESS_VM_READV (line 312) | SYS_PROCESS_VM_READV = 5304 constant SYS_PROCESS_VM_WRITEV (line 313) | SYS_PROCESS_VM_WRITEV = 5305 constant SYS_KCMP (line 314) | SYS_KCMP = 5306 constant SYS_FINIT_MODULE (line 315) | SYS_FINIT_MODULE = 5307 constant SYS_GETDENTS64 (line 316) | SYS_GETDENTS64 = 5308 constant SYS_SCHED_SETATTR (line 317) | SYS_SCHED_SETATTR = 5309 constant SYS_SCHED_GETATTR (line 318) | SYS_SCHED_GETATTR = 5310 constant SYS_RENAMEAT2 (line 319) | SYS_RENAMEAT2 = 5311 constant SYS_SECCOMP (line 320) | SYS_SECCOMP = 5312 constant SYS_GETRANDOM (line 321) | SYS_GETRANDOM = 5313 constant SYS_MEMFD_CREATE (line 322) | SYS_MEMFD_CREATE = 5314 constant SYS_BPF (line 323) | SYS_BPF = 5315 constant SYS_EXECVEAT (line 324) | SYS_EXECVEAT = 5316 constant SYS_USERFAULTFD (line 325) | SYS_USERFAULTFD = 5317 constant SYS_MEMBARRIER (line 326) | SYS_MEMBARRIER = 5318 constant SYS_MLOCK2 (line 327) | SYS_MLOCK2 = 5319 constant SYS_COPY_FILE_RANGE (line 328) | SYS_COPY_FILE_RANGE = 5320 constant SYS_PREADV2 (line 329) | SYS_PREADV2 = 5321 constant SYS_PWRITEV2 (line 330) | SYS_PWRITEV2 = 5322 constant SYS_PKEY_MPROTECT (line 331) | SYS_PKEY_MPROTECT = 5323 constant SYS_PKEY_ALLOC (line 332) | SYS_PKEY_ALLOC = 5324 constant SYS_PKEY_FREE (line 333) | SYS_PKEY_FREE = 5325 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go constant SYS_READ (line 9) | SYS_READ = 5000 constant SYS_WRITE (line 10) | SYS_WRITE = 5001 constant SYS_OPEN (line 11) | SYS_OPEN = 5002 constant SYS_CLOSE (line 12) | SYS_CLOSE = 5003 constant SYS_STAT (line 13) | SYS_STAT = 5004 constant SYS_FSTAT (line 14) | SYS_FSTAT = 5005 constant SYS_LSTAT (line 15) | SYS_LSTAT = 5006 constant SYS_POLL (line 16) | SYS_POLL = 5007 constant SYS_LSEEK (line 17) | SYS_LSEEK = 5008 constant SYS_MMAP (line 18) | SYS_MMAP = 5009 constant SYS_MPROTECT (line 19) | SYS_MPROTECT = 5010 constant SYS_MUNMAP (line 20) | SYS_MUNMAP = 5011 constant SYS_BRK (line 21) | SYS_BRK = 5012 constant SYS_RT_SIGACTION (line 22) | SYS_RT_SIGACTION = 5013 constant SYS_RT_SIGPROCMASK (line 23) | SYS_RT_SIGPROCMASK = 5014 constant SYS_IOCTL (line 24) | SYS_IOCTL = 5015 constant SYS_PREAD64 (line 25) | SYS_PREAD64 = 5016 constant SYS_PWRITE64 (line 26) | SYS_PWRITE64 = 5017 constant SYS_READV (line 27) | SYS_READV = 5018 constant SYS_WRITEV (line 28) | SYS_WRITEV = 5019 constant SYS_ACCESS (line 29) | SYS_ACCESS = 5020 constant SYS_PIPE (line 30) | SYS_PIPE = 5021 constant SYS__NEWSELECT (line 31) | SYS__NEWSELECT = 5022 constant SYS_SCHED_YIELD (line 32) | SYS_SCHED_YIELD = 5023 constant SYS_MREMAP (line 33) | SYS_MREMAP = 5024 constant SYS_MSYNC (line 34) | SYS_MSYNC = 5025 constant SYS_MINCORE (line 35) | SYS_MINCORE = 5026 constant SYS_MADVISE (line 36) | SYS_MADVISE = 5027 constant SYS_SHMGET (line 37) | SYS_SHMGET = 5028 constant SYS_SHMAT (line 38) | SYS_SHMAT = 5029 constant SYS_SHMCTL (line 39) | SYS_SHMCTL = 5030 constant SYS_DUP (line 40) | SYS_DUP = 5031 constant SYS_DUP2 (line 41) | SYS_DUP2 = 5032 constant SYS_PAUSE (line 42) | SYS_PAUSE = 5033 constant SYS_NANOSLEEP (line 43) | SYS_NANOSLEEP = 5034 constant SYS_GETITIMER (line 44) | SYS_GETITIMER = 5035 constant SYS_SETITIMER (line 45) | SYS_SETITIMER = 5036 constant SYS_ALARM (line 46) | SYS_ALARM = 5037 constant SYS_GETPID (line 47) | SYS_GETPID = 5038 constant SYS_SENDFILE (line 48) | SYS_SENDFILE = 5039 constant SYS_SOCKET (line 49) | SYS_SOCKET = 5040 constant SYS_CONNECT (line 50) | SYS_CONNECT = 5041 constant SYS_ACCEPT (line 51) | SYS_ACCEPT = 5042 constant SYS_SENDTO (line 52) | SYS_SENDTO = 5043 constant SYS_RECVFROM (line 53) | SYS_RECVFROM = 5044 constant SYS_SENDMSG (line 54) | SYS_SENDMSG = 5045 constant SYS_RECVMSG (line 55) | SYS_RECVMSG = 5046 constant SYS_SHUTDOWN (line 56) | SYS_SHUTDOWN = 5047 constant SYS_BIND (line 57) | SYS_BIND = 5048 constant SYS_LISTEN (line 58) | SYS_LISTEN = 5049 constant SYS_GETSOCKNAME (line 59) | SYS_GETSOCKNAME = 5050 constant SYS_GETPEERNAME (line 60) | SYS_GETPEERNAME = 5051 constant SYS_SOCKETPAIR (line 61) | SYS_SOCKETPAIR = 5052 constant SYS_SETSOCKOPT (line 62) | SYS_SETSOCKOPT = 5053 constant SYS_GETSOCKOPT (line 63) | SYS_GETSOCKOPT = 5054 constant SYS_CLONE (line 64) | SYS_CLONE = 5055 constant SYS_FORK (line 65) | SYS_FORK = 5056 constant SYS_EXECVE (line 66) | SYS_EXECVE = 5057 constant SYS_EXIT (line 67) | SYS_EXIT = 5058 constant SYS_WAIT4 (line 68) | SYS_WAIT4 = 5059 constant SYS_KILL (line 69) | SYS_KILL = 5060 constant SYS_UNAME (line 70) | SYS_UNAME = 5061 constant SYS_SEMGET (line 71) | SYS_SEMGET = 5062 constant SYS_SEMOP (line 72) | SYS_SEMOP = 5063 constant SYS_SEMCTL (line 73) | SYS_SEMCTL = 5064 constant SYS_SHMDT (line 74) | SYS_SHMDT = 5065 constant SYS_MSGGET (line 75) | SYS_MSGGET = 5066 constant SYS_MSGSND (line 76) | SYS_MSGSND = 5067 constant SYS_MSGRCV (line 77) | SYS_MSGRCV = 5068 constant SYS_MSGCTL (line 78) | SYS_MSGCTL = 5069 constant SYS_FCNTL (line 79) | SYS_FCNTL = 5070 constant SYS_FLOCK (line 80) | SYS_FLOCK = 5071 constant SYS_FSYNC (line 81) | SYS_FSYNC = 5072 constant SYS_FDATASYNC (line 82) | SYS_FDATASYNC = 5073 constant SYS_TRUNCATE (line 83) | SYS_TRUNCATE = 5074 constant SYS_FTRUNCATE (line 84) | SYS_FTRUNCATE = 5075 constant SYS_GETDENTS (line 85) | SYS_GETDENTS = 5076 constant SYS_GETCWD (line 86) | SYS_GETCWD = 5077 constant SYS_CHDIR (line 87) | SYS_CHDIR = 5078 constant SYS_FCHDIR (line 88) | SYS_FCHDIR = 5079 constant SYS_RENAME (line 89) | SYS_RENAME = 5080 constant SYS_MKDIR (line 90) | SYS_MKDIR = 5081 constant SYS_RMDIR (line 91) | SYS_RMDIR = 5082 constant SYS_CREAT (line 92) | SYS_CREAT = 5083 constant SYS_LINK (line 93) | SYS_LINK = 5084 constant SYS_UNLINK (line 94) | SYS_UNLINK = 5085 constant SYS_SYMLINK (line 95) | SYS_SYMLINK = 5086 constant SYS_READLINK (line 96) | SYS_READLINK = 5087 constant SYS_CHMOD (line 97) | SYS_CHMOD = 5088 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 5089 constant SYS_CHOWN (line 99) | SYS_CHOWN = 5090 constant SYS_FCHOWN (line 100) | SYS_FCHOWN = 5091 constant SYS_LCHOWN (line 101) | SYS_LCHOWN = 5092 constant SYS_UMASK (line 102) | SYS_UMASK = 5093 constant SYS_GETTIMEOFDAY (line 103) | SYS_GETTIMEOFDAY = 5094 constant SYS_GETRLIMIT (line 104) | SYS_GETRLIMIT = 5095 constant SYS_GETRUSAGE (line 105) | SYS_GETRUSAGE = 5096 constant SYS_SYSINFO (line 106) | SYS_SYSINFO = 5097 constant SYS_TIMES (line 107) | SYS_TIMES = 5098 constant SYS_PTRACE (line 108) | SYS_PTRACE = 5099 constant SYS_GETUID (line 109) | SYS_GETUID = 5100 constant SYS_SYSLOG (line 110) | SYS_SYSLOG = 5101 constant SYS_GETGID (line 111) | SYS_GETGID = 5102 constant SYS_SETUID (line 112) | SYS_SETUID = 5103 constant SYS_SETGID (line 113) | SYS_SETGID = 5104 constant SYS_GETEUID (line 114) | SYS_GETEUID = 5105 constant SYS_GETEGID (line 115) | SYS_GETEGID = 5106 constant SYS_SETPGID (line 116) | SYS_SETPGID = 5107 constant SYS_GETPPID (line 117) | SYS_GETPPID = 5108 constant SYS_GETPGRP (line 118) | SYS_GETPGRP = 5109 constant SYS_SETSID (line 119) | SYS_SETSID = 5110 constant SYS_SETREUID (line 120) | SYS_SETREUID = 5111 constant SYS_SETREGID (line 121) | SYS_SETREGID = 5112 constant SYS_GETGROUPS (line 122) | SYS_GETGROUPS = 5113 constant SYS_SETGROUPS (line 123) | SYS_SETGROUPS = 5114 constant SYS_SETRESUID (line 124) | SYS_SETRESUID = 5115 constant SYS_GETRESUID (line 125) | SYS_GETRESUID = 5116 constant SYS_SETRESGID (line 126) | SYS_SETRESGID = 5117 constant SYS_GETRESGID (line 127) | SYS_GETRESGID = 5118 constant SYS_GETPGID (line 128) | SYS_GETPGID = 5119 constant SYS_SETFSUID (line 129) | SYS_SETFSUID = 5120 constant SYS_SETFSGID (line 130) | SYS_SETFSGID = 5121 constant SYS_GETSID (line 131) | SYS_GETSID = 5122 constant SYS_CAPGET (line 132) | SYS_CAPGET = 5123 constant SYS_CAPSET (line 133) | SYS_CAPSET = 5124 constant SYS_RT_SIGPENDING (line 134) | SYS_RT_SIGPENDING = 5125 constant SYS_RT_SIGTIMEDWAIT (line 135) | SYS_RT_SIGTIMEDWAIT = 5126 constant SYS_RT_SIGQUEUEINFO (line 136) | SYS_RT_SIGQUEUEINFO = 5127 constant SYS_RT_SIGSUSPEND (line 137) | SYS_RT_SIGSUSPEND = 5128 constant SYS_SIGALTSTACK (line 138) | SYS_SIGALTSTACK = 5129 constant SYS_UTIME (line 139) | SYS_UTIME = 5130 constant SYS_MKNOD (line 140) | SYS_MKNOD = 5131 constant SYS_PERSONALITY (line 141) | SYS_PERSONALITY = 5132 constant SYS_USTAT (line 142) | SYS_USTAT = 5133 constant SYS_STATFS (line 143) | SYS_STATFS = 5134 constant SYS_FSTATFS (line 144) | SYS_FSTATFS = 5135 constant SYS_SYSFS (line 145) | SYS_SYSFS = 5136 constant SYS_GETPRIORITY (line 146) | SYS_GETPRIORITY = 5137 constant SYS_SETPRIORITY (line 147) | SYS_SETPRIORITY = 5138 constant SYS_SCHED_SETPARAM (line 148) | SYS_SCHED_SETPARAM = 5139 constant SYS_SCHED_GETPARAM (line 149) | SYS_SCHED_GETPARAM = 5140 constant SYS_SCHED_SETSCHEDULER (line 150) | SYS_SCHED_SETSCHEDULER = 5141 constant SYS_SCHED_GETSCHEDULER (line 151) | SYS_SCHED_GETSCHEDULER = 5142 constant SYS_SCHED_GET_PRIORITY_MAX (line 152) | SYS_SCHED_GET_PRIORITY_MAX = 5143 constant SYS_SCHED_GET_PRIORITY_MIN (line 153) | SYS_SCHED_GET_PRIORITY_MIN = 5144 constant SYS_SCHED_RR_GET_INTERVAL (line 154) | SYS_SCHED_RR_GET_INTERVAL = 5145 constant SYS_MLOCK (line 155) | SYS_MLOCK = 5146 constant SYS_MUNLOCK (line 156) | SYS_MUNLOCK = 5147 constant SYS_MLOCKALL (line 157) | SYS_MLOCKALL = 5148 constant SYS_MUNLOCKALL (line 158) | SYS_MUNLOCKALL = 5149 constant SYS_VHANGUP (line 159) | SYS_VHANGUP = 5150 constant SYS_PIVOT_ROOT (line 160) | SYS_PIVOT_ROOT = 5151 constant SYS__SYSCTL (line 161) | SYS__SYSCTL = 5152 constant SYS_PRCTL (line 162) | SYS_PRCTL = 5153 constant SYS_ADJTIMEX (line 163) | SYS_ADJTIMEX = 5154 constant SYS_SETRLIMIT (line 164) | SYS_SETRLIMIT = 5155 constant SYS_CHROOT (line 165) | SYS_CHROOT = 5156 constant SYS_SYNC (line 166) | SYS_SYNC = 5157 constant SYS_ACCT (line 167) | SYS_ACCT = 5158 constant SYS_SETTIMEOFDAY (line 168) | SYS_SETTIMEOFDAY = 5159 constant SYS_MOUNT (line 169) | SYS_MOUNT = 5160 constant SYS_UMOUNT2 (line 170) | SYS_UMOUNT2 = 5161 constant SYS_SWAPON (line 171) | SYS_SWAPON = 5162 constant SYS_SWAPOFF (line 172) | SYS_SWAPOFF = 5163 constant SYS_REBOOT (line 173) | SYS_REBOOT = 5164 constant SYS_SETHOSTNAME (line 174) | SYS_SETHOSTNAME = 5165 constant SYS_SETDOMAINNAME (line 175) | SYS_SETDOMAINNAME = 5166 constant SYS_CREATE_MODULE (line 176) | SYS_CREATE_MODULE = 5167 constant SYS_INIT_MODULE (line 177) | SYS_INIT_MODULE = 5168 constant SYS_DELETE_MODULE (line 178) | SYS_DELETE_MODULE = 5169 constant SYS_GET_KERNEL_SYMS (line 179) | SYS_GET_KERNEL_SYMS = 5170 constant SYS_QUERY_MODULE (line 180) | SYS_QUERY_MODULE = 5171 constant SYS_QUOTACTL (line 181) | SYS_QUOTACTL = 5172 constant SYS_NFSSERVCTL (line 182) | SYS_NFSSERVCTL = 5173 constant SYS_GETPMSG (line 183) | SYS_GETPMSG = 5174 constant SYS_PUTPMSG (line 184) | SYS_PUTPMSG = 5175 constant SYS_AFS_SYSCALL (line 185) | SYS_AFS_SYSCALL = 5176 constant SYS_RESERVED177 (line 186) | SYS_RESERVED177 = 5177 constant SYS_GETTID (line 187) | SYS_GETTID = 5178 constant SYS_READAHEAD (line 188) | SYS_READAHEAD = 5179 constant SYS_SETXATTR (line 189) | SYS_SETXATTR = 5180 constant SYS_LSETXATTR (line 190) | SYS_LSETXATTR = 5181 constant SYS_FSETXATTR (line 191) | SYS_FSETXATTR = 5182 constant SYS_GETXATTR (line 192) | SYS_GETXATTR = 5183 constant SYS_LGETXATTR (line 193) | SYS_LGETXATTR = 5184 constant SYS_FGETXATTR (line 194) | SYS_FGETXATTR = 5185 constant SYS_LISTXATTR (line 195) | SYS_LISTXATTR = 5186 constant SYS_LLISTXATTR (line 196) | SYS_LLISTXATTR = 5187 constant SYS_FLISTXATTR (line 197) | SYS_FLISTXATTR = 5188 constant SYS_REMOVEXATTR (line 198) | SYS_REMOVEXATTR = 5189 constant SYS_LREMOVEXATTR (line 199) | SYS_LREMOVEXATTR = 5190 constant SYS_FREMOVEXATTR (line 200) | SYS_FREMOVEXATTR = 5191 constant SYS_TKILL (line 201) | SYS_TKILL = 5192 constant SYS_RESERVED193 (line 202) | SYS_RESERVED193 = 5193 constant SYS_FUTEX (line 203) | SYS_FUTEX = 5194 constant SYS_SCHED_SETAFFINITY (line 204) | SYS_SCHED_SETAFFINITY = 5195 constant SYS_SCHED_GETAFFINITY (line 205) | SYS_SCHED_GETAFFINITY = 5196 constant SYS_CACHEFLUSH (line 206) | SYS_CACHEFLUSH = 5197 constant SYS_CACHECTL (line 207) | SYS_CACHECTL = 5198 constant SYS_SYSMIPS (line 208) | SYS_SYSMIPS = 5199 constant SYS_IO_SETUP (line 209) | SYS_IO_SETUP = 5200 constant SYS_IO_DESTROY (line 210) | SYS_IO_DESTROY = 5201 constant SYS_IO_GETEVENTS (line 211) | SYS_IO_GETEVENTS = 5202 constant SYS_IO_SUBMIT (line 212) | SYS_IO_SUBMIT = 5203 constant SYS_IO_CANCEL (line 213) | SYS_IO_CANCEL = 5204 constant SYS_EXIT_GROUP (line 214) | SYS_EXIT_GROUP = 5205 constant SYS_LOOKUP_DCOOKIE (line 215) | SYS_LOOKUP_DCOOKIE = 5206 constant SYS_EPOLL_CREATE (line 216) | SYS_EPOLL_CREATE = 5207 constant SYS_EPOLL_CTL (line 217) | SYS_EPOLL_CTL = 5208 constant SYS_EPOLL_WAIT (line 218) | SYS_EPOLL_WAIT = 5209 constant SYS_REMAP_FILE_PAGES (line 219) | SYS_REMAP_FILE_PAGES = 5210 constant SYS_RT_SIGRETURN (line 220) | SYS_RT_SIGRETURN = 5211 constant SYS_SET_TID_ADDRESS (line 221) | SYS_SET_TID_ADDRESS = 5212 constant SYS_RESTART_SYSCALL (line 222) | SYS_RESTART_SYSCALL = 5213 constant SYS_SEMTIMEDOP (line 223) | SYS_SEMTIMEDOP = 5214 constant SYS_FADVISE64 (line 224) | SYS_FADVISE64 = 5215 constant SYS_TIMER_CREATE (line 225) | SYS_TIMER_CREATE = 5216 constant SYS_TIMER_SETTIME (line 226) | SYS_TIMER_SETTIME = 5217 constant SYS_TIMER_GETTIME (line 227) | SYS_TIMER_GETTIME = 5218 constant SYS_TIMER_GETOVERRUN (line 228) | SYS_TIMER_GETOVERRUN = 5219 constant SYS_TIMER_DELETE (line 229) | SYS_TIMER_DELETE = 5220 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 5221 constant SYS_CLOCK_GETTIME (line 231) | SYS_CLOCK_GETTIME = 5222 constant SYS_CLOCK_GETRES (line 232) | SYS_CLOCK_GETRES = 5223 constant SYS_CLOCK_NANOSLEEP (line 233) | SYS_CLOCK_NANOSLEEP = 5224 constant SYS_TGKILL (line 234) | SYS_TGKILL = 5225 constant SYS_UTIMES (line 235) | SYS_UTIMES = 5226 constant SYS_MBIND (line 236) | SYS_MBIND = 5227 constant SYS_GET_MEMPOLICY (line 237) | SYS_GET_MEMPOLICY = 5228 constant SYS_SET_MEMPOLICY (line 238) | SYS_SET_MEMPOLICY = 5229 constant SYS_MQ_OPEN (line 239) | SYS_MQ_OPEN = 5230 constant SYS_MQ_UNLINK (line 240) | SYS_MQ_UNLINK = 5231 constant SYS_MQ_TIMEDSEND (line 241) | SYS_MQ_TIMEDSEND = 5232 constant SYS_MQ_TIMEDRECEIVE (line 242) | SYS_MQ_TIMEDRECEIVE = 5233 constant SYS_MQ_NOTIFY (line 243) | SYS_MQ_NOTIFY = 5234 constant SYS_MQ_GETSETATTR (line 244) | SYS_MQ_GETSETATTR = 5235 constant SYS_VSERVER (line 245) | SYS_VSERVER = 5236 constant SYS_WAITID (line 246) | SYS_WAITID = 5237 constant SYS_ADD_KEY (line 247) | SYS_ADD_KEY = 5239 constant SYS_REQUEST_KEY (line 248) | SYS_REQUEST_KEY = 5240 constant SYS_KEYCTL (line 249) | SYS_KEYCTL = 5241 constant SYS_SET_THREAD_AREA (line 250) | SYS_SET_THREAD_AREA = 5242 constant SYS_INOTIFY_INIT (line 251) | SYS_INOTIFY_INIT = 5243 constant SYS_INOTIFY_ADD_WATCH (line 252) | SYS_INOTIFY_ADD_WATCH = 5244 constant SYS_INOTIFY_RM_WATCH (line 253) | SYS_INOTIFY_RM_WATCH = 5245 constant SYS_MIGRATE_PAGES (line 254) | SYS_MIGRATE_PAGES = 5246 constant SYS_OPENAT (line 255) | SYS_OPENAT = 5247 constant SYS_MKDIRAT (line 256) | SYS_MKDIRAT = 5248 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 5249 constant SYS_FCHOWNAT (line 258) | SYS_FCHOWNAT = 5250 constant SYS_FUTIMESAT (line 259) | SYS_FUTIMESAT = 5251 constant SYS_NEWFSTATAT (line 260) | SYS_NEWFSTATAT = 5252 constant SYS_UNLINKAT (line 261) | SYS_UNLINKAT = 5253 constant SYS_RENAMEAT (line 262) | SYS_RENAMEAT = 5254 constant SYS_LINKAT (line 263) | SYS_LINKAT = 5255 constant SYS_SYMLINKAT (line 264) | SYS_SYMLINKAT = 5256 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 5257 constant SYS_FCHMODAT (line 266) | SYS_FCHMODAT = 5258 constant SYS_FACCESSAT (line 267) | SYS_FACCESSAT = 5259 constant SYS_PSELECT6 (line 268) | SYS_PSELECT6 = 5260 constant SYS_PPOLL (line 269) | SYS_PPOLL = 5261 constant SYS_UNSHARE (line 270) | SYS_UNSHARE = 5262 constant SYS_SPLICE (line 271) | SYS_SPLICE = 5263 constant SYS_SYNC_FILE_RANGE (line 272) | SYS_SYNC_FILE_RANGE = 5264 constant SYS_TEE (line 273) | SYS_TEE = 5265 constant SYS_VMSPLICE (line 274) | SYS_VMSPLICE = 5266 constant SYS_MOVE_PAGES (line 275) | SYS_MOVE_PAGES = 5267 constant SYS_SET_ROBUST_LIST (line 276) | SYS_SET_ROBUST_LIST = 5268 constant SYS_GET_ROBUST_LIST (line 277) | SYS_GET_ROBUST_LIST = 5269 constant SYS_KEXEC_LOAD (line 278) | SYS_KEXEC_LOAD = 5270 constant SYS_GETCPU (line 279) | SYS_GETCPU = 5271 constant SYS_EPOLL_PWAIT (line 280) | SYS_EPOLL_PWAIT = 5272 constant SYS_IOPRIO_SET (line 281) | SYS_IOPRIO_SET = 5273 constant SYS_IOPRIO_GET (line 282) | SYS_IOPRIO_GET = 5274 constant SYS_UTIMENSAT (line 283) | SYS_UTIMENSAT = 5275 constant SYS_SIGNALFD (line 284) | SYS_SIGNALFD = 5276 constant SYS_TIMERFD (line 285) | SYS_TIMERFD = 5277 constant SYS_EVENTFD (line 286) | SYS_EVENTFD = 5278 constant SYS_FALLOCATE (line 287) | SYS_FALLOCATE = 5279 constant SYS_TIMERFD_CREATE (line 288) | SYS_TIMERFD_CREATE = 5280 constant SYS_TIMERFD_GETTIME (line 289) | SYS_TIMERFD_GETTIME = 5281 constant SYS_TIMERFD_SETTIME (line 290) | SYS_TIMERFD_SETTIME = 5282 constant SYS_SIGNALFD4 (line 291) | SYS_SIGNALFD4 = 5283 constant SYS_EVENTFD2 (line 292) | SYS_EVENTFD2 = 5284 constant SYS_EPOLL_CREATE1 (line 293) | SYS_EPOLL_CREATE1 = 5285 constant SYS_DUP3 (line 294) | SYS_DUP3 = 5286 constant SYS_PIPE2 (line 295) | SYS_PIPE2 = 5287 constant SYS_INOTIFY_INIT1 (line 296) | SYS_INOTIFY_INIT1 = 5288 constant SYS_PREADV (line 297) | SYS_PREADV = 5289 constant SYS_PWRITEV (line 298) | SYS_PWRITEV = 5290 constant SYS_RT_TGSIGQUEUEINFO (line 299) | SYS_RT_TGSIGQUEUEINFO = 5291 constant SYS_PERF_EVENT_OPEN (line 300) | SYS_PERF_EVENT_OPEN = 5292 constant SYS_ACCEPT4 (line 301) | SYS_ACCEPT4 = 5293 constant SYS_RECVMMSG (line 302) | SYS_RECVMMSG = 5294 constant SYS_FANOTIFY_INIT (line 303) | SYS_FANOTIFY_INIT = 5295 constant SYS_FANOTIFY_MARK (line 304) | SYS_FANOTIFY_MARK = 5296 constant SYS_PRLIMIT64 (line 305) | SYS_PRLIMIT64 = 5297 constant SYS_NAME_TO_HANDLE_AT (line 306) | SYS_NAME_TO_HANDLE_AT = 5298 constant SYS_OPEN_BY_HANDLE_AT (line 307) | SYS_OPEN_BY_HANDLE_AT = 5299 constant SYS_CLOCK_ADJTIME (line 308) | SYS_CLOCK_ADJTIME = 5300 constant SYS_SYNCFS (line 309) | SYS_SYNCFS = 5301 constant SYS_SENDMMSG (line 310) | SYS_SENDMMSG = 5302 constant SYS_SETNS (line 311) | SYS_SETNS = 5303 constant SYS_PROCESS_VM_READV (line 312) | SYS_PROCESS_VM_READV = 5304 constant SYS_PROCESS_VM_WRITEV (line 313) | SYS_PROCESS_VM_WRITEV = 5305 constant SYS_KCMP (line 314) | SYS_KCMP = 5306 constant SYS_FINIT_MODULE (line 315) | SYS_FINIT_MODULE = 5307 constant SYS_GETDENTS64 (line 316) | SYS_GETDENTS64 = 5308 constant SYS_SCHED_SETATTR (line 317) | SYS_SCHED_SETATTR = 5309 constant SYS_SCHED_GETATTR (line 318) | SYS_SCHED_GETATTR = 5310 constant SYS_RENAMEAT2 (line 319) | SYS_RENAMEAT2 = 5311 constant SYS_SECCOMP (line 320) | SYS_SECCOMP = 5312 constant SYS_GETRANDOM (line 321) | SYS_GETRANDOM = 5313 constant SYS_MEMFD_CREATE (line 322) | SYS_MEMFD_CREATE = 5314 constant SYS_BPF (line 323) | SYS_BPF = 5315 constant SYS_EXECVEAT (line 324) | SYS_EXECVEAT = 5316 constant SYS_USERFAULTFD (line 325) | SYS_USERFAULTFD = 5317 constant SYS_MEMBARRIER (line 326) | SYS_MEMBARRIER = 5318 constant SYS_MLOCK2 (line 327) | SYS_MLOCK2 = 5319 constant SYS_COPY_FILE_RANGE (line 328) | SYS_COPY_FILE_RANGE = 5320 constant SYS_PREADV2 (line 329) | SYS_PREADV2 = 5321 constant SYS_PWRITEV2 (line 330) | SYS_PWRITEV2 = 5322 constant SYS_PKEY_MPROTECT (line 331) | SYS_PKEY_MPROTECT = 5323 constant SYS_PKEY_ALLOC (line 332) | SYS_PKEY_ALLOC = 5324 constant SYS_PKEY_FREE (line 333) | SYS_PKEY_FREE = 5325 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 4000 constant SYS_EXIT (line 10) | SYS_EXIT = 4001 constant SYS_FORK (line 11) | SYS_FORK = 4002 constant SYS_READ (line 12) | SYS_READ = 4003 constant SYS_WRITE (line 13) | SYS_WRITE = 4004 constant SYS_OPEN (line 14) | SYS_OPEN = 4005 constant SYS_CLOSE (line 15) | SYS_CLOSE = 4006 constant SYS_WAITPID (line 16) | SYS_WAITPID = 4007 constant SYS_CREAT (line 17) | SYS_CREAT = 4008 constant SYS_LINK (line 18) | SYS_LINK = 4009 constant SYS_UNLINK (line 19) | SYS_UNLINK = 4010 constant SYS_EXECVE (line 20) | SYS_EXECVE = 4011 constant SYS_CHDIR (line 21) | SYS_CHDIR = 4012 constant SYS_TIME (line 22) | SYS_TIME = 4013 constant SYS_MKNOD (line 23) | SYS_MKNOD = 4014 constant SYS_CHMOD (line 24) | SYS_CHMOD = 4015 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 4016 constant SYS_BREAK (line 26) | SYS_BREAK = 4017 constant SYS_UNUSED18 (line 27) | SYS_UNUSED18 = 4018 constant SYS_LSEEK (line 28) | SYS_LSEEK = 4019 constant SYS_GETPID (line 29) | SYS_GETPID = 4020 constant SYS_MOUNT (line 30) | SYS_MOUNT = 4021 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 4022 constant SYS_SETUID (line 32) | SYS_SETUID = 4023 constant SYS_GETUID (line 33) | SYS_GETUID = 4024 constant SYS_STIME (line 34) | SYS_STIME = 4025 constant SYS_PTRACE (line 35) | SYS_PTRACE = 4026 constant SYS_ALARM (line 36) | SYS_ALARM = 4027 constant SYS_UNUSED28 (line 37) | SYS_UNUSED28 = 4028 constant SYS_PAUSE (line 38) | SYS_PAUSE = 4029 constant SYS_UTIME (line 39) | SYS_UTIME = 4030 constant SYS_STTY (line 40) | SYS_STTY = 4031 constant SYS_GTTY (line 41) | SYS_GTTY = 4032 constant SYS_ACCESS (line 42) | SYS_ACCESS = 4033 constant SYS_NICE (line 43) | SYS_NICE = 4034 constant SYS_FTIME (line 44) | SYS_FTIME = 4035 constant SYS_SYNC (line 45) | SYS_SYNC = 4036 constant SYS_KILL (line 46) | SYS_KILL = 4037 constant SYS_RENAME (line 47) | SYS_RENAME = 4038 constant SYS_MKDIR (line 48) | SYS_MKDIR = 4039 constant SYS_RMDIR (line 49) | SYS_RMDIR = 4040 constant SYS_DUP (line 50) | SYS_DUP = 4041 constant SYS_PIPE (line 51) | SYS_PIPE = 4042 constant SYS_TIMES (line 52) | SYS_TIMES = 4043 constant SYS_PROF (line 53) | SYS_PROF = 4044 constant SYS_BRK (line 54) | SYS_BRK = 4045 constant SYS_SETGID (line 55) | SYS_SETGID = 4046 constant SYS_GETGID (line 56) | SYS_GETGID = 4047 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 4048 constant SYS_GETEUID (line 58) | SYS_GETEUID = 4049 constant SYS_GETEGID (line 59) | SYS_GETEGID = 4050 constant SYS_ACCT (line 60) | SYS_ACCT = 4051 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 4052 constant SYS_LOCK (line 62) | SYS_LOCK = 4053 constant SYS_IOCTL (line 63) | SYS_IOCTL = 4054 constant SYS_FCNTL (line 64) | SYS_FCNTL = 4055 constant SYS_MPX (line 65) | SYS_MPX = 4056 constant SYS_SETPGID (line 66) | SYS_SETPGID = 4057 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 4058 constant SYS_UNUSED59 (line 68) | SYS_UNUSED59 = 4059 constant SYS_UMASK (line 69) | SYS_UMASK = 4060 constant SYS_CHROOT (line 70) | SYS_CHROOT = 4061 constant SYS_USTAT (line 71) | SYS_USTAT = 4062 constant SYS_DUP2 (line 72) | SYS_DUP2 = 4063 constant SYS_GETPPID (line 73) | SYS_GETPPID = 4064 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 4065 constant SYS_SETSID (line 75) | SYS_SETSID = 4066 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 4067 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 4068 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 4069 constant SYS_SETREUID (line 79) | SYS_SETREUID = 4070 constant SYS_SETREGID (line 80) | SYS_SETREGID = 4071 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 4072 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 4073 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 4074 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 4075 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 4076 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 4077 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 4078 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 4079 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 4080 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 4081 constant SYS_RESERVED82 (line 91) | SYS_RESERVED82 = 4082 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 4083 constant SYS_UNUSED84 (line 93) | SYS_UNUSED84 = 4084 constant SYS_READLINK (line 94) | SYS_READLINK = 4085 constant SYS_USELIB (line 95) | SYS_USELIB = 4086 constant SYS_SWAPON (line 96) | SYS_SWAPON = 4087 constant SYS_REBOOT (line 97) | SYS_REBOOT = 4088 constant SYS_READDIR (line 98) | SYS_READDIR = 4089 constant SYS_MMAP (line 99) | SYS_MMAP = 4090 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 4091 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 4092 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 4093 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 4094 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 4095 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 4096 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 4097 constant SYS_PROFIL (line 107) | SYS_PROFIL = 4098 constant SYS_STATFS (line 108) | SYS_STATFS = 4099 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 4100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 4101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 4102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 4103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 4104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 4105 constant SYS_STAT (line 115) | SYS_STAT = 4106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 4107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 4108 constant SYS_UNUSED109 (line 118) | SYS_UNUSED109 = 4109 constant SYS_IOPL (line 119) | SYS_IOPL = 4110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 4111 constant SYS_IDLE (line 121) | SYS_IDLE = 4112 constant SYS_VM86 (line 122) | SYS_VM86 = 4113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 4114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 4115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 4116 constant SYS_IPC (line 126) | SYS_IPC = 4117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 4118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 4119 constant SYS_CLONE (line 129) | SYS_CLONE = 4120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 4121 constant SYS_UNAME (line 131) | SYS_UNAME = 4122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 4123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 4124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 4125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 4126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 4127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 4128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 4129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 4130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 4131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 4132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 4133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 4134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 4135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 4136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 4137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 4138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 4139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 4140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 4141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 4142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 4143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 4144 constant SYS_READV (line 154) | SYS_READV = 4145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 4146 constant SYS_CACHEFLUSH (line 156) | SYS_CACHEFLUSH = 4147 constant SYS_CACHECTL (line 157) | SYS_CACHECTL = 4148 constant SYS_SYSMIPS (line 158) | SYS_SYSMIPS = 4149 constant SYS_UNUSED150 (line 159) | SYS_UNUSED150 = 4150 constant SYS_GETSID (line 160) | SYS_GETSID = 4151 constant SYS_FDATASYNC (line 161) | SYS_FDATASYNC = 4152 constant SYS__SYSCTL (line 162) | SYS__SYSCTL = 4153 constant SYS_MLOCK (line 163) | SYS_MLOCK = 4154 constant SYS_MUNLOCK (line 164) | SYS_MUNLOCK = 4155 constant SYS_MLOCKALL (line 165) | SYS_MLOCKALL = 4156 constant SYS_MUNLOCKALL (line 166) | SYS_MUNLOCKALL = 4157 constant SYS_SCHED_SETPARAM (line 167) | SYS_SCHED_SETPARAM = 4158 constant SYS_SCHED_GETPARAM (line 168) | SYS_SCHED_GETPARAM = 4159 constant SYS_SCHED_SETSCHEDULER (line 169) | SYS_SCHED_SETSCHEDULER = 4160 constant SYS_SCHED_GETSCHEDULER (line 170) | SYS_SCHED_GETSCHEDULER = 4161 constant SYS_SCHED_YIELD (line 171) | SYS_SCHED_YIELD = 4162 constant SYS_SCHED_GET_PRIORITY_MAX (line 172) | SYS_SCHED_GET_PRIORITY_MAX = 4163 constant SYS_SCHED_GET_PRIORITY_MIN (line 173) | SYS_SCHED_GET_PRIORITY_MIN = 4164 constant SYS_SCHED_RR_GET_INTERVAL (line 174) | SYS_SCHED_RR_GET_INTERVAL = 4165 constant SYS_NANOSLEEP (line 175) | SYS_NANOSLEEP = 4166 constant SYS_MREMAP (line 176) | SYS_MREMAP = 4167 constant SYS_ACCEPT (line 177) | SYS_ACCEPT = 4168 constant SYS_BIND (line 178) | SYS_BIND = 4169 constant SYS_CONNECT (line 179) | SYS_CONNECT = 4170 constant SYS_GETPEERNAME (line 180) | SYS_GETPEERNAME = 4171 constant SYS_GETSOCKNAME (line 181) | SYS_GETSOCKNAME = 4172 constant SYS_GETSOCKOPT (line 182) | SYS_GETSOCKOPT = 4173 constant SYS_LISTEN (line 183) | SYS_LISTEN = 4174 constant SYS_RECV (line 184) | SYS_RECV = 4175 constant SYS_RECVFROM (line 185) | SYS_RECVFROM = 4176 constant SYS_RECVMSG (line 186) | SYS_RECVMSG = 4177 constant SYS_SEND (line 187) | SYS_SEND = 4178 constant SYS_SENDMSG (line 188) | SYS_SENDMSG = 4179 constant SYS_SENDTO (line 189) | SYS_SENDTO = 4180 constant SYS_SETSOCKOPT (line 190) | SYS_SETSOCKOPT = 4181 constant SYS_SHUTDOWN (line 191) | SYS_SHUTDOWN = 4182 constant SYS_SOCKET (line 192) | SYS_SOCKET = 4183 constant SYS_SOCKETPAIR (line 193) | SYS_SOCKETPAIR = 4184 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 4185 constant SYS_GETRESUID (line 195) | SYS_GETRESUID = 4186 constant SYS_QUERY_MODULE (line 196) | SYS_QUERY_MODULE = 4187 constant SYS_POLL (line 197) | SYS_POLL = 4188 constant SYS_NFSSERVCTL (line 198) | SYS_NFSSERVCTL = 4189 constant SYS_SETRESGID (line 199) | SYS_SETRESGID = 4190 constant SYS_GETRESGID (line 200) | SYS_GETRESGID = 4191 constant SYS_PRCTL (line 201) | SYS_PRCTL = 4192 constant SYS_RT_SIGRETURN (line 202) | SYS_RT_SIGRETURN = 4193 constant SYS_RT_SIGACTION (line 203) | SYS_RT_SIGACTION = 4194 constant SYS_RT_SIGPROCMASK (line 204) | SYS_RT_SIGPROCMASK = 4195 constant SYS_RT_SIGPENDING (line 205) | SYS_RT_SIGPENDING = 4196 constant SYS_RT_SIGTIMEDWAIT (line 206) | SYS_RT_SIGTIMEDWAIT = 4197 constant SYS_RT_SIGQUEUEINFO (line 207) | SYS_RT_SIGQUEUEINFO = 4198 constant SYS_RT_SIGSUSPEND (line 208) | SYS_RT_SIGSUSPEND = 4199 constant SYS_PREAD64 (line 209) | SYS_PREAD64 = 4200 constant SYS_PWRITE64 (line 210) | SYS_PWRITE64 = 4201 constant SYS_CHOWN (line 211) | SYS_CHOWN = 4202 constant SYS_GETCWD (line 212) | SYS_GETCWD = 4203 constant SYS_CAPGET (line 213) | SYS_CAPGET = 4204 constant SYS_CAPSET (line 214) | SYS_CAPSET = 4205 constant SYS_SIGALTSTACK (line 215) | SYS_SIGALTSTACK = 4206 constant SYS_SENDFILE (line 216) | SYS_SENDFILE = 4207 constant SYS_GETPMSG (line 217) | SYS_GETPMSG = 4208 constant SYS_PUTPMSG (line 218) | SYS_PUTPMSG = 4209 constant SYS_MMAP2 (line 219) | SYS_MMAP2 = 4210 constant SYS_TRUNCATE64 (line 220) | SYS_TRUNCATE64 = 4211 constant SYS_FTRUNCATE64 (line 221) | SYS_FTRUNCATE64 = 4212 constant SYS_STAT64 (line 222) | SYS_STAT64 = 4213 constant SYS_LSTAT64 (line 223) | SYS_LSTAT64 = 4214 constant SYS_FSTAT64 (line 224) | SYS_FSTAT64 = 4215 constant SYS_PIVOT_ROOT (line 225) | SYS_PIVOT_ROOT = 4216 constant SYS_MINCORE (line 226) | SYS_MINCORE = 4217 constant SYS_MADVISE (line 227) | SYS_MADVISE = 4218 constant SYS_GETDENTS64 (line 228) | SYS_GETDENTS64 = 4219 constant SYS_FCNTL64 (line 229) | SYS_FCNTL64 = 4220 constant SYS_RESERVED221 (line 230) | SYS_RESERVED221 = 4221 constant SYS_GETTID (line 231) | SYS_GETTID = 4222 constant SYS_READAHEAD (line 232) | SYS_READAHEAD = 4223 constant SYS_SETXATTR (line 233) | SYS_SETXATTR = 4224 constant SYS_LSETXATTR (line 234) | SYS_LSETXATTR = 4225 constant SYS_FSETXATTR (line 235) | SYS_FSETXATTR = 4226 constant SYS_GETXATTR (line 236) | SYS_GETXATTR = 4227 constant SYS_LGETXATTR (line 237) | SYS_LGETXATTR = 4228 constant SYS_FGETXATTR (line 238) | SYS_FGETXATTR = 4229 constant SYS_LISTXATTR (line 239) | SYS_LISTXATTR = 4230 constant SYS_LLISTXATTR (line 240) | SYS_LLISTXATTR = 4231 constant SYS_FLISTXATTR (line 241) | SYS_FLISTXATTR = 4232 constant SYS_REMOVEXATTR (line 242) | SYS_REMOVEXATTR = 4233 constant SYS_LREMOVEXATTR (line 243) | SYS_LREMOVEXATTR = 4234 constant SYS_FREMOVEXATTR (line 244) | SYS_FREMOVEXATTR = 4235 constant SYS_TKILL (line 245) | SYS_TKILL = 4236 constant SYS_SENDFILE64 (line 246) | SYS_SENDFILE64 = 4237 constant SYS_FUTEX (line 247) | SYS_FUTEX = 4238 constant SYS_SCHED_SETAFFINITY (line 248) | SYS_SCHED_SETAFFINITY = 4239 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 4240 constant SYS_IO_SETUP (line 250) | SYS_IO_SETUP = 4241 constant SYS_IO_DESTROY (line 251) | SYS_IO_DESTROY = 4242 constant SYS_IO_GETEVENTS (line 252) | SYS_IO_GETEVENTS = 4243 constant SYS_IO_SUBMIT (line 253) | SYS_IO_SUBMIT = 4244 constant SYS_IO_CANCEL (line 254) | SYS_IO_CANCEL = 4245 constant SYS_EXIT_GROUP (line 255) | SYS_EXIT_GROUP = 4246 constant SYS_LOOKUP_DCOOKIE (line 256) | SYS_LOOKUP_DCOOKIE = 4247 constant SYS_EPOLL_CREATE (line 257) | SYS_EPOLL_CREATE = 4248 constant SYS_EPOLL_CTL (line 258) | SYS_EPOLL_CTL = 4249 constant SYS_EPOLL_WAIT (line 259) | SYS_EPOLL_WAIT = 4250 constant SYS_REMAP_FILE_PAGES (line 260) | SYS_REMAP_FILE_PAGES = 4251 constant SYS_SET_TID_ADDRESS (line 261) | SYS_SET_TID_ADDRESS = 4252 constant SYS_RESTART_SYSCALL (line 262) | SYS_RESTART_SYSCALL = 4253 constant SYS_FADVISE64 (line 263) | SYS_FADVISE64 = 4254 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 4255 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 4256 constant SYS_TIMER_CREATE (line 266) | SYS_TIMER_CREATE = 4257 constant SYS_TIMER_SETTIME (line 267) | SYS_TIMER_SETTIME = 4258 constant SYS_TIMER_GETTIME (line 268) | SYS_TIMER_GETTIME = 4259 constant SYS_TIMER_GETOVERRUN (line 269) | SYS_TIMER_GETOVERRUN = 4260 constant SYS_TIMER_DELETE (line 270) | SYS_TIMER_DELETE = 4261 constant SYS_CLOCK_SETTIME (line 271) | SYS_CLOCK_SETTIME = 4262 constant SYS_CLOCK_GETTIME (line 272) | SYS_CLOCK_GETTIME = 4263 constant SYS_CLOCK_GETRES (line 273) | SYS_CLOCK_GETRES = 4264 constant SYS_CLOCK_NANOSLEEP (line 274) | SYS_CLOCK_NANOSLEEP = 4265 constant SYS_TGKILL (line 275) | SYS_TGKILL = 4266 constant SYS_UTIMES (line 276) | SYS_UTIMES = 4267 constant SYS_MBIND (line 277) | SYS_MBIND = 4268 constant SYS_GET_MEMPOLICY (line 278) | SYS_GET_MEMPOLICY = 4269 constant SYS_SET_MEMPOLICY (line 279) | SYS_SET_MEMPOLICY = 4270 constant SYS_MQ_OPEN (line 280) | SYS_MQ_OPEN = 4271 constant SYS_MQ_UNLINK (line 281) | SYS_MQ_UNLINK = 4272 constant SYS_MQ_TIMEDSEND (line 282) | SYS_MQ_TIMEDSEND = 4273 constant SYS_MQ_TIMEDRECEIVE (line 283) | SYS_MQ_TIMEDRECEIVE = 4274 constant SYS_MQ_NOTIFY (line 284) | SYS_MQ_NOTIFY = 4275 constant SYS_MQ_GETSETATTR (line 285) | SYS_MQ_GETSETATTR = 4276 constant SYS_VSERVER (line 286) | SYS_VSERVER = 4277 constant SYS_WAITID (line 287) | SYS_WAITID = 4278 constant SYS_ADD_KEY (line 288) | SYS_ADD_KEY = 4280 constant SYS_REQUEST_KEY (line 289) | SYS_REQUEST_KEY = 4281 constant SYS_KEYCTL (line 290) | SYS_KEYCTL = 4282 constant SYS_SET_THREAD_AREA (line 291) | SYS_SET_THREAD_AREA = 4283 constant SYS_INOTIFY_INIT (line 292) | SYS_INOTIFY_INIT = 4284 constant SYS_INOTIFY_ADD_WATCH (line 293) | SYS_INOTIFY_ADD_WATCH = 4285 constant SYS_INOTIFY_RM_WATCH (line 294) | SYS_INOTIFY_RM_WATCH = 4286 constant SYS_MIGRATE_PAGES (line 295) | SYS_MIGRATE_PAGES = 4287 constant SYS_OPENAT (line 296) | SYS_OPENAT = 4288 constant SYS_MKDIRAT (line 297) | SYS_MKDIRAT = 4289 constant SYS_MKNODAT (line 298) | SYS_MKNODAT = 4290 constant SYS_FCHOWNAT (line 299) | SYS_FCHOWNAT = 4291 constant SYS_FUTIMESAT (line 300) | SYS_FUTIMESAT = 4292 constant SYS_FSTATAT64 (line 301) | SYS_FSTATAT64 = 4293 constant SYS_UNLINKAT (line 302) | SYS_UNLINKAT = 4294 constant SYS_RENAMEAT (line 303) | SYS_RENAMEAT = 4295 constant SYS_LINKAT (line 304) | SYS_LINKAT = 4296 constant SYS_SYMLINKAT (line 305) | SYS_SYMLINKAT = 4297 constant SYS_READLINKAT (line 306) | SYS_READLINKAT = 4298 constant SYS_FCHMODAT (line 307) | SYS_FCHMODAT = 4299 constant SYS_FACCESSAT (line 308) | SYS_FACCESSAT = 4300 constant SYS_PSELECT6 (line 309) | SYS_PSELECT6 = 4301 constant SYS_PPOLL (line 310) | SYS_PPOLL = 4302 constant SYS_UNSHARE (line 311) | SYS_UNSHARE = 4303 constant SYS_SPLICE (line 312) | SYS_SPLICE = 4304 constant SYS_SYNC_FILE_RANGE (line 313) | SYS_SYNC_FILE_RANGE = 4305 constant SYS_TEE (line 314) | SYS_TEE = 4306 constant SYS_VMSPLICE (line 315) | SYS_VMSPLICE = 4307 constant SYS_MOVE_PAGES (line 316) | SYS_MOVE_PAGES = 4308 constant SYS_SET_ROBUST_LIST (line 317) | SYS_SET_ROBUST_LIST = 4309 constant SYS_GET_ROBUST_LIST (line 318) | SYS_GET_ROBUST_LIST = 4310 constant SYS_KEXEC_LOAD (line 319) | SYS_KEXEC_LOAD = 4311 constant SYS_GETCPU (line 320) | SYS_GETCPU = 4312 constant SYS_EPOLL_PWAIT (line 321) | SYS_EPOLL_PWAIT = 4313 constant SYS_IOPRIO_SET (line 322) | SYS_IOPRIO_SET = 4314 constant SYS_IOPRIO_GET (line 323) | SYS_IOPRIO_GET = 4315 constant SYS_UTIMENSAT (line 324) | SYS_UTIMENSAT = 4316 constant SYS_SIGNALFD (line 325) | SYS_SIGNALFD = 4317 constant SYS_TIMERFD (line 326) | SYS_TIMERFD = 4318 constant SYS_EVENTFD (line 327) | SYS_EVENTFD = 4319 constant SYS_FALLOCATE (line 328) | SYS_FALLOCATE = 4320 constant SYS_TIMERFD_CREATE (line 329) | SYS_TIMERFD_CREATE = 4321 constant SYS_TIMERFD_GETTIME (line 330) | SYS_TIMERFD_GETTIME = 4322 constant SYS_TIMERFD_SETTIME (line 331) | SYS_TIMERFD_SETTIME = 4323 constant SYS_SIGNALFD4 (line 332) | SYS_SIGNALFD4 = 4324 constant SYS_EVENTFD2 (line 333) | SYS_EVENTFD2 = 4325 constant SYS_EPOLL_CREATE1 (line 334) | SYS_EPOLL_CREATE1 = 4326 constant SYS_DUP3 (line 335) | SYS_DUP3 = 4327 constant SYS_PIPE2 (line 336) | SYS_PIPE2 = 4328 constant SYS_INOTIFY_INIT1 (line 337) | SYS_INOTIFY_INIT1 = 4329 constant SYS_PREADV (line 338) | SYS_PREADV = 4330 constant SYS_PWRITEV (line 339) | SYS_PWRITEV = 4331 constant SYS_RT_TGSIGQUEUEINFO (line 340) | SYS_RT_TGSIGQUEUEINFO = 4332 constant SYS_PERF_EVENT_OPEN (line 341) | SYS_PERF_EVENT_OPEN = 4333 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 4334 constant SYS_RECVMMSG (line 343) | SYS_RECVMMSG = 4335 constant SYS_FANOTIFY_INIT (line 344) | SYS_FANOTIFY_INIT = 4336 constant SYS_FANOTIFY_MARK (line 345) | SYS_FANOTIFY_MARK = 4337 constant SYS_PRLIMIT64 (line 346) | SYS_PRLIMIT64 = 4338 constant SYS_NAME_TO_HANDLE_AT (line 347) | SYS_NAME_TO_HANDLE_AT = 4339 constant SYS_OPEN_BY_HANDLE_AT (line 348) | SYS_OPEN_BY_HANDLE_AT = 4340 constant SYS_CLOCK_ADJTIME (line 349) | SYS_CLOCK_ADJTIME = 4341 constant SYS_SYNCFS (line 350) | SYS_SYNCFS = 4342 constant SYS_SENDMMSG (line 351) | SYS_SENDMMSG = 4343 constant SYS_SETNS (line 352) | SYS_SETNS = 4344 constant SYS_PROCESS_VM_READV (line 353) | SYS_PROCESS_VM_READV = 4345 constant SYS_PROCESS_VM_WRITEV (line 354) | SYS_PROCESS_VM_WRITEV = 4346 constant SYS_KCMP (line 355) | SYS_KCMP = 4347 constant SYS_FINIT_MODULE (line 356) | SYS_FINIT_MODULE = 4348 constant SYS_SCHED_SETATTR (line 357) | SYS_SCHED_SETATTR = 4349 constant SYS_SCHED_GETATTR (line 358) | SYS_SCHED_GETATTR = 4350 constant SYS_RENAMEAT2 (line 359) | SYS_RENAMEAT2 = 4351 constant SYS_SECCOMP (line 360) | SYS_SECCOMP = 4352 constant SYS_GETRANDOM (line 361) | SYS_GETRANDOM = 4353 constant SYS_MEMFD_CREATE (line 362) | SYS_MEMFD_CREATE = 4354 constant SYS_BPF (line 363) | SYS_BPF = 4355 constant SYS_EXECVEAT (line 364) | SYS_EXECVEAT = 4356 constant SYS_USERFAULTFD (line 365) | SYS_USERFAULTFD = 4357 constant SYS_MEMBARRIER (line 366) | SYS_MEMBARRIER = 4358 constant SYS_MLOCK2 (line 367) | SYS_MLOCK2 = 4359 constant SYS_COPY_FILE_RANGE (line 368) | SYS_COPY_FILE_RANGE = 4360 constant SYS_PREADV2 (line 369) | SYS_PREADV2 = 4361 constant SYS_PWRITEV2 (line 370) | SYS_PWRITEV2 = 4362 constant SYS_PKEY_MPROTECT (line 371) | SYS_PKEY_MPROTECT = 4363 constant SYS_PKEY_ALLOC (line 372) | SYS_PKEY_ALLOC = 4364 constant SYS_PKEY_FREE (line 373) | SYS_PKEY_FREE = 4365 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAITPID (line 16) | SYS_WAITPID = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECVE (line 20) | SYS_EXECVE = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_TIME (line 22) | SYS_TIME = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BREAK (line 26) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 27) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_STIME (line 34) | SYS_STIME = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 37) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_STTY (line 40) | SYS_STTY = 31 constant SYS_GTTY (line 41) | SYS_GTTY = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_NICE (line 43) | SYS_NICE = 34 constant SYS_FTIME (line 44) | SYS_FTIME = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_KILL (line 46) | SYS_KILL = 37 constant SYS_RENAME (line 47) | SYS_RENAME = 38 constant SYS_MKDIR (line 48) | SYS_MKDIR = 39 constant SYS_RMDIR (line 49) | SYS_RMDIR = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_PIPE (line 51) | SYS_PIPE = 42 constant SYS_TIMES (line 52) | SYS_TIMES = 43 constant SYS_PROF (line 53) | SYS_PROF = 44 constant SYS_BRK (line 54) | SYS_BRK = 45 constant SYS_SETGID (line 55) | SYS_SETGID = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 58) | SYS_GETEUID = 49 constant SYS_GETEGID (line 59) | SYS_GETEGID = 50 constant SYS_ACCT (line 60) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 62) | SYS_LOCK = 53 constant SYS_IOCTL (line 63) | SYS_IOCTL = 54 constant SYS_FCNTL (line 64) | SYS_FCNTL = 55 constant SYS_MPX (line 65) | SYS_MPX = 56 constant SYS_SETPGID (line 66) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 68) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 69) | SYS_UMASK = 60 constant SYS_CHROOT (line 70) | SYS_CHROOT = 61 constant SYS_USTAT (line 71) | SYS_USTAT = 62 constant SYS_DUP2 (line 72) | SYS_DUP2 = 63 constant SYS_GETPPID (line 73) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 65 constant SYS_SETSID (line 75) | SYS_SETSID = 66 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 79) | SYS_SETREUID = 70 constant SYS_SETREGID (line 80) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 91) | SYS_SELECT = 82 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 93) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 94) | SYS_READLINK = 85 constant SYS_USELIB (line 95) | SYS_USELIB = 86 constant SYS_SWAPON (line 96) | SYS_SWAPON = 87 constant SYS_REBOOT (line 97) | SYS_REBOOT = 88 constant SYS_READDIR (line 98) | SYS_READDIR = 89 constant SYS_MMAP (line 99) | SYS_MMAP = 90 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 107) | SYS_PROFIL = 98 constant SYS_STATFS (line 108) | SYS_STATFS = 99 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 105 constant SYS_STAT (line 115) | SYS_STAT = 106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 118) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 119) | SYS_IOPL = 110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 111 constant SYS_IDLE (line 121) | SYS_IDLE = 112 constant SYS_VM86 (line 122) | SYS_VM86 = 113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 116 constant SYS_IPC (line 126) | SYS_IPC = 117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 129) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 131) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 144 constant SYS_READV (line 154) | SYS_READV = 145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 146 constant SYS_GETSID (line 156) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 157) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 158) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 159) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 163) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 164) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 165) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 166) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 167) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 168) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 169) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 170) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 171) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 172) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 173) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 174) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 175) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 176) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 177) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 178) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 179) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 180) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 181) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 182) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 183) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 184) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 185) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 186) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 187) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 188) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 189) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 190) | SYS_CHOWN = 181 constant SYS_GETCWD (line 191) | SYS_GETCWD = 182 constant SYS_CAPGET (line 192) | SYS_CAPGET = 183 constant SYS_CAPSET (line 193) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 194) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 195) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 196) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 197) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 198) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 199) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 200) | SYS_READAHEAD = 191 constant SYS_PCICONFIG_READ (line 201) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 202) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 203) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 204) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 205) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 206) | SYS_PIVOT_ROOT = 203 constant SYS_MADVISE (line 207) | SYS_MADVISE = 205 constant SYS_MINCORE (line 208) | SYS_MINCORE = 206 constant SYS_GETTID (line 209) | SYS_GETTID = 207 constant SYS_TKILL (line 210) | SYS_TKILL = 208 constant SYS_SETXATTR (line 211) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 212) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 213) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 214) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 215) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 216) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 217) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 218) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 219) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 220) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 221) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 222) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 223) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 224) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 225) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 226) | SYS_TUXCALL = 225 constant SYS_IO_SETUP (line 227) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 228) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 229) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 230) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 231) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 232) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 233) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 234) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 235) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 236) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 237) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 238) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 239) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 240) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 241) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 242) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 243) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 244) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 245) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 246) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 247) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 248) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 249) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 250) | SYS_TGKILL = 250 constant SYS_UTIMES (line 251) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 252) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 253) | SYS_FSTATFS64 = 253 constant SYS_RTAS (line 254) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 255) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 256) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 257) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 258) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 259) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 260) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 261) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 262) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 263) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 264) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 265) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 266) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 267) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 268) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 269) | SYS_KEYCTL = 271 constant SYS_WAITID (line 270) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 271) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 272) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 273) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 274) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 275) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 276) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 277) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 278) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 279) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 280) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 281) | SYS_SPLICE = 283 constant SYS_TEE (line 282) | SYS_TEE = 284 constant SYS_VMSPLICE (line 283) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 284) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 285) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 286) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 287) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 288) | SYS_FUTIMESAT = 290 constant SYS_NEWFSTATAT (line 289) | SYS_NEWFSTATAT = 291 constant SYS_UNLINKAT (line 290) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 291) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 292) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 293) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 294) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 295) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 296) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 297) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 298) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 299) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 300) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 301) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 302) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 303) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 304) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 305) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 306) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 307) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 308) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 309) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 310) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 311) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 312) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 313) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 314) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 315) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 316) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 317) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 318) | SYS_PREADV = 320 constant SYS_PWRITEV (line 319) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 320) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 321) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 322) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 323) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 324) | SYS_SOCKET = 326 constant SYS_BIND (line 325) | SYS_BIND = 327 constant SYS_CONNECT (line 326) | SYS_CONNECT = 328 constant SYS_LISTEN (line 327) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 328) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 329) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 330) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 331) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 332) | SYS_SEND = 334 constant SYS_SENDTO (line 333) | SYS_SENDTO = 335 constant SYS_RECV (line 334) | SYS_RECV = 336 constant SYS_RECVFROM (line 335) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 336) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 337) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 338) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 339) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 340) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 341) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 343) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 344) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 345) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 346) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 347) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 348) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 349) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 350) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 351) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 352) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 353) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 354) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 355) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 356) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 357) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 358) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 359) | SYS_BPF = 361 constant SYS_EXECVEAT (line 360) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 361) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 362) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 363) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 364) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 365) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 366) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 367) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 368) | SYS_KEXEC_FILE_LOAD = 382 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAITPID (line 16) | SYS_WAITPID = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECVE (line 20) | SYS_EXECVE = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_TIME (line 22) | SYS_TIME = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BREAK (line 26) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 27) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_STIME (line 34) | SYS_STIME = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 37) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_STTY (line 40) | SYS_STTY = 31 constant SYS_GTTY (line 41) | SYS_GTTY = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_NICE (line 43) | SYS_NICE = 34 constant SYS_FTIME (line 44) | SYS_FTIME = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_KILL (line 46) | SYS_KILL = 37 constant SYS_RENAME (line 47) | SYS_RENAME = 38 constant SYS_MKDIR (line 48) | SYS_MKDIR = 39 constant SYS_RMDIR (line 49) | SYS_RMDIR = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_PIPE (line 51) | SYS_PIPE = 42 constant SYS_TIMES (line 52) | SYS_TIMES = 43 constant SYS_PROF (line 53) | SYS_PROF = 44 constant SYS_BRK (line 54) | SYS_BRK = 45 constant SYS_SETGID (line 55) | SYS_SETGID = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 58) | SYS_GETEUID = 49 constant SYS_GETEGID (line 59) | SYS_GETEGID = 50 constant SYS_ACCT (line 60) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 62) | SYS_LOCK = 53 constant SYS_IOCTL (line 63) | SYS_IOCTL = 54 constant SYS_FCNTL (line 64) | SYS_FCNTL = 55 constant SYS_MPX (line 65) | SYS_MPX = 56 constant SYS_SETPGID (line 66) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 68) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 69) | SYS_UMASK = 60 constant SYS_CHROOT (line 70) | SYS_CHROOT = 61 constant SYS_USTAT (line 71) | SYS_USTAT = 62 constant SYS_DUP2 (line 72) | SYS_DUP2 = 63 constant SYS_GETPPID (line 73) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 65 constant SYS_SETSID (line 75) | SYS_SETSID = 66 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 79) | SYS_SETREUID = 70 constant SYS_SETREGID (line 80) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 91) | SYS_SELECT = 82 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 93) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 94) | SYS_READLINK = 85 constant SYS_USELIB (line 95) | SYS_USELIB = 86 constant SYS_SWAPON (line 96) | SYS_SWAPON = 87 constant SYS_REBOOT (line 97) | SYS_REBOOT = 88 constant SYS_READDIR (line 98) | SYS_READDIR = 89 constant SYS_MMAP (line 99) | SYS_MMAP = 90 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 107) | SYS_PROFIL = 98 constant SYS_STATFS (line 108) | SYS_STATFS = 99 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 105 constant SYS_STAT (line 115) | SYS_STAT = 106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 118) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 119) | SYS_IOPL = 110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 111 constant SYS_IDLE (line 121) | SYS_IDLE = 112 constant SYS_VM86 (line 122) | SYS_VM86 = 113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 116 constant SYS_IPC (line 126) | SYS_IPC = 117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 129) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 131) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 144 constant SYS_READV (line 154) | SYS_READV = 145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 146 constant SYS_GETSID (line 156) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 157) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 158) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 159) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 163) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 164) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 165) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 166) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 167) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 168) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 169) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 170) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 171) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 172) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 173) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 174) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 175) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 176) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 177) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 178) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 179) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 180) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 181) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 182) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 183) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 184) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 185) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 186) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 187) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 188) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 189) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 190) | SYS_CHOWN = 181 constant SYS_GETCWD (line 191) | SYS_GETCWD = 182 constant SYS_CAPGET (line 192) | SYS_CAPGET = 183 constant SYS_CAPSET (line 193) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 194) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 195) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 196) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 197) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 198) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 199) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 200) | SYS_READAHEAD = 191 constant SYS_PCICONFIG_READ (line 201) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 202) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 203) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 204) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 205) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 206) | SYS_PIVOT_ROOT = 203 constant SYS_MADVISE (line 207) | SYS_MADVISE = 205 constant SYS_MINCORE (line 208) | SYS_MINCORE = 206 constant SYS_GETTID (line 209) | SYS_GETTID = 207 constant SYS_TKILL (line 210) | SYS_TKILL = 208 constant SYS_SETXATTR (line 211) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 212) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 213) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 214) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 215) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 216) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 217) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 218) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 219) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 220) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 221) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 222) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 223) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 224) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 225) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 226) | SYS_TUXCALL = 225 constant SYS_IO_SETUP (line 227) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 228) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 229) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 230) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 231) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 232) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 233) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 234) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 235) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 236) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 237) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 238) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 239) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 240) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 241) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 242) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 243) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 244) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 245) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 246) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 247) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 248) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 249) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 250) | SYS_TGKILL = 250 constant SYS_UTIMES (line 251) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 252) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 253) | SYS_FSTATFS64 = 253 constant SYS_RTAS (line 254) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 255) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 256) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 257) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 258) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 259) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 260) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 261) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 262) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 263) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 264) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 265) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 266) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 267) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 268) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 269) | SYS_KEYCTL = 271 constant SYS_WAITID (line 270) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 271) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 272) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 273) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 274) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 275) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 276) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 277) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 278) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 279) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 280) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 281) | SYS_SPLICE = 283 constant SYS_TEE (line 282) | SYS_TEE = 284 constant SYS_VMSPLICE (line 283) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 284) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 285) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 286) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 287) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 288) | SYS_FUTIMESAT = 290 constant SYS_NEWFSTATAT (line 289) | SYS_NEWFSTATAT = 291 constant SYS_UNLINKAT (line 290) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 291) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 292) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 293) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 294) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 295) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 296) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 297) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 298) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 299) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 300) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 301) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 302) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 303) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 304) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 305) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 306) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 307) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 308) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 309) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 310) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 311) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 312) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 313) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 314) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 315) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 316) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 317) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 318) | SYS_PREADV = 320 constant SYS_PWRITEV (line 319) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 320) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 321) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 322) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 323) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 324) | SYS_SOCKET = 326 constant SYS_BIND (line 325) | SYS_BIND = 327 constant SYS_CONNECT (line 326) | SYS_CONNECT = 328 constant SYS_LISTEN (line 327) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 328) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 329) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 330) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 331) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 332) | SYS_SEND = 334 constant SYS_SENDTO (line 333) | SYS_SENDTO = 335 constant SYS_RECV (line 334) | SYS_RECV = 336 constant SYS_RECVFROM (line 335) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 336) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 337) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 338) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 339) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 340) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 341) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 343) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 344) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 345) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 346) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 347) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 348) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 349) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 350) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 351) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 352) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 353) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 354) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 355) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 356) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 357) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 358) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 359) | SYS_BPF = 361 constant SYS_EXECVEAT (line 360) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 361) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 362) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 363) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 364) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 365) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 366) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 367) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 368) | SYS_KEXEC_FILE_LOAD = 382 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_RESTART_SYSCALL (line 15) | SYS_RESTART_SYSCALL = 7 constant SYS_CREAT (line 16) | SYS_CREAT = 8 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_EXECVE (line 19) | SYS_EXECVE = 11 constant SYS_CHDIR (line 20) | SYS_CHDIR = 12 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_LSEEK (line 23) | SYS_LSEEK = 19 constant SYS_GETPID (line 24) | SYS_GETPID = 20 constant SYS_MOUNT (line 25) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 26) | SYS_UMOUNT = 22 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_ALARM (line 28) | SYS_ALARM = 27 constant SYS_PAUSE (line 29) | SYS_PAUSE = 29 constant SYS_UTIME (line 30) | SYS_UTIME = 30 constant SYS_ACCESS (line 31) | SYS_ACCESS = 33 constant SYS_NICE (line 32) | SYS_NICE = 34 constant SYS_SYNC (line 33) | SYS_SYNC = 36 constant SYS_KILL (line 34) | SYS_KILL = 37 constant SYS_RENAME (line 35) | SYS_RENAME = 38 constant SYS_MKDIR (line 36) | SYS_MKDIR = 39 constant SYS_RMDIR (line 37) | SYS_RMDIR = 40 constant SYS_DUP (line 38) | SYS_DUP = 41 constant SYS_PIPE (line 39) | SYS_PIPE = 42 constant SYS_TIMES (line 40) | SYS_TIMES = 43 constant SYS_BRK (line 41) | SYS_BRK = 45 constant SYS_SIGNAL (line 42) | SYS_SIGNAL = 48 constant SYS_ACCT (line 43) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 44) | SYS_UMOUNT2 = 52 constant SYS_IOCTL (line 45) | SYS_IOCTL = 54 constant SYS_FCNTL (line 46) | SYS_FCNTL = 55 constant SYS_SETPGID (line 47) | SYS_SETPGID = 57 constant SYS_UMASK (line 48) | SYS_UMASK = 60 constant SYS_CHROOT (line 49) | SYS_CHROOT = 61 constant SYS_USTAT (line 50) | SYS_USTAT = 62 constant SYS_DUP2 (line 51) | SYS_DUP2 = 63 constant SYS_GETPPID (line 52) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 53) | SYS_GETPGRP = 65 constant SYS_SETSID (line 54) | SYS_SETSID = 66 constant SYS_SIGACTION (line 55) | SYS_SIGACTION = 67 constant SYS_SIGSUSPEND (line 56) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 57) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 58) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 59) | SYS_SETRLIMIT = 75 constant SYS_GETRUSAGE (line 60) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 61) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 62) | SYS_SETTIMEOFDAY = 79 constant SYS_SYMLINK (line 63) | SYS_SYMLINK = 83 constant SYS_READLINK (line 64) | SYS_READLINK = 85 constant SYS_USELIB (line 65) | SYS_USELIB = 86 constant SYS_SWAPON (line 66) | SYS_SWAPON = 87 constant SYS_REBOOT (line 67) | SYS_REBOOT = 88 constant SYS_READDIR (line 68) | SYS_READDIR = 89 constant SYS_MMAP (line 69) | SYS_MMAP = 90 constant SYS_MUNMAP (line 70) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 71) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 72) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 73) | SYS_FCHMOD = 94 constant SYS_GETPRIORITY (line 74) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 75) | SYS_SETPRIORITY = 97 constant SYS_STATFS (line 76) | SYS_STATFS = 99 constant SYS_FSTATFS (line 77) | SYS_FSTATFS = 100 constant SYS_SOCKETCALL (line 78) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 79) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 80) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 81) | SYS_GETITIMER = 105 constant SYS_STAT (line 82) | SYS_STAT = 106 constant SYS_LSTAT (line 83) | SYS_LSTAT = 107 constant SYS_FSTAT (line 84) | SYS_FSTAT = 108 constant SYS_LOOKUP_DCOOKIE (line 85) | SYS_LOOKUP_DCOOKIE = 110 constant SYS_VHANGUP (line 86) | SYS_VHANGUP = 111 constant SYS_IDLE (line 87) | SYS_IDLE = 112 constant SYS_WAIT4 (line 88) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 89) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 90) | SYS_SYSINFO = 116 constant SYS_IPC (line 91) | SYS_IPC = 117 constant SYS_FSYNC (line 92) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 93) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 94) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 95) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 96) | SYS_UNAME = 122 constant SYS_ADJTIMEX (line 97) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 98) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 99) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 100) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 101) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 102) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 103) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 104) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 105) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 106) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 107) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 108) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 109) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 110) | SYS_AFS_SYSCALL = 137 constant SYS_GETDENTS (line 111) | SYS_GETDENTS = 141 constant SYS_FLOCK (line 112) | SYS_FLOCK = 143 constant SYS_MSYNC (line 113) | SYS_MSYNC = 144 constant SYS_READV (line 114) | SYS_READV = 145 constant SYS_WRITEV (line 115) | SYS_WRITEV = 146 constant SYS_GETSID (line 116) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 117) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 118) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 119) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 120) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 121) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 122) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 123) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 124) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 125) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 126) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 127) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 128) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 129) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 130) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 131) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 132) | SYS_MREMAP = 163 constant SYS_QUERY_MODULE (line 133) | SYS_QUERY_MODULE = 167 constant SYS_POLL (line 134) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 135) | SYS_NFSSERVCTL = 169 constant SYS_PRCTL (line 136) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 137) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 138) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 139) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 140) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 141) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 142) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 143) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 144) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 145) | SYS_PWRITE64 = 181 constant SYS_GETCWD (line 146) | SYS_GETCWD = 183 constant SYS_CAPGET (line 147) | SYS_CAPGET = 184 constant SYS_CAPSET (line 148) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 149) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 150) | SYS_SENDFILE = 187 constant SYS_GETPMSG (line 151) | SYS_GETPMSG = 188 constant SYS_PUTPMSG (line 152) | SYS_PUTPMSG = 189 constant SYS_VFORK (line 153) | SYS_VFORK = 190 constant SYS_PIVOT_ROOT (line 154) | SYS_PIVOT_ROOT = 217 constant SYS_MINCORE (line 155) | SYS_MINCORE = 218 constant SYS_MADVISE (line 156) | SYS_MADVISE = 219 constant SYS_GETDENTS64 (line 157) | SYS_GETDENTS64 = 220 constant SYS_READAHEAD (line 158) | SYS_READAHEAD = 222 constant SYS_SETXATTR (line 159) | SYS_SETXATTR = 224 constant SYS_LSETXATTR (line 160) | SYS_LSETXATTR = 225 constant SYS_FSETXATTR (line 161) | SYS_FSETXATTR = 226 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 227 constant SYS_LGETXATTR (line 163) | SYS_LGETXATTR = 228 constant SYS_FGETXATTR (line 164) | SYS_FGETXATTR = 229 constant SYS_LISTXATTR (line 165) | SYS_LISTXATTR = 230 constant SYS_LLISTXATTR (line 166) | SYS_LLISTXATTR = 231 constant SYS_FLISTXATTR (line 167) | SYS_FLISTXATTR = 232 constant SYS_REMOVEXATTR (line 168) | SYS_REMOVEXATTR = 233 constant SYS_LREMOVEXATTR (line 169) | SYS_LREMOVEXATTR = 234 constant SYS_FREMOVEXATTR (line 170) | SYS_FREMOVEXATTR = 235 constant SYS_GETTID (line 171) | SYS_GETTID = 236 constant SYS_TKILL (line 172) | SYS_TKILL = 237 constant SYS_FUTEX (line 173) | SYS_FUTEX = 238 constant SYS_SCHED_SETAFFINITY (line 174) | SYS_SCHED_SETAFFINITY = 239 constant SYS_SCHED_GETAFFINITY (line 175) | SYS_SCHED_GETAFFINITY = 240 constant SYS_TGKILL (line 176) | SYS_TGKILL = 241 constant SYS_IO_SETUP (line 177) | SYS_IO_SETUP = 243 constant SYS_IO_DESTROY (line 178) | SYS_IO_DESTROY = 244 constant SYS_IO_GETEVENTS (line 179) | SYS_IO_GETEVENTS = 245 constant SYS_IO_SUBMIT (line 180) | SYS_IO_SUBMIT = 246 constant SYS_IO_CANCEL (line 181) | SYS_IO_CANCEL = 247 constant SYS_EXIT_GROUP (line 182) | SYS_EXIT_GROUP = 248 constant SYS_EPOLL_CREATE (line 183) | SYS_EPOLL_CREATE = 249 constant SYS_EPOLL_CTL (line 184) | SYS_EPOLL_CTL = 250 constant SYS_EPOLL_WAIT (line 185) | SYS_EPOLL_WAIT = 251 constant SYS_SET_TID_ADDRESS (line 186) | SYS_SET_TID_ADDRESS = 252 constant SYS_FADVISE64 (line 187) | SYS_FADVISE64 = 253 constant SYS_TIMER_CREATE (line 188) | SYS_TIMER_CREATE = 254 constant SYS_TIMER_SETTIME (line 189) | SYS_TIMER_SETTIME = 255 constant SYS_TIMER_GETTIME (line 190) | SYS_TIMER_GETTIME = 256 constant SYS_TIMER_GETOVERRUN (line 191) | SYS_TIMER_GETOVERRUN = 257 constant SYS_TIMER_DELETE (line 192) | SYS_TIMER_DELETE = 258 constant SYS_CLOCK_SETTIME (line 193) | SYS_CLOCK_SETTIME = 259 constant SYS_CLOCK_GETTIME (line 194) | SYS_CLOCK_GETTIME = 260 constant SYS_CLOCK_GETRES (line 195) | SYS_CLOCK_GETRES = 261 constant SYS_CLOCK_NANOSLEEP (line 196) | SYS_CLOCK_NANOSLEEP = 262 constant SYS_STATFS64 (line 197) | SYS_STATFS64 = 265 constant SYS_FSTATFS64 (line 198) | SYS_FSTATFS64 = 266 constant SYS_REMAP_FILE_PAGES (line 199) | SYS_REMAP_FILE_PAGES = 267 constant SYS_MBIND (line 200) | SYS_MBIND = 268 constant SYS_GET_MEMPOLICY (line 201) | SYS_GET_MEMPOLICY = 269 constant SYS_SET_MEMPOLICY (line 202) | SYS_SET_MEMPOLICY = 270 constant SYS_MQ_OPEN (line 203) | SYS_MQ_OPEN = 271 constant SYS_MQ_UNLINK (line 204) | SYS_MQ_UNLINK = 272 constant SYS_MQ_TIMEDSEND (line 205) | SYS_MQ_TIMEDSEND = 273 constant SYS_MQ_TIMEDRECEIVE (line 206) | SYS_MQ_TIMEDRECEIVE = 274 constant SYS_MQ_NOTIFY (line 207) | SYS_MQ_NOTIFY = 275 constant SYS_MQ_GETSETATTR (line 208) | SYS_MQ_GETSETATTR = 276 constant SYS_KEXEC_LOAD (line 209) | SYS_KEXEC_LOAD = 277 constant SYS_ADD_KEY (line 210) | SYS_ADD_KEY = 278 constant SYS_REQUEST_KEY (line 211) | SYS_REQUEST_KEY = 279 constant SYS_KEYCTL (line 212) | SYS_KEYCTL = 280 constant SYS_WAITID (line 213) | SYS_WAITID = 281 constant SYS_IOPRIO_SET (line 214) | SYS_IOPRIO_SET = 282 constant SYS_IOPRIO_GET (line 215) | SYS_IOPRIO_GET = 283 constant SYS_INOTIFY_INIT (line 216) | SYS_INOTIFY_INIT = 284 constant SYS_INOTIFY_ADD_WATCH (line 217) | SYS_INOTIFY_ADD_WATCH = 285 constant SYS_INOTIFY_RM_WATCH (line 218) | SYS_INOTIFY_RM_WATCH = 286 constant SYS_MIGRATE_PAGES (line 219) | SYS_MIGRATE_PAGES = 287 constant SYS_OPENAT (line 220) | SYS_OPENAT = 288 constant SYS_MKDIRAT (line 221) | SYS_MKDIRAT = 289 constant SYS_MKNODAT (line 222) | SYS_MKNODAT = 290 constant SYS_FCHOWNAT (line 223) | SYS_FCHOWNAT = 291 constant SYS_FUTIMESAT (line 224) | SYS_FUTIMESAT = 292 constant SYS_UNLINKAT (line 225) | SYS_UNLINKAT = 294 constant SYS_RENAMEAT (line 226) | SYS_RENAMEAT = 295 constant SYS_LINKAT (line 227) | SYS_LINKAT = 296 constant SYS_SYMLINKAT (line 228) | SYS_SYMLINKAT = 297 constant SYS_READLINKAT (line 229) | SYS_READLINKAT = 298 constant SYS_FCHMODAT (line 230) | SYS_FCHMODAT = 299 constant SYS_FACCESSAT (line 231) | SYS_FACCESSAT = 300 constant SYS_PSELECT6 (line 232) | SYS_PSELECT6 = 301 constant SYS_PPOLL (line 233) | SYS_PPOLL = 302 constant SYS_UNSHARE (line 234) | SYS_UNSHARE = 303 constant SYS_SET_ROBUST_LIST (line 235) | SYS_SET_ROBUST_LIST = 304 constant SYS_GET_ROBUST_LIST (line 236) | SYS_GET_ROBUST_LIST = 305 constant SYS_SPLICE (line 237) | SYS_SPLICE = 306 constant SYS_SYNC_FILE_RANGE (line 238) | SYS_SYNC_FILE_RANGE = 307 constant SYS_TEE (line 239) | SYS_TEE = 308 constant SYS_VMSPLICE (line 240) | SYS_VMSPLICE = 309 constant SYS_MOVE_PAGES (line 241) | SYS_MOVE_PAGES = 310 constant SYS_GETCPU (line 242) | SYS_GETCPU = 311 constant SYS_EPOLL_PWAIT (line 243) | SYS_EPOLL_PWAIT = 312 constant SYS_UTIMES (line 244) | SYS_UTIMES = 313 constant SYS_FALLOCATE (line 245) | SYS_FALLOCATE = 314 constant SYS_UTIMENSAT (line 246) | SYS_UTIMENSAT = 315 constant SYS_SIGNALFD (line 247) | SYS_SIGNALFD = 316 constant SYS_TIMERFD (line 248) | SYS_TIMERFD = 317 constant SYS_EVENTFD (line 249) | SYS_EVENTFD = 318 constant SYS_TIMERFD_CREATE (line 250) | SYS_TIMERFD_CREATE = 319 constant SYS_TIMERFD_SETTIME (line 251) | SYS_TIMERFD_SETTIME = 320 constant SYS_TIMERFD_GETTIME (line 252) | SYS_TIMERFD_GETTIME = 321 constant SYS_SIGNALFD4 (line 253) | SYS_SIGNALFD4 = 322 constant SYS_EVENTFD2 (line 254) | SYS_EVENTFD2 = 323 constant SYS_INOTIFY_INIT1 (line 255) | SYS_INOTIFY_INIT1 = 324 constant SYS_PIPE2 (line 256) | SYS_PIPE2 = 325 constant SYS_DUP3 (line 257) | SYS_DUP3 = 326 constant SYS_EPOLL_CREATE1 (line 258) | SYS_EPOLL_CREATE1 = 327 constant SYS_PREADV (line 259) | SYS_PREADV = 328 constant SYS_PWRITEV (line 260) | SYS_PWRITEV = 329 constant SYS_RT_TGSIGQUEUEINFO (line 261) | SYS_RT_TGSIGQUEUEINFO = 330 constant SYS_PERF_EVENT_OPEN (line 262) | SYS_PERF_EVENT_OPEN = 331 constant SYS_FANOTIFY_INIT (line 263) | SYS_FANOTIFY_INIT = 332 constant SYS_FANOTIFY_MARK (line 264) | SYS_FANOTIFY_MARK = 333 constant SYS_PRLIMIT64 (line 265) | SYS_PRLIMIT64 = 334 constant SYS_NAME_TO_HANDLE_AT (line 266) | SYS_NAME_TO_HANDLE_AT = 335 constant SYS_OPEN_BY_HANDLE_AT (line 267) | SYS_OPEN_BY_HANDLE_AT = 336 constant SYS_CLOCK_ADJTIME (line 268) | SYS_CLOCK_ADJTIME = 337 constant SYS_SYNCFS (line 269) | SYS_SYNCFS = 338 constant SYS_SETNS (line 270) | SYS_SETNS = 339 constant SYS_PROCESS_VM_READV (line 271) | SYS_PROCESS_VM_READV = 340 constant SYS_PROCESS_VM_WRITEV (line 272) | SYS_PROCESS_VM_WRITEV = 341 constant SYS_S390_RUNTIME_INSTR (line 273) | SYS_S390_RUNTIME_INSTR = 342 constant SYS_KCMP (line 274) | SYS_KCMP = 343 constant SYS_FINIT_MODULE (line 275) | SYS_FINIT_MODULE = 344 constant SYS_SCHED_SETATTR (line 276) | SYS_SCHED_SETATTR = 345 constant SYS_SCHED_GETATTR (line 277) | SYS_SCHED_GETATTR = 346 constant SYS_RENAMEAT2 (line 278) | SYS_RENAMEAT2 = 347 constant SYS_SECCOMP (line 279) | SYS_SECCOMP = 348 constant SYS_GETRANDOM (line 280) | SYS_GETRANDOM = 349 constant SYS_MEMFD_CREATE (line 281) | SYS_MEMFD_CREATE = 350 constant SYS_BPF (line 282) | SYS_BPF = 351 constant SYS_S390_PCI_MMIO_WRITE (line 283) | SYS_S390_PCI_MMIO_WRITE = 352 constant SYS_S390_PCI_MMIO_READ (line 284) | SYS_S390_PCI_MMIO_READ = 353 constant SYS_EXECVEAT (line 285) | SYS_EXECVEAT = 354 constant SYS_USERFAULTFD (line 286) | SYS_USERFAULTFD = 355 constant SYS_MEMBARRIER (line 287) | SYS_MEMBARRIER = 356 constant SYS_RECVMMSG (line 288) | SYS_RECVMMSG = 357 constant SYS_SENDMMSG (line 289) | SYS_SENDMMSG = 358 constant SYS_SOCKET (line 290) | SYS_SOCKET = 359 constant SYS_SOCKETPAIR (line 291) | SYS_SOCKETPAIR = 360 constant SYS_BIND (line 292) | SYS_BIND = 361 constant SYS_CONNECT (line 293) | SYS_CONNECT = 362 constant SYS_LISTEN (line 294) | SYS_LISTEN = 363 constant SYS_ACCEPT4 (line 295) | SYS_ACCEPT4 = 364 constant SYS_GETSOCKOPT (line 296) | SYS_GETSOCKOPT = 365 constant SYS_SETSOCKOPT (line 297) | SYS_SETSOCKOPT = 366 constant SYS_GETSOCKNAME (line 298) | SYS_GETSOCKNAME = 367 constant SYS_GETPEERNAME (line 299) | SYS_GETPEERNAME = 368 constant SYS_SENDTO (line 300) | SYS_SENDTO = 369 constant SYS_SENDMSG (line 301) | SYS_SENDMSG = 370 constant SYS_RECVFROM (line 302) | SYS_RECVFROM = 371 constant SYS_RECVMSG (line 303) | SYS_RECVMSG = 372 constant SYS_SHUTDOWN (line 304) | SYS_SHUTDOWN = 373 constant SYS_MLOCK2 (line 305) | SYS_MLOCK2 = 374 constant SYS_COPY_FILE_RANGE (line 306) | SYS_COPY_FILE_RANGE = 375 constant SYS_PREADV2 (line 307) | SYS_PREADV2 = 376 constant SYS_PWRITEV2 (line 308) | SYS_PWRITEV2 = 377 constant SYS_SELECT (line 309) | SYS_SELECT = 142 constant SYS_GETRLIMIT (line 310) | SYS_GETRLIMIT = 191 constant SYS_LCHOWN (line 311) | SYS_LCHOWN = 198 constant SYS_GETUID (line 312) | SYS_GETUID = 199 constant SYS_GETGID (line 313) | SYS_GETGID = 200 constant SYS_GETEUID (line 314) | SYS_GETEUID = 201 constant SYS_GETEGID (line 315) | SYS_GETEGID = 202 constant SYS_SETREUID (line 316) | SYS_SETREUID = 203 constant SYS_SETREGID (line 317) | SYS_SETREGID = 204 constant SYS_GETGROUPS (line 318) | SYS_GETGROUPS = 205 constant SYS_SETGROUPS (line 319) | SYS_SETGROUPS = 206 constant SYS_FCHOWN (line 320) | SYS_FCHOWN = 207 constant SYS_SETRESUID (line 321) | SYS_SETRESUID = 208 constant SYS_GETRESUID (line 322) | SYS_GETRESUID = 209 constant SYS_SETRESGID (line 323) | SYS_SETRESGID = 210 constant SYS_GETRESGID (line 324) | SYS_GETRESGID = 211 constant SYS_CHOWN (line 325) | SYS_CHOWN = 212 constant SYS_SETUID (line 326) | SYS_SETUID = 213 constant SYS_SETGID (line 327) | SYS_SETGID = 214 constant SYS_SETFSUID (line 328) | SYS_SETFSUID = 215 constant SYS_SETFSGID (line 329) | SYS_SETFSGID = 216 constant SYS_NEWFSTATAT (line 330) | SYS_NEWFSTATAT = 293 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECV (line 20) | SYS_EXECV = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_CHOWN (line 22) | SYS_CHOWN = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BRK (line 26) | SYS_BRK = 17 constant SYS_PERFCTR (line 27) | SYS_PERFCTR = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_CAPGET (line 30) | SYS_CAPGET = 21 constant SYS_CAPSET (line 31) | SYS_CAPSET = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_VMSPLICE (line 34) | SYS_VMSPLICE = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_SIGALTSTACK (line 37) | SYS_SIGALTSTACK = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_NICE (line 41) | SYS_NICE = 34 constant SYS_SYNC (line 42) | SYS_SYNC = 36 constant SYS_KILL (line 43) | SYS_KILL = 37 constant SYS_STAT (line 44) | SYS_STAT = 38 constant SYS_SENDFILE (line 45) | SYS_SENDFILE = 39 constant SYS_LSTAT (line 46) | SYS_LSTAT = 40 constant SYS_DUP (line 47) | SYS_DUP = 41 constant SYS_PIPE (line 48) | SYS_PIPE = 42 constant SYS_TIMES (line 49) | SYS_TIMES = 43 constant SYS_UMOUNT2 (line 50) | SYS_UMOUNT2 = 45 constant SYS_SETGID (line 51) | SYS_SETGID = 46 constant SYS_GETGID (line 52) | SYS_GETGID = 47 constant SYS_SIGNAL (line 53) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 54) | SYS_GETEUID = 49 constant SYS_GETEGID (line 55) | SYS_GETEGID = 50 constant SYS_ACCT (line 56) | SYS_ACCT = 51 constant SYS_MEMORY_ORDERING (line 57) | SYS_MEMORY_ORDERING = 52 constant SYS_IOCTL (line 58) | SYS_IOCTL = 54 constant SYS_REBOOT (line 59) | SYS_REBOOT = 55 constant SYS_SYMLINK (line 60) | SYS_SYMLINK = 57 constant SYS_READLINK (line 61) | SYS_READLINK = 58 constant SYS_EXECVE (line 62) | SYS_EXECVE = 59 constant SYS_UMASK (line 63) | SYS_UMASK = 60 constant SYS_CHROOT (line 64) | SYS_CHROOT = 61 constant SYS_FSTAT (line 65) | SYS_FSTAT = 62 constant SYS_FSTAT64 (line 66) | SYS_FSTAT64 = 63 constant SYS_GETPAGESIZE (line 67) | SYS_GETPAGESIZE = 64 constant SYS_MSYNC (line 68) | SYS_MSYNC = 65 constant SYS_VFORK (line 69) | SYS_VFORK = 66 constant SYS_PREAD64 (line 70) | SYS_PREAD64 = 67 constant SYS_PWRITE64 (line 71) | SYS_PWRITE64 = 68 constant SYS_MMAP (line 72) | SYS_MMAP = 71 constant SYS_MUNMAP (line 73) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 74) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 75) | SYS_MADVISE = 75 constant SYS_VHANGUP (line 76) | SYS_VHANGUP = 76 constant SYS_MINCORE (line 77) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 78) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 79) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 80) | SYS_GETPGRP = 81 constant SYS_SETITIMER (line 81) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 82) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 83) | SYS_GETITIMER = 86 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 88 constant SYS_DUP2 (line 85) | SYS_DUP2 = 90 constant SYS_FCNTL (line 86) | SYS_FCNTL = 92 constant SYS_SELECT (line 87) | SYS_SELECT = 93 constant SYS_FSYNC (line 88) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 89) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 90) | SYS_SOCKET = 97 constant SYS_CONNECT (line 91) | SYS_CONNECT = 98 constant SYS_ACCEPT (line 92) | SYS_ACCEPT = 99 constant SYS_GETPRIORITY (line 93) | SYS_GETPRIORITY = 100 constant SYS_RT_SIGRETURN (line 94) | SYS_RT_SIGRETURN = 101 constant SYS_RT_SIGACTION (line 95) | SYS_RT_SIGACTION = 102 constant SYS_RT_SIGPROCMASK (line 96) | SYS_RT_SIGPROCMASK = 103 constant SYS_RT_SIGPENDING (line 97) | SYS_RT_SIGPENDING = 104 constant SYS_RT_SIGTIMEDWAIT (line 98) | SYS_RT_SIGTIMEDWAIT = 105 constant SYS_RT_SIGQUEUEINFO (line 99) | SYS_RT_SIGQUEUEINFO = 106 constant SYS_RT_SIGSUSPEND (line 100) | SYS_RT_SIGSUSPEND = 107 constant SYS_SETRESUID (line 101) | SYS_SETRESUID = 108 constant SYS_GETRESUID (line 102) | SYS_GETRESUID = 109 constant SYS_SETRESGID (line 103) | SYS_SETRESGID = 110 constant SYS_GETRESGID (line 104) | SYS_GETRESGID = 111 constant SYS_RECVMSG (line 105) | SYS_RECVMSG = 113 constant SYS_SENDMSG (line 106) | SYS_SENDMSG = 114 constant SYS_GETTIMEOFDAY (line 107) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 108) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 109) | SYS_GETSOCKOPT = 118 constant SYS_GETCWD (line 110) | SYS_GETCWD = 119 constant SYS_READV (line 111) | SYS_READV = 120 constant SYS_WRITEV (line 112) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 113) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 114) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 115) | SYS_FCHMOD = 124 constant SYS_RECVFROM (line 116) | SYS_RECVFROM = 125 constant SYS_SETREUID (line 117) | SYS_SETREUID = 126 constant SYS_SETREGID (line 118) | SYS_SETREGID = 127 constant SYS_RENAME (line 119) | SYS_RENAME = 128 constant SYS_TRUNCATE (line 120) | SYS_TRUNCATE = 129 constant SYS_FTRUNCATE (line 121) | SYS_FTRUNCATE = 130 constant SYS_FLOCK (line 122) | SYS_FLOCK = 131 constant SYS_LSTAT64 (line 123) | SYS_LSTAT64 = 132 constant SYS_SENDTO (line 124) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 125) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 126) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 127) | SYS_MKDIR = 136 constant SYS_RMDIR (line 128) | SYS_RMDIR = 137 constant SYS_UTIMES (line 129) | SYS_UTIMES = 138 constant SYS_STAT64 (line 130) | SYS_STAT64 = 139 constant SYS_SENDFILE64 (line 131) | SYS_SENDFILE64 = 140 constant SYS_GETPEERNAME (line 132) | SYS_GETPEERNAME = 141 constant SYS_FUTEX (line 133) | SYS_FUTEX = 142 constant SYS_GETTID (line 134) | SYS_GETTID = 143 constant SYS_GETRLIMIT (line 135) | SYS_GETRLIMIT = 144 constant SYS_SETRLIMIT (line 136) | SYS_SETRLIMIT = 145 constant SYS_PIVOT_ROOT (line 137) | SYS_PIVOT_ROOT = 146 constant SYS_PRCTL (line 138) | SYS_PRCTL = 147 constant SYS_PCICONFIG_READ (line 139) | SYS_PCICONFIG_READ = 148 constant SYS_PCICONFIG_WRITE (line 140) | SYS_PCICONFIG_WRITE = 149 constant SYS_GETSOCKNAME (line 141) | SYS_GETSOCKNAME = 150 constant SYS_INOTIFY_INIT (line 142) | SYS_INOTIFY_INIT = 151 constant SYS_INOTIFY_ADD_WATCH (line 143) | SYS_INOTIFY_ADD_WATCH = 152 constant SYS_POLL (line 144) | SYS_POLL = 153 constant SYS_GETDENTS64 (line 145) | SYS_GETDENTS64 = 154 constant SYS_INOTIFY_RM_WATCH (line 146) | SYS_INOTIFY_RM_WATCH = 156 constant SYS_STATFS (line 147) | SYS_STATFS = 157 constant SYS_FSTATFS (line 148) | SYS_FSTATFS = 158 constant SYS_UMOUNT (line 149) | SYS_UMOUNT = 159 constant SYS_SCHED_SET_AFFINITY (line 150) | SYS_SCHED_SET_AFFINITY = 160 constant SYS_SCHED_GET_AFFINITY (line 151) | SYS_SCHED_GET_AFFINITY = 161 constant SYS_GETDOMAINNAME (line 152) | SYS_GETDOMAINNAME = 162 constant SYS_SETDOMAINNAME (line 153) | SYS_SETDOMAINNAME = 163 constant SYS_UTRAP_INSTALL (line 154) | SYS_UTRAP_INSTALL = 164 constant SYS_QUOTACTL (line 155) | SYS_QUOTACTL = 165 constant SYS_SET_TID_ADDRESS (line 156) | SYS_SET_TID_ADDRESS = 166 constant SYS_MOUNT (line 157) | SYS_MOUNT = 167 constant SYS_USTAT (line 158) | SYS_USTAT = 168 constant SYS_SETXATTR (line 159) | SYS_SETXATTR = 169 constant SYS_LSETXATTR (line 160) | SYS_LSETXATTR = 170 constant SYS_FSETXATTR (line 161) | SYS_FSETXATTR = 171 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 172 constant SYS_LGETXATTR (line 163) | SYS_LGETXATTR = 173 constant SYS_GETDENTS (line 164) | SYS_GETDENTS = 174 constant SYS_SETSID (line 165) | SYS_SETSID = 175 constant SYS_FCHDIR (line 166) | SYS_FCHDIR = 176 constant SYS_FGETXATTR (line 167) | SYS_FGETXATTR = 177 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 178 constant SYS_LLISTXATTR (line 169) | SYS_LLISTXATTR = 179 constant SYS_FLISTXATTR (line 170) | SYS_FLISTXATTR = 180 constant SYS_REMOVEXATTR (line 171) | SYS_REMOVEXATTR = 181 constant SYS_LREMOVEXATTR (line 172) | SYS_LREMOVEXATTR = 182 constant SYS_SIGPENDING (line 173) | SYS_SIGPENDING = 183 constant SYS_QUERY_MODULE (line 174) | SYS_QUERY_MODULE = 184 constant SYS_SETPGID (line 175) | SYS_SETPGID = 185 constant SYS_FREMOVEXATTR (line 176) | SYS_FREMOVEXATTR = 186 constant SYS_TKILL (line 177) | SYS_TKILL = 187 constant SYS_EXIT_GROUP (line 178) | SYS_EXIT_GROUP = 188 constant SYS_UNAME (line 179) | SYS_UNAME = 189 constant SYS_INIT_MODULE (line 180) | SYS_INIT_MODULE = 190 constant SYS_PERSONALITY (line 181) | SYS_PERSONALITY = 191 constant SYS_REMAP_FILE_PAGES (line 182) | SYS_REMAP_FILE_PAGES = 192 constant SYS_EPOLL_CREATE (line 183) | SYS_EPOLL_CREATE = 193 constant SYS_EPOLL_CTL (line 184) | SYS_EPOLL_CTL = 194 constant SYS_EPOLL_WAIT (line 185) | SYS_EPOLL_WAIT = 195 constant SYS_IOPRIO_SET (line 186) | SYS_IOPRIO_SET = 196 constant SYS_GETPPID (line 187) | SYS_GETPPID = 197 constant SYS_SIGACTION (line 188) | SYS_SIGACTION = 198 constant SYS_SGETMASK (line 189) | SYS_SGETMASK = 199 constant SYS_SSETMASK (line 190) | SYS_SSETMASK = 200 constant SYS_SIGSUSPEND (line 191) | SYS_SIGSUSPEND = 201 constant SYS_OLDLSTAT (line 192) | SYS_OLDLSTAT = 202 constant SYS_USELIB (line 193) | SYS_USELIB = 203 constant SYS_READDIR (line 194) | SYS_READDIR = 204 constant SYS_READAHEAD (line 195) | SYS_READAHEAD = 205 constant SYS_SOCKETCALL (line 196) | SYS_SOCKETCALL = 206 constant SYS_SYSLOG (line 197) | SYS_SYSLOG = 207 constant SYS_LOOKUP_DCOOKIE (line 198) | SYS_LOOKUP_DCOOKIE = 208 constant SYS_FADVISE64 (line 199) | SYS_FADVISE64 = 209 constant SYS_FADVISE64_64 (line 200) | SYS_FADVISE64_64 = 210 constant SYS_TGKILL (line 201) | SYS_TGKILL = 211 constant SYS_WAITPID (line 202) | SYS_WAITPID = 212 constant SYS_SWAPOFF (line 203) | SYS_SWAPOFF = 213 constant SYS_SYSINFO (line 204) | SYS_SYSINFO = 214 constant SYS_IPC (line 205) | SYS_IPC = 215 constant SYS_SIGRETURN (line 206) | SYS_SIGRETURN = 216 constant SYS_CLONE (line 207) | SYS_CLONE = 217 constant SYS_IOPRIO_GET (line 208) | SYS_IOPRIO_GET = 218 constant SYS_ADJTIMEX (line 209) | SYS_ADJTIMEX = 219 constant SYS_SIGPROCMASK (line 210) | SYS_SIGPROCMASK = 220 constant SYS_CREATE_MODULE (line 211) | SYS_CREATE_MODULE = 221 constant SYS_DELETE_MODULE (line 212) | SYS_DELETE_MODULE = 222 constant SYS_GET_KERNEL_SYMS (line 213) | SYS_GET_KERNEL_SYMS = 223 constant SYS_GETPGID (line 214) | SYS_GETPGID = 224 constant SYS_BDFLUSH (line 215) | SYS_BDFLUSH = 225 constant SYS_SYSFS (line 216) | SYS_SYSFS = 226 constant SYS_AFS_SYSCALL (line 217) | SYS_AFS_SYSCALL = 227 constant SYS_SETFSUID (line 218) | SYS_SETFSUID = 228 constant SYS_SETFSGID (line 219) | SYS_SETFSGID = 229 constant SYS__NEWSELECT (line 220) | SYS__NEWSELECT = 230 constant SYS_SPLICE (line 221) | SYS_SPLICE = 232 constant SYS_STIME (line 222) | SYS_STIME = 233 constant SYS_STATFS64 (line 223) | SYS_STATFS64 = 234 constant SYS_FSTATFS64 (line 224) | SYS_FSTATFS64 = 235 constant SYS__LLSEEK (line 225) | SYS__LLSEEK = 236 constant SYS_MLOCK (line 226) | SYS_MLOCK = 237 constant SYS_MUNLOCK (line 227) | SYS_MUNLOCK = 238 constant SYS_MLOCKALL (line 228) | SYS_MLOCKALL = 239 constant SYS_MUNLOCKALL (line 229) | SYS_MUNLOCKALL = 240 constant SYS_SCHED_SETPARAM (line 230) | SYS_SCHED_SETPARAM = 241 constant SYS_SCHED_GETPARAM (line 231) | SYS_SCHED_GETPARAM = 242 constant SYS_SCHED_SETSCHEDULER (line 232) | SYS_SCHED_SETSCHEDULER = 243 constant SYS_SCHED_GETSCHEDULER (line 233) | SYS_SCHED_GETSCHEDULER = 244 constant SYS_SCHED_YIELD (line 234) | SYS_SCHED_YIELD = 245 constant SYS_SCHED_GET_PRIORITY_MAX (line 235) | SYS_SCHED_GET_PRIORITY_MAX = 246 constant SYS_SCHED_GET_PRIORITY_MIN (line 236) | SYS_SCHED_GET_PRIORITY_MIN = 247 constant SYS_SCHED_RR_GET_INTERVAL (line 237) | SYS_SCHED_RR_GET_INTERVAL = 248 constant SYS_NANOSLEEP (line 238) | SYS_NANOSLEEP = 249 constant SYS_MREMAP (line 239) | SYS_MREMAP = 250 constant SYS__SYSCTL (line 240) | SYS__SYSCTL = 251 constant SYS_GETSID (line 241) | SYS_GETSID = 252 constant SYS_FDATASYNC (line 242) | SYS_FDATASYNC = 253 constant SYS_NFSSERVCTL (line 243) | SYS_NFSSERVCTL = 254 constant SYS_SYNC_FILE_RANGE (line 244) | SYS_SYNC_FILE_RANGE = 255 constant SYS_CLOCK_SETTIME (line 245) | SYS_CLOCK_SETTIME = 256 constant SYS_CLOCK_GETTIME (line 246) | SYS_CLOCK_GETTIME = 257 constant SYS_CLOCK_GETRES (line 247) | SYS_CLOCK_GETRES = 258 constant SYS_CLOCK_NANOSLEEP (line 248) | SYS_CLOCK_NANOSLEEP = 259 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 260 constant SYS_SCHED_SETAFFINITY (line 250) | SYS_SCHED_SETAFFINITY = 261 constant SYS_TIMER_SETTIME (line 251) | SYS_TIMER_SETTIME = 262 constant SYS_TIMER_GETTIME (line 252) | SYS_TIMER_GETTIME = 263 constant SYS_TIMER_GETOVERRUN (line 253) | SYS_TIMER_GETOVERRUN = 264 constant SYS_TIMER_DELETE (line 254) | SYS_TIMER_DELETE = 265 constant SYS_TIMER_CREATE (line 255) | SYS_TIMER_CREATE = 266 constant SYS_IO_SETUP (line 256) | SYS_IO_SETUP = 268 constant SYS_IO_DESTROY (line 257) | SYS_IO_DESTROY = 269 constant SYS_IO_SUBMIT (line 258) | SYS_IO_SUBMIT = 270 constant SYS_IO_CANCEL (line 259) | SYS_IO_CANCEL = 271 constant SYS_IO_GETEVENTS (line 260) | SYS_IO_GETEVENTS = 272 constant SYS_MQ_OPEN (line 261) | SYS_MQ_OPEN = 273 constant SYS_MQ_UNLINK (line 262) | SYS_MQ_UNLINK = 274 constant SYS_MQ_TIMEDSEND (line 263) | SYS_MQ_TIMEDSEND = 275 constant SYS_MQ_TIMEDRECEIVE (line 264) | SYS_MQ_TIMEDRECEIVE = 276 constant SYS_MQ_NOTIFY (line 265) | SYS_MQ_NOTIFY = 277 constant SYS_MQ_GETSETATTR (line 266) | SYS_MQ_GETSETATTR = 278 constant SYS_WAITID (line 267) | SYS_WAITID = 279 constant SYS_TEE (line 268) | SYS_TEE = 280 constant SYS_ADD_KEY (line 269) | SYS_ADD_KEY = 281 constant SYS_REQUEST_KEY (line 270) | SYS_REQUEST_KEY = 282 constant SYS_KEYCTL (line 271) | SYS_KEYCTL = 283 constant SYS_OPENAT (line 272) | SYS_OPENAT = 284 constant SYS_MKDIRAT (line 273) | SYS_MKDIRAT = 285 constant SYS_MKNODAT (line 274) | SYS_MKNODAT = 286 constant SYS_FCHOWNAT (line 275) | SYS_FCHOWNAT = 287 constant SYS_FUTIMESAT (line 276) | SYS_FUTIMESAT = 288 constant SYS_FSTATAT64 (line 277) | SYS_FSTATAT64 = 289 constant SYS_UNLINKAT (line 278) | SYS_UNLINKAT = 290 constant SYS_RENAMEAT (line 279) | SYS_RENAMEAT = 291 constant SYS_LINKAT (line 280) | SYS_LINKAT = 292 constant SYS_SYMLINKAT (line 281) | SYS_SYMLINKAT = 293 constant SYS_READLINKAT (line 282) | SYS_READLINKAT = 294 constant SYS_FCHMODAT (line 283) | SYS_FCHMODAT = 295 constant SYS_FACCESSAT (line 284) | SYS_FACCESSAT = 296 constant SYS_PSELECT6 (line 285) | SYS_PSELECT6 = 297 constant SYS_PPOLL (line 286) | SYS_PPOLL = 298 constant SYS_UNSHARE (line 287) | SYS_UNSHARE = 299 constant SYS_SET_ROBUST_LIST (line 288) | SYS_SET_ROBUST_LIST = 300 constant SYS_GET_ROBUST_LIST (line 289) | SYS_GET_ROBUST_LIST = 301 constant SYS_MIGRATE_PAGES (line 290) | SYS_MIGRATE_PAGES = 302 constant SYS_MBIND (line 291) | SYS_MBIND = 303 constant SYS_GET_MEMPOLICY (line 292) | SYS_GET_MEMPOLICY = 304 constant SYS_SET_MEMPOLICY (line 293) | SYS_SET_MEMPOLICY = 305 constant SYS_KEXEC_LOAD (line 294) | SYS_KEXEC_LOAD = 306 constant SYS_MOVE_PAGES (line 295) | SYS_MOVE_PAGES = 307 constant SYS_GETCPU (line 296) | SYS_GETCPU = 308 constant SYS_EPOLL_PWAIT (line 297) | SYS_EPOLL_PWAIT = 309 constant SYS_UTIMENSAT (line 298) | SYS_UTIMENSAT = 310 constant SYS_SIGNALFD (line 299) | SYS_SIGNALFD = 311 constant SYS_TIMERFD_CREATE (line 300) | SYS_TIMERFD_CREATE = 312 constant SYS_EVENTFD (line 301) | SYS_EVENTFD = 313 constant SYS_FALLOCATE (line 302) | SYS_FALLOCATE = 314 constant SYS_TIMERFD_SETTIME (line 303) | SYS_TIMERFD_SETTIME = 315 constant SYS_TIMERFD_GETTIME (line 304) | SYS_TIMERFD_GETTIME = 316 constant SYS_SIGNALFD4 (line 305) | SYS_SIGNALFD4 = 317 constant SYS_EVENTFD2 (line 306) | SYS_EVENTFD2 = 318 constant SYS_EPOLL_CREATE1 (line 307) | SYS_EPOLL_CREATE1 = 319 constant SYS_DUP3 (line 308) | SYS_DUP3 = 320 constant SYS_PIPE2 (line 309) | SYS_PIPE2 = 321 constant SYS_INOTIFY_INIT1 (line 310) | SYS_INOTIFY_INIT1 = 322 constant SYS_ACCEPT4 (line 311) | SYS_ACCEPT4 = 323 constant SYS_PREADV (line 312) | SYS_PREADV = 324 constant SYS_PWRITEV (line 313) | SYS_PWRITEV = 325 constant SYS_RT_TGSIGQUEUEINFO (line 314) | SYS_RT_TGSIGQUEUEINFO = 326 constant SYS_PERF_EVENT_OPEN (line 315) | SYS_PERF_EVENT_OPEN = 327 constant SYS_RECVMMSG (line 316) | SYS_RECVMMSG = 328 constant SYS_FANOTIFY_INIT (line 317) | SYS_FANOTIFY_INIT = 329 constant SYS_FANOTIFY_MARK (line 318) | SYS_FANOTIFY_MARK = 330 constant SYS_PRLIMIT64 (line 319) | SYS_PRLIMIT64 = 331 constant SYS_NAME_TO_HANDLE_AT (line 320) | SYS_NAME_TO_HANDLE_AT = 332 constant SYS_OPEN_BY_HANDLE_AT (line 321) | SYS_OPEN_BY_HANDLE_AT = 333 constant SYS_CLOCK_ADJTIME (line 322) | SYS_CLOCK_ADJTIME = 334 constant SYS_SYNCFS (line 323) | SYS_SYNCFS = 335 constant SYS_SENDMMSG (line 324) | SYS_SENDMMSG = 336 constant SYS_SETNS (line 325) | SYS_SETNS = 337 constant SYS_PROCESS_VM_READV (line 326) | SYS_PROCESS_VM_READV = 338 constant SYS_PROCESS_VM_WRITEV (line 327) | SYS_PROCESS_VM_WRITEV = 339 constant SYS_KERN_FEATURES (line 328) | SYS_KERN_FEATURES = 340 constant SYS_KCMP (line 329) | SYS_KCMP = 341 constant SYS_FINIT_MODULE (line 330) | SYS_FINIT_MODULE = 342 constant SYS_SCHED_SETATTR (line 331) | SYS_SCHED_SETATTR = 343 constant SYS_SCHED_GETATTR (line 332) | SYS_SCHED_GETATTR = 344 constant SYS_RENAMEAT2 (line 333) | SYS_RENAMEAT2 = 345 constant SYS_SECCOMP (line 334) | SYS_SECCOMP = 346 constant SYS_GETRANDOM (line 335) | SYS_GETRANDOM = 347 constant SYS_MEMFD_CREATE (line 336) | SYS_MEMFD_CREATE = 348 constant SYS_BPF (line 337) | SYS_BPF = 349 constant SYS_EXECVEAT (line 338) | SYS_EXECVEAT = 350 constant SYS_MEMBARRIER (line 339) | SYS_MEMBARRIER = 351 constant SYS_USERFAULTFD (line 340) | SYS_USERFAULTFD = 352 constant SYS_BIND (line 341) | SYS_BIND = 353 constant SYS_LISTEN (line 342) | SYS_LISTEN = 354 constant SYS_SETSOCKOPT (line 343) | SYS_SETSOCKOPT = 355 constant SYS_MLOCK2 (line 344) | SYS_MLOCK2 = 356 constant SYS_COPY_FILE_RANGE (line 345) | SYS_COPY_FILE_RANGE = 357 constant SYS_PREADV2 (line 346) | SYS_PREADV2 = 358 constant SYS_PWRITEV2 (line 347) | SYS_PWRITEV2 = 359 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_LINK (line 15) | SYS_LINK = 9 constant SYS_UNLINK (line 16) | SYS_UNLINK = 10 constant SYS_CHDIR (line 17) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 18) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 19) | SYS_CHMOD = 15 constant SYS_CHOWN (line 20) | SYS_CHOWN = 16 constant SYS_BREAK (line 21) | SYS_BREAK = 17 constant SYS_GETPID (line 22) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 23) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 24) | SYS_SETUID = 23 constant SYS_GETUID (line 25) | SYS_GETUID = 24 constant SYS_GETEUID (line 26) | SYS_GETEUID = 25 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 28) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 29) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 30) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 31) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 32) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 33) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 34) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 35) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 36) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 37) | SYS_SYNC = 36 constant SYS_KILL (line 38) | SYS_KILL = 37 constant SYS_GETPPID (line 39) | SYS_GETPPID = 39 constant SYS_DUP (line 40) | SYS_DUP = 41 constant SYS_PIPE (line 41) | SYS_PIPE = 42 constant SYS_GETEGID (line 42) | SYS_GETEGID = 43 constant SYS_PROFIL (line 43) | SYS_PROFIL = 44 constant SYS_KTRACE (line 44) | SYS_KTRACE = 45 constant SYS_GETGID (line 45) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 46) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 47) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 48) | SYS_ACCT = 51 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_REVOKE (line 50) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 51) | SYS_SYMLINK = 57 constant SYS_READLINK (line 52) | SYS_READLINK = 58 constant SYS_EXECVE (line 53) | SYS_EXECVE = 59 constant SYS_UMASK (line 54) | SYS_UMASK = 60 constant SYS_CHROOT (line 55) | SYS_CHROOT = 61 constant SYS_VFORK (line 56) | SYS_VFORK = 66 constant SYS_SBRK (line 57) | SYS_SBRK = 69 constant SYS_SSTK (line 58) | SYS_SSTK = 70 constant SYS_VADVISE (line 59) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 60) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 61) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 62) | SYS_MADVISE = 75 constant SYS_MINCORE (line 63) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 64) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 65) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 66) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 67) | SYS_SETPGID = 82 constant SYS_DUP2 (line 68) | SYS_DUP2 = 90 constant SYS_FCNTL (line 69) | SYS_FCNTL = 92 constant SYS_FSYNC (line 70) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 71) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 72) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 73) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 74) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 75) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 76) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 77) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 78) | SYS_READV = 120 constant SYS_WRITEV (line 79) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 81) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 82) | SYS_SETREUID = 126 constant SYS_SETREGID (line 83) | SYS_SETREGID = 127 constant SYS_RENAME (line 84) | SYS_RENAME = 128 constant SYS_FLOCK (line 85) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 86) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 87) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 88) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 89) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 90) | SYS_MKDIR = 136 constant SYS_RMDIR (line 91) | SYS_RMDIR = 137 constant SYS_SETSID (line 92) | SYS_SETSID = 147 constant SYS_SYSARCH (line 93) | SYS_SYSARCH = 165 constant SYS_PREAD (line 94) | SYS_PREAD = 173 constant SYS_PWRITE (line 95) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 96) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 97) | SYS_SETGID = 181 constant SYS_SETEGID (line 98) | SYS_SETEGID = 182 constant SYS_SETEUID (line 99) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 100) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 101) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 102) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 103) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 104) | SYS_MMAP = 197 constant SYS_LSEEK (line 105) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 106) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 107) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 108) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 109) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 110) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 111) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 112) | SYS_GETPGID = 207 constant SYS_REBOOT (line 113) | SYS_REBOOT = 208 constant SYS_POLL (line 114) | SYS_POLL = 209 constant SYS_SEMGET (line 115) | SYS_SEMGET = 221 constant SYS_SEMOP (line 116) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 117) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 118) | SYS_MSGGET = 225 constant SYS_MSGSND (line 119) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 120) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 121) | SYS_SHMAT = 228 constant SYS_SHMDT (line 122) | SYS_SHMDT = 230 constant SYS_SHMGET (line 123) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 124) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 125) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 126) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 127) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 128) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 129) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 130) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 131) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 132) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 133) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 134) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 135) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 136) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 137) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 138) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 139) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 140) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 141) | SYS_GETSID = 286 constant SYS___CLONE (line 142) | SYS___CLONE = 287 constant SYS_FKTRACE (line 143) | SYS_FKTRACE = 288 constant SYS_PREADV (line 144) | SYS_PREADV = 289 constant SYS_PWRITEV (line 145) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 146) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 147) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 148) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 149) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 150) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 151) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 152) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 153) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 154) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 155) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 156) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 157) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 158) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 159) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 160) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 161) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 162) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 163) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 164) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 165) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 166) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 167) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 168) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 169) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 170) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 171) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 172) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 173) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 174) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 175) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 176) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 177) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 178) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 179) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 180) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 181) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 182) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 183) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 184) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 185) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 186) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 187) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 188) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 189) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 190) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 191) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 192) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 193) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 194) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 195) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 196) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 197) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 198) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 199) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 200) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 201) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 202) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 203) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 204) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 205) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 206) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 207) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 208) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 209) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 210) | SYS_SOCKET = 394 constant SYS_GETFH (line 211) | SYS_GETFH = 395 constant SYS_MOUNT (line 212) | SYS_MOUNT = 410 constant SYS_MREMAP (line 213) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 214) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 215) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 216) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 217) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 218) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 219) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 220) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 221) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 222) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 223) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 224) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 225) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 226) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 227) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 228) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 229) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 230) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 231) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 232) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 233) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 234) | SYS_KEVENT = 435 constant SYS_PSELECT (line 235) | SYS_PSELECT = 436 constant SYS_POLLTS (line 236) | SYS_POLLTS = 437 constant SYS_STAT (line 237) | SYS_STAT = 439 constant SYS_FSTAT (line 238) | SYS_FSTAT = 440 constant SYS_LSTAT (line 239) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 240) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 241) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 242) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 243) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 244) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 245) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 246) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 247) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 248) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 249) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 250) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 251) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 252) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 253) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 254) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 255) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 256) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 258) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 259) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 260) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 261) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 262) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 263) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 264) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 265) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 266) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 267) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 268) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 269) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 270) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 271) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 272) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 273) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_LINK (line 15) | SYS_LINK = 9 constant SYS_UNLINK (line 16) | SYS_UNLINK = 10 constant SYS_CHDIR (line 17) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 18) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 19) | SYS_CHMOD = 15 constant SYS_CHOWN (line 20) | SYS_CHOWN = 16 constant SYS_BREAK (line 21) | SYS_BREAK = 17 constant SYS_GETPID (line 22) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 23) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 24) | SYS_SETUID = 23 constant SYS_GETUID (line 25) | SYS_GETUID = 24 constant SYS_GETEUID (line 26) | SYS_GETEUID = 25 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 28) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 29) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 30) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 31) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 32) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 33) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 34) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 35) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 36) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 37) | SYS_SYNC = 36 constant SYS_KILL (line 38) | SYS_KILL = 37 constant SYS_GETPPID (line 39) | SYS_GETPPID = 39 constant SYS_DUP (line 40) | SYS_DUP = 41 constant SYS_PIPE (line 41) | SYS_PIPE = 42 constant SYS_GETEGID (line 42) | SYS_GETEGID = 43 constant SYS_PROFIL (line 43) | SYS_PROFIL = 44 constant SYS_KTRACE (line 44) | SYS_KTRACE = 45 constant SYS_GETGID (line 45) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 46) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 47) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 48) | SYS_ACCT = 51 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_REVOKE (line 50) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 51) | SYS_SYMLINK = 57 constant SYS_READLINK (line 52) | SYS_READLINK = 58 constant SYS_EXECVE (line 53) | SYS_EXECVE = 59 constant SYS_UMASK (line 54) | SYS_UMASK = 60 constant SYS_CHROOT (line 55) | SYS_CHROOT = 61 constant SYS_VFORK (line 56) | SYS_VFORK = 66 constant SYS_SBRK (line 57) | SYS_SBRK = 69 constant SYS_SSTK (line 58) | SYS_SSTK = 70 constant SYS_VADVISE (line 59) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 60) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 61) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 62) | SYS_MADVISE = 75 constant SYS_MINCORE (line 63) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 64) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 65) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 66) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 67) | SYS_SETPGID = 82 constant SYS_DUP2 (line 68) | SYS_DUP2 = 90 constant SYS_FCNTL (line 69) | SYS_FCNTL = 92 constant SYS_FSYNC (line 70) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 71) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 72) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 73) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 74) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 75) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 76) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 77) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 78) | SYS_READV = 120 constant SYS_WRITEV (line 79) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 81) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 82) | SYS_SETREUID = 126 constant SYS_SETREGID (line 83) | SYS_SETREGID = 127 constant SYS_RENAME (line 84) | SYS_RENAME = 128 constant SYS_FLOCK (line 85) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 86) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 87) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 88) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 89) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 90) | SYS_MKDIR = 136 constant SYS_RMDIR (line 91) | SYS_RMDIR = 137 constant SYS_SETSID (line 92) | SYS_SETSID = 147 constant SYS_SYSARCH (line 93) | SYS_SYSARCH = 165 constant SYS_PREAD (line 94) | SYS_PREAD = 173 constant SYS_PWRITE (line 95) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 96) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 97) | SYS_SETGID = 181 constant SYS_SETEGID (line 98) | SYS_SETEGID = 182 constant SYS_SETEUID (line 99) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 100) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 101) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 102) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 103) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 104) | SYS_MMAP = 197 constant SYS_LSEEK (line 105) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 106) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 107) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 108) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 109) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 110) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 111) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 112) | SYS_GETPGID = 207 constant SYS_REBOOT (line 113) | SYS_REBOOT = 208 constant SYS_POLL (line 114) | SYS_POLL = 209 constant SYS_SEMGET (line 115) | SYS_SEMGET = 221 constant SYS_SEMOP (line 116) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 117) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 118) | SYS_MSGGET = 225 constant SYS_MSGSND (line 119) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 120) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 121) | SYS_SHMAT = 228 constant SYS_SHMDT (line 122) | SYS_SHMDT = 230 constant SYS_SHMGET (line 123) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 124) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 125) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 126) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 127) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 128) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 129) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 130) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 131) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 132) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 133) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 134) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 135) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 136) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 137) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 138) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 139) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 140) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 141) | SYS_GETSID = 286 constant SYS___CLONE (line 142) | SYS___CLONE = 287 constant SYS_FKTRACE (line 143) | SYS_FKTRACE = 288 constant SYS_PREADV (line 144) | SYS_PREADV = 289 constant SYS_PWRITEV (line 145) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 146) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 147) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 148) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 149) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 150) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 151) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 152) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 153) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 154) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 155) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 156) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 157) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 158) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 159) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 160) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 161) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 162) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 163) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 164) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 165) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 166) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 167) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 168) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 169) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 170) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 171) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 172) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 173) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 174) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 175) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 176) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 177) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 178) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 179) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 180) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 181) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 182) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 183) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 184) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 185) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 186) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 187) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 188) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 189) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 190) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 191) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 192) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 193) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 194) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 195) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 196) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 197) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 198) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 199) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 200) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 201) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 202) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 203) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 204) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 205) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 206) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 207) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 208) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 209) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 210) | SYS_SOCKET = 394 constant SYS_GETFH (line 211) | SYS_GETFH = 395 constant SYS_MOUNT (line 212) | SYS_MOUNT = 410 constant SYS_MREMAP (line 213) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 214) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 215) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 216) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 217) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 218) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 219) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 220) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 221) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 222) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 223) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 224) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 225) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 226) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 227) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 228) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 229) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 230) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 231) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 232) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 233) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 234) | SYS_KEVENT = 435 constant SYS_PSELECT (line 235) | SYS_PSELECT = 436 constant SYS_POLLTS (line 236) | SYS_POLLTS = 437 constant SYS_STAT (line 237) | SYS_STAT = 439 constant SYS_FSTAT (line 238) | SYS_FSTAT = 440 constant SYS_LSTAT (line 239) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 240) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 241) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 242) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 243) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 244) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 245) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 246) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 247) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 248) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 249) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 250) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 251) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 252) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 253) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 254) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 255) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 256) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 258) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 259) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 260) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 261) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 262) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 263) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 264) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 265) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 266) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 267) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 268) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 269) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 270) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 271) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 272) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 273) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_LINK (line 15) | SYS_LINK = 9 constant SYS_UNLINK (line 16) | SYS_UNLINK = 10 constant SYS_CHDIR (line 17) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 18) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 19) | SYS_CHMOD = 15 constant SYS_CHOWN (line 20) | SYS_CHOWN = 16 constant SYS_BREAK (line 21) | SYS_BREAK = 17 constant SYS_GETPID (line 22) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 23) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 24) | SYS_SETUID = 23 constant SYS_GETUID (line 25) | SYS_GETUID = 24 constant SYS_GETEUID (line 26) | SYS_GETEUID = 25 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 28) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 29) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 30) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 31) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 32) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 33) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 34) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 35) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 36) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 37) | SYS_SYNC = 36 constant SYS_KILL (line 38) | SYS_KILL = 37 constant SYS_GETPPID (line 39) | SYS_GETPPID = 39 constant SYS_DUP (line 40) | SYS_DUP = 41 constant SYS_PIPE (line 41) | SYS_PIPE = 42 constant SYS_GETEGID (line 42) | SYS_GETEGID = 43 constant SYS_PROFIL (line 43) | SYS_PROFIL = 44 constant SYS_KTRACE (line 44) | SYS_KTRACE = 45 constant SYS_GETGID (line 45) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 46) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 47) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 48) | SYS_ACCT = 51 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_REVOKE (line 50) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 51) | SYS_SYMLINK = 57 constant SYS_READLINK (line 52) | SYS_READLINK = 58 constant SYS_EXECVE (line 53) | SYS_EXECVE = 59 constant SYS_UMASK (line 54) | SYS_UMASK = 60 constant SYS_CHROOT (line 55) | SYS_CHROOT = 61 constant SYS_VFORK (line 56) | SYS_VFORK = 66 constant SYS_SBRK (line 57) | SYS_SBRK = 69 constant SYS_SSTK (line 58) | SYS_SSTK = 70 constant SYS_VADVISE (line 59) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 60) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 61) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 62) | SYS_MADVISE = 75 constant SYS_MINCORE (line 63) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 64) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 65) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 66) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 67) | SYS_SETPGID = 82 constant SYS_DUP2 (line 68) | SYS_DUP2 = 90 constant SYS_FCNTL (line 69) | SYS_FCNTL = 92 constant SYS_FSYNC (line 70) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 71) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 72) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 73) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 74) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 75) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 76) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 77) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 78) | SYS_READV = 120 constant SYS_WRITEV (line 79) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 81) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 82) | SYS_SETREUID = 126 constant SYS_SETREGID (line 83) | SYS_SETREGID = 127 constant SYS_RENAME (line 84) | SYS_RENAME = 128 constant SYS_FLOCK (line 85) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 86) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 87) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 88) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 89) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 90) | SYS_MKDIR = 136 constant SYS_RMDIR (line 91) | SYS_RMDIR = 137 constant SYS_SETSID (line 92) | SYS_SETSID = 147 constant SYS_SYSARCH (line 93) | SYS_SYSARCH = 165 constant SYS_PREAD (line 94) | SYS_PREAD = 173 constant SYS_PWRITE (line 95) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 96) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 97) | SYS_SETGID = 181 constant SYS_SETEGID (line 98) | SYS_SETEGID = 182 constant SYS_SETEUID (line 99) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 100) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 101) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 102) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 103) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 104) | SYS_MMAP = 197 constant SYS_LSEEK (line 105) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 106) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 107) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 108) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 109) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 110) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 111) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 112) | SYS_GETPGID = 207 constant SYS_REBOOT (line 113) | SYS_REBOOT = 208 constant SYS_POLL (line 114) | SYS_POLL = 209 constant SYS_SEMGET (line 115) | SYS_SEMGET = 221 constant SYS_SEMOP (line 116) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 117) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 118) | SYS_MSGGET = 225 constant SYS_MSGSND (line 119) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 120) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 121) | SYS_SHMAT = 228 constant SYS_SHMDT (line 122) | SYS_SHMDT = 230 constant SYS_SHMGET (line 123) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 124) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 125) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 126) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 127) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 128) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 129) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 130) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 131) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 132) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 133) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 134) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 135) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 136) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 137) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 138) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 139) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 140) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 141) | SYS_GETSID = 286 constant SYS___CLONE (line 142) | SYS___CLONE = 287 constant SYS_FKTRACE (line 143) | SYS_FKTRACE = 288 constant SYS_PREADV (line 144) | SYS_PREADV = 289 constant SYS_PWRITEV (line 145) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 146) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 147) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 148) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 149) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 150) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 151) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 152) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 153) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 154) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 155) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 156) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 157) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 158) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 159) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 160) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 161) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 162) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 163) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 164) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 165) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 166) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 167) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 168) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 169) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 170) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 171) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 172) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 173) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 174) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 175) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 176) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 177) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 178) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 179) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 180) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 181) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 182) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 183) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 184) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 185) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 186) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 187) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 188) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 189) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 190) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 191) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 192) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 193) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 194) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 195) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 196) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 197) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 198) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 199) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 200) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 201) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 202) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 203) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 204) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 205) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 206) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 207) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 208) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 209) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 210) | SYS_SOCKET = 394 constant SYS_GETFH (line 211) | SYS_GETFH = 395 constant SYS_MOUNT (line 212) | SYS_MOUNT = 410 constant SYS_MREMAP (line 213) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 214) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 215) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 216) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 217) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 218) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 219) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 220) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 221) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 222) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 223) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 224) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 225) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 226) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 227) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 228) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 229) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 230) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 231) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 232) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 233) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 234) | SYS_KEVENT = 435 constant SYS_PSELECT (line 235) | SYS_PSELECT = 436 constant SYS_POLLTS (line 236) | SYS_POLLTS = 437 constant SYS_STAT (line 237) | SYS_STAT = 439 constant SYS_FSTAT (line 238) | SYS_FSTAT = 440 constant SYS_LSTAT (line 239) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 240) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 241) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 242) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 243) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 244) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 245) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 246) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 247) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 248) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 249) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 250) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 251) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 252) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 253) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 254) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 255) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 256) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 258) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 259) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 260) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 261) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 262) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 263) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 264) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 265) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 266) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 267) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 268) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 269) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 270) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 271) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 272) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 273) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS___TFORK (line 15) | SYS___TFORK = 8 constant SYS_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 18) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 25) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 26) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 27) | SYS_GETPID = 20 constant SYS_MOUNT (line 28) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 29) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 30) | SYS_SETUID = 23 constant SYS_GETUID (line 31) | SYS_GETUID = 24 constant SYS_GETEUID (line 32) | SYS_GETEUID = 25 constant SYS_PTRACE (line 33) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 34) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 35) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 36) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 37) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 38) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 39) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 41) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 42) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 43) | SYS_SYNC = 36 constant SYS_KILL (line 44) | SYS_KILL = 37 constant SYS_STAT (line 45) | SYS_STAT = 38 constant SYS_GETPPID (line 46) | SYS_GETPPID = 39 constant SYS_LSTAT (line 47) | SYS_LSTAT = 40 constant SYS_DUP (line 48) | SYS_DUP = 41 constant SYS_FSTATAT (line 49) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 50) | SYS_GETEGID = 43 constant SYS_PROFIL (line 51) | SYS_PROFIL = 44 constant SYS_KTRACE (line 52) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 53) | SYS_SIGACTION = 46 constant SYS_GETGID (line 54) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 55) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 56) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85 constant SYS_CLOCK_GETTIME (line 92) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 93) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 94) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 95) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 96) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 97) | SYS_FCNTL = 92 constant SYS___THRSLEEP (line 98) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 99) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 100) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 101) | SYS_SOCKET = 97 constant SYS_CONNECT (line 102) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 103) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 104) | SYS_GETPRIORITY = 100 constant SYS_SIGRETURN (line 105) | SYS_SIGRETURN = 103 constant SYS_BIND (line 106) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 107) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 108) | SYS_LISTEN = 106 constant SYS_PPOLL (line 109) | SYS_PPOLL = 109 constant SYS_PSELECT (line 110) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 111) | SYS_SIGSUSPEND = 111 constant SYS_GETSOCKOPT (line 112) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 113) | SYS_READV = 120 constant SYS_WRITEV (line 114) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 115) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 116) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 117) | SYS_SETREUID = 126 constant SYS_SETREGID (line 118) | SYS_SETREGID = 127 constant SYS_RENAME (line 119) | SYS_RENAME = 128 constant SYS_FLOCK (line 120) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 121) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 122) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 123) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 124) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 125) | SYS_MKDIR = 136 constant SYS_RMDIR (line 126) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 127) | SYS_ADJTIME = 140 constant SYS_SETSID (line 128) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 129) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 130) | SYS_NFSSVC = 155 constant SYS_GETFH (line 131) | SYS_GETFH = 161 constant SYS_SYSARCH (line 132) | SYS_SYSARCH = 165 constant SYS_PREAD (line 133) | SYS_PREAD = 173 constant SYS_PWRITE (line 134) | SYS_PWRITE = 174 constant SYS_SETGID (line 135) | SYS_SETGID = 181 constant SYS_SETEGID (line 136) | SYS_SETEGID = 182 constant SYS_SETEUID (line 137) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 138) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 139) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 140) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 141) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 142) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 143) | SYS_MMAP = 197 constant SYS_LSEEK (line 144) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 145) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 146) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 147) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 148) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 149) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 150) | SYS_GETPGID = 207 constant SYS_UTRACE (line 151) | SYS_UTRACE = 209 constant SYS_SEMGET (line 152) | SYS_SEMGET = 221 constant SYS_MSGGET (line 153) | SYS_MSGGET = 225 constant SYS_MSGSND (line 154) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 155) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 156) | SYS_SHMAT = 228 constant SYS_SHMDT (line 157) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 158) | SYS_MINHERIT = 250 constant SYS_POLL (line 159) | SYS_POLL = 252 constant SYS_ISSETUGID (line 160) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 161) | SYS_LCHOWN = 254 constant SYS_GETSID (line 162) | SYS_GETSID = 255 constant SYS_MSYNC (line 163) | SYS_MSYNC = 256 constant SYS_PIPE (line 164) | SYS_PIPE = 263 constant SYS_FHOPEN (line 165) | SYS_FHOPEN = 264 constant SYS_PREADV (line 166) | SYS_PREADV = 267 constant SYS_PWRITEV (line 167) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 168) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 169) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 170) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 171) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 172) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 173) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 174) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 175) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 176) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 177) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 178) | SYS_SHMGET = 289 constant SYS_SEMOP (line 179) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 180) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 181) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 182) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 184) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 185) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 186) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 187) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 188) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 189) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 190) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 191) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 192) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 193) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 194) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 195) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 196) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 197) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 198) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 199) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 200) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 201) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 202) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 203) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 204) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 205) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 206) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS___TFORK (line 15) | SYS___TFORK = 8 constant SYS_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 18) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 25) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 26) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 27) | SYS_GETPID = 20 constant SYS_MOUNT (line 28) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 29) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 30) | SYS_SETUID = 23 constant SYS_GETUID (line 31) | SYS_GETUID = 24 constant SYS_GETEUID (line 32) | SYS_GETEUID = 25 constant SYS_PTRACE (line 33) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 34) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 35) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 36) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 37) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 38) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 39) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 41) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 42) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 43) | SYS_SYNC = 36 constant SYS_KILL (line 44) | SYS_KILL = 37 constant SYS_STAT (line 45) | SYS_STAT = 38 constant SYS_GETPPID (line 46) | SYS_GETPPID = 39 constant SYS_LSTAT (line 47) | SYS_LSTAT = 40 constant SYS_DUP (line 48) | SYS_DUP = 41 constant SYS_FSTATAT (line 49) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 50) | SYS_GETEGID = 43 constant SYS_PROFIL (line 51) | SYS_PROFIL = 44 constant SYS_KTRACE (line 52) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 53) | SYS_SIGACTION = 46 constant SYS_GETGID (line 54) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 55) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 56) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85 constant SYS_CLOCK_GETTIME (line 92) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 93) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 94) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 95) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 96) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 97) | SYS_FCNTL = 92 constant SYS___THRSLEEP (line 98) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 99) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 100) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 101) | SYS_SOCKET = 97 constant SYS_CONNECT (line 102) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 103) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 104) | SYS_GETPRIORITY = 100 constant SYS_SIGRETURN (line 105) | SYS_SIGRETURN = 103 constant SYS_BIND (line 106) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 107) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 108) | SYS_LISTEN = 106 constant SYS_PPOLL (line 109) | SYS_PPOLL = 109 constant SYS_PSELECT (line 110) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 111) | SYS_SIGSUSPEND = 111 constant SYS_GETSOCKOPT (line 112) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 113) | SYS_READV = 120 constant SYS_WRITEV (line 114) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 115) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 116) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 117) | SYS_SETREUID = 126 constant SYS_SETREGID (line 118) | SYS_SETREGID = 127 constant SYS_RENAME (line 119) | SYS_RENAME = 128 constant SYS_FLOCK (line 120) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 121) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 122) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 123) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 124) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 125) | SYS_MKDIR = 136 constant SYS_RMDIR (line 126) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 127) | SYS_ADJTIME = 140 constant SYS_SETSID (line 128) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 129) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 130) | SYS_NFSSVC = 155 constant SYS_GETFH (line 131) | SYS_GETFH = 161 constant SYS_SYSARCH (line 132) | SYS_SYSARCH = 165 constant SYS_PREAD (line 133) | SYS_PREAD = 173 constant SYS_PWRITE (line 134) | SYS_PWRITE = 174 constant SYS_SETGID (line 135) | SYS_SETGID = 181 constant SYS_SETEGID (line 136) | SYS_SETEGID = 182 constant SYS_SETEUID (line 137) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 138) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 139) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 140) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 141) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 142) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 143) | SYS_MMAP = 197 constant SYS_LSEEK (line 144) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 145) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 146) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 147) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 148) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 149) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 150) | SYS_GETPGID = 207 constant SYS_UTRACE (line 151) | SYS_UTRACE = 209 constant SYS_SEMGET (line 152) | SYS_SEMGET = 221 constant SYS_MSGGET (line 153) | SYS_MSGGET = 225 constant SYS_MSGSND (line 154) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 155) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 156) | SYS_SHMAT = 228 constant SYS_SHMDT (line 157) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 158) | SYS_MINHERIT = 250 constant SYS_POLL (line 159) | SYS_POLL = 252 constant SYS_ISSETUGID (line 160) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 161) | SYS_LCHOWN = 254 constant SYS_GETSID (line 162) | SYS_GETSID = 255 constant SYS_MSYNC (line 163) | SYS_MSYNC = 256 constant SYS_PIPE (line 164) | SYS_PIPE = 263 constant SYS_FHOPEN (line 165) | SYS_FHOPEN = 264 constant SYS_PREADV (line 166) | SYS_PREADV = 267 constant SYS_PWRITEV (line 167) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 168) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 169) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 170) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 171) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 172) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 173) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 174) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 175) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 176) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 177) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 178) | SYS_SHMGET = 289 constant SYS_SEMOP (line 179) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 180) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 181) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 182) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 184) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 185) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 186) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 187) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 188) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 189) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 190) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 191) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 192) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 193) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 194) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 195) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 196) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 197) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 198) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 199) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 200) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 201) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 202) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 203) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 204) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 205) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 206) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_GETENTROPY (line 15) | SYS_GETENTROPY = 7 constant SYS___TFORK (line 16) | SYS___TFORK = 8 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 19) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 20) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 21) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 22) | SYS_MKNOD = 14 constant SYS_CHMOD (line 23) | SYS_CHMOD = 15 constant SYS_CHOWN (line 24) | SYS_CHOWN = 16 constant SYS_OBREAK (line 25) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 26) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 27) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 28) | SYS_GETPID = 20 constant SYS_MOUNT (line 29) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 30) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 31) | SYS_SETUID = 23 constant SYS_GETUID (line 32) | SYS_GETUID = 24 constant SYS_GETEUID (line 33) | SYS_GETEUID = 25 constant SYS_PTRACE (line 34) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 35) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 36) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 37) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 38) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 39) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 40) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 41) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 42) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 43) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 44) | SYS_SYNC = 36 constant SYS_STAT (line 45) | SYS_STAT = 38 constant SYS_GETPPID (line 46) | SYS_GETPPID = 39 constant SYS_LSTAT (line 47) | SYS_LSTAT = 40 constant SYS_DUP (line 48) | SYS_DUP = 41 constant SYS_FSTATAT (line 49) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 50) | SYS_GETEGID = 43 constant SYS_PROFIL (line 51) | SYS_PROFIL = 44 constant SYS_KTRACE (line 52) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 53) | SYS_SIGACTION = 46 constant SYS_GETGID (line 54) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 55) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 56) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_SENDSYSLOG (line 90) | SYS_SENDSYSLOG = 83 constant SYS_UTIMENSAT (line 91) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 92) | SYS_FUTIMENS = 85 constant SYS_CLOCK_GETTIME (line 93) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 94) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 95) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 96) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 97) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 98) | SYS_FCNTL = 92 constant SYS_ACCEPT4 (line 99) | SYS_ACCEPT4 = 93 constant SYS___THRSLEEP (line 100) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 101) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 102) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 103) | SYS_SOCKET = 97 constant SYS_CONNECT (line 104) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 105) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 100 constant SYS_PIPE2 (line 107) | SYS_PIPE2 = 101 constant SYS_DUP3 (line 108) | SYS_DUP3 = 102 constant SYS_SIGRETURN (line 109) | SYS_SIGRETURN = 103 constant SYS_BIND (line 110) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 111) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 112) | SYS_LISTEN = 106 constant SYS_CHFLAGSAT (line 113) | SYS_CHFLAGSAT = 107 constant SYS_PPOLL (line 114) | SYS_PPOLL = 109 constant SYS_PSELECT (line 115) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 116) | SYS_SIGSUSPEND = 111 constant SYS_GETSOCKOPT (line 117) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 118) | SYS_READV = 120 constant SYS_WRITEV (line 119) | SYS_WRITEV = 121 constant SYS_KILL (line 120) | SYS_KILL = 122 constant SYS_FCHOWN (line 121) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 122) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 123) | SYS_SETREUID = 126 constant SYS_SETREGID (line 124) | SYS_SETREGID = 127 constant SYS_RENAME (line 125) | SYS_RENAME = 128 constant SYS_FLOCK (line 126) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 127) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 128) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 129) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 130) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 131) | SYS_MKDIR = 136 constant SYS_RMDIR (line 132) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 133) | SYS_ADJTIME = 140 constant SYS_SETSID (line 134) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 135) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 136) | SYS_NFSSVC = 155 constant SYS_GETFH (line 137) | SYS_GETFH = 161 constant SYS_SYSARCH (line 138) | SYS_SYSARCH = 165 constant SYS_PREAD (line 139) | SYS_PREAD = 173 constant SYS_PWRITE (line 140) | SYS_PWRITE = 174 constant SYS_SETGID (line 141) | SYS_SETGID = 181 constant SYS_SETEGID (line 142) | SYS_SETEGID = 182 constant SYS_SETEUID (line 143) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 144) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 145) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 146) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 147) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 148) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 149) | SYS_MMAP = 197 constant SYS_LSEEK (line 150) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 151) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 152) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 153) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 154) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 155) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 156) | SYS_GETPGID = 207 constant SYS_UTRACE (line 157) | SYS_UTRACE = 209 constant SYS_SEMGET (line 158) | SYS_SEMGET = 221 constant SYS_MSGGET (line 159) | SYS_MSGGET = 225 constant SYS_MSGSND (line 160) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 161) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 162) | SYS_SHMAT = 228 constant SYS_SHMDT (line 163) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 164) | SYS_MINHERIT = 250 constant SYS_POLL (line 165) | SYS_POLL = 252 constant SYS_ISSETUGID (line 166) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 167) | SYS_LCHOWN = 254 constant SYS_GETSID (line 168) | SYS_GETSID = 255 constant SYS_MSYNC (line 169) | SYS_MSYNC = 256 constant SYS_PIPE (line 170) | SYS_PIPE = 263 constant SYS_FHOPEN (line 171) | SYS_FHOPEN = 264 constant SYS_PREADV (line 172) | SYS_PREADV = 267 constant SYS_PWRITEV (line 173) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 174) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 175) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 176) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 177) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 178) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 179) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 180) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 181) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 182) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 183) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 184) | SYS_SHMGET = 289 constant SYS_SEMOP (line 185) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 186) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 187) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 188) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 189) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 190) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 191) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 192) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 193) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 194) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 195) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 196) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 197) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 198) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 199) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 200) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 201) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 202) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 203) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 204) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 205) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 206) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 207) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 208) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 209) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 210) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 211) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 212) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go constant SYS_EXECVE (line 11) | SYS_EXECVE = 59 constant SYS_FCNTL (line 12) | SYS_FCNTL = 62 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timeval32 (line 33) | type Timeval32 struct type Rusage (line 35) | type Rusage struct type Rlimit (line 54) | type Rlimit struct type _Gid_t (line 59) | type _Gid_t type Stat_t (line 61) | type Stat_t struct type Statfs_t (line 82) | type Statfs_t struct type Flock_t (line 101) | type Flock_t struct type Fstore_t (line 109) | type Fstore_t struct type Radvisory_t (line 117) | type Radvisory_t struct type Fbootstraptransfer_t (line 122) | type Fbootstraptransfer_t struct type Log2phys_t (line 128) | type Log2phys_t struct type Fsid (line 134) | type Fsid struct type Dirent (line 138) | type Dirent struct type RawSockaddrInet4 (line 148) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 156) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 165) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 171) | type RawSockaddrDatalink struct type RawSockaddr (line 182) | type RawSockaddr struct type RawSockaddrAny (line 188) | type RawSockaddrAny struct type _Socklen (line 193) | type _Socklen type Linger (line 195) | type Linger struct type Iovec (line 200) | type Iovec struct type IPMreq (line 205) | type IPMreq struct type IPv6Mreq (line 210) | type IPv6Mreq struct type Msghdr (line 215) | type Msghdr struct type Cmsghdr (line 225) | type Cmsghdr struct type Inet4Pktinfo (line 231) | type Inet4Pktinfo struct type Inet6Pktinfo (line 237) | type Inet6Pktinfo struct type IPv6MTUInfo (line 242) | type IPv6MTUInfo struct type ICMPv6Filter (line 247) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 252) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 253) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 254) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 255) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 256) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 257) | SizeofLinger = 0x8 constant SizeofIPMreq (line 258) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 259) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 260) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 261) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 262) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 263) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 264) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 265) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 269) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 270) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 271) | PTRACE_KILL = 0x8 type Kevent_t (line 274) | type Kevent_t struct type FdSet (line 283) | type FdSet struct constant SizeofIfMsghdr (line 288) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 289) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 290) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 291) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 292) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 293) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 294) | SizeofRtMetrics = 0x38 type IfMsghdr (line 297) | type IfMsghdr struct type IfData (line 308) | type IfData struct type IfaMsghdr (line 340) | type IfaMsghdr struct type IfmaMsghdr (line 351) | type IfmaMsghdr struct type IfmaMsghdr2 (line 361) | type IfmaMsghdr2 struct type RtMsghdr (line 372) | type RtMsghdr struct type RtMetrics (line 388) | type RtMetrics struct constant SizeofBpfVersion (line 403) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 404) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 405) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 406) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 407) | SizeofBpfHdr = 0x14 type BpfVersion (line 410) | type BpfVersion struct type BpfStat (line 415) | type BpfStat struct type BpfProgram (line 420) | type BpfProgram struct type BpfInsn (line 425) | type BpfInsn struct type BpfHdr (line 432) | type BpfHdr struct type Termios (line 440) | type Termios struct type Winsize (line 450) | type Winsize struct constant AT_FDCWD (line 458) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 459) | AT_REMOVEDIR = 0x80 constant AT_SYMLINK_FOLLOW (line 460) | AT_SYMLINK_FOLLOW = 0x40 constant AT_SYMLINK_NOFOLLOW (line 461) | AT_SYMLINK_NOFOLLOW = 0x20 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timeval32 (line 34) | type Timeval32 struct type Rusage (line 39) | type Rusage struct type Rlimit (line 58) | type Rlimit struct type _Gid_t (line 63) | type _Gid_t type Stat_t (line 65) | type Stat_t struct type Statfs_t (line 87) | type Statfs_t struct type Flock_t (line 106) | type Flock_t struct type Fstore_t (line 114) | type Fstore_t struct type Radvisory_t (line 122) | type Radvisory_t struct type Fbootstraptransfer_t (line 128) | type Fbootstraptransfer_t struct type Log2phys_t (line 134) | type Log2phys_t struct type Fsid (line 140) | type Fsid struct type Dirent (line 144) | type Dirent struct type RawSockaddrInet4 (line 154) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 162) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 171) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 177) | type RawSockaddrDatalink struct type RawSockaddr (line 188) | type RawSockaddr struct type RawSockaddrAny (line 194) | type RawSockaddrAny struct type _Socklen (line 199) | type _Socklen type Linger (line 201) | type Linger struct type Iovec (line 206) | type Iovec struct type IPMreq (line 211) | type IPMreq struct type IPv6Mreq (line 216) | type IPv6Mreq struct type Msghdr (line 221) | type Msghdr struct type Cmsghdr (line 233) | type Cmsghdr struct type Inet4Pktinfo (line 239) | type Inet4Pktinfo struct type Inet6Pktinfo (line 245) | type Inet6Pktinfo struct type IPv6MTUInfo (line 250) | type IPv6MTUInfo struct type ICMPv6Filter (line 255) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 260) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 261) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 262) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 263) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 264) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 265) | SizeofLinger = 0x8 constant SizeofIPMreq (line 266) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 267) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 268) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 269) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 270) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 271) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 272) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 273) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 277) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 278) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 279) | PTRACE_KILL = 0x8 type Kevent_t (line 282) | type Kevent_t struct type FdSet (line 291) | type FdSet struct constant SizeofIfMsghdr (line 296) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 297) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 298) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 299) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 300) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 301) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 302) | SizeofRtMetrics = 0x38 type IfMsghdr (line 305) | type IfMsghdr struct type IfData (line 316) | type IfData struct type IfaMsghdr (line 348) | type IfaMsghdr struct type IfmaMsghdr (line 359) | type IfmaMsghdr struct type IfmaMsghdr2 (line 369) | type IfmaMsghdr2 struct type RtMsghdr (line 380) | type RtMsghdr struct type RtMetrics (line 396) | type RtMetrics struct constant SizeofBpfVersion (line 411) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 412) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 413) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 414) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 415) | SizeofBpfHdr = 0x14 type BpfVersion (line 418) | type BpfVersion struct type BpfStat (line 423) | type BpfStat struct type BpfProgram (line 428) | type BpfProgram struct type BpfInsn (line 434) | type BpfInsn struct type BpfHdr (line 441) | type BpfHdr struct type Termios (line 449) | type Termios struct type Winsize (line 460) | type Winsize struct constant AT_FDCWD (line 468) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 469) | AT_REMOVEDIR = 0x80 constant AT_SYMLINK_FOLLOW (line 470) | AT_SYMLINK_FOLLOW = 0x40 constant AT_SYMLINK_NOFOLLOW (line 471) | AT_SYMLINK_NOFOLLOW = 0x20 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go constant sizeofPtr (line 10) | sizeofPtr = 0x4 constant sizeofShort (line 11) | sizeofShort = 0x2 constant sizeofInt (line 12) | sizeofInt = 0x4 constant sizeofLong (line 13) | sizeofLong = 0x4 constant sizeofLongLong (line 14) | sizeofLongLong = 0x8 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timeval32 (line 34) | type Timeval32 type Rusage (line 36) | type Rusage struct type Rlimit (line 55) | type Rlimit struct type _Gid_t (line 60) | type _Gid_t type Stat_t (line 62) | type Stat_t struct type Statfs_t (line 83) | type Statfs_t struct type Flock_t (line 102) | type Flock_t struct type Fstore_t (line 110) | type Fstore_t struct type Radvisory_t (line 118) | type Radvisory_t struct type Fbootstraptransfer_t (line 123) | type Fbootstraptransfer_t struct type Log2phys_t (line 129) | type Log2phys_t struct type Fsid (line 135) | type Fsid struct type Dirent (line 139) | type Dirent struct type RawSockaddrInet4 (line 149) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 157) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 166) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 172) | type RawSockaddrDatalink struct type RawSockaddr (line 183) | type RawSockaddr struct type RawSockaddrAny (line 189) | type RawSockaddrAny struct type _Socklen (line 194) | type _Socklen type Linger (line 196) | type Linger struct type Iovec (line 201) | type Iovec struct type IPMreq (line 206) | type IPMreq struct type IPv6Mreq (line 211) | type IPv6Mreq struct type Msghdr (line 216) | type Msghdr struct type Cmsghdr (line 226) | type Cmsghdr struct type Inet4Pktinfo (line 232) | type Inet4Pktinfo struct type Inet6Pktinfo (line 238) | type Inet6Pktinfo struct type IPv6MTUInfo (line 243) | type IPv6MTUInfo struct type ICMPv6Filter (line 248) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 253) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 254) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 255) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 256) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 257) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 258) | SizeofLinger = 0x8 constant SizeofIPMreq (line 259) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 260) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 261) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 262) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 263) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 264) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 265) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 266) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 270) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 271) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 272) | PTRACE_KILL = 0x8 type Kevent_t (line 275) | type Kevent_t struct type FdSet (line 284) | type FdSet struct constant SizeofIfMsghdr (line 289) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 290) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 291) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 292) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 293) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 294) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 295) | SizeofRtMetrics = 0x38 type IfMsghdr (line 298) | type IfMsghdr struct type IfData (line 309) | type IfData struct type IfaMsghdr (line 341) | type IfaMsghdr struct type IfmaMsghdr (line 352) | type IfmaMsghdr struct type IfmaMsghdr2 (line 362) | type IfmaMsghdr2 struct type RtMsghdr (line 373) | type RtMsghdr struct type RtMetrics (line 389) | type RtMetrics struct constant SizeofBpfVersion (line 404) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 405) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 406) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 407) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 408) | SizeofBpfHdr = 0x14 type BpfVersion (line 411) | type BpfVersion struct type BpfStat (line 416) | type BpfStat struct type BpfProgram (line 421) | type BpfProgram struct type BpfInsn (line 426) | type BpfInsn struct type BpfHdr (line 433) | type BpfHdr struct type Termios (line 441) | type Termios struct type Winsize (line 451) | type Winsize struct constant AT_FDCWD (line 459) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 460) | AT_REMOVEDIR = 0x80 constant AT_SYMLINK_FOLLOW (line 461) | AT_SYMLINK_FOLLOW = 0x40 constant AT_SYMLINK_NOFOLLOW (line 462) | AT_SYMLINK_NOFOLLOW = 0x20 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long (line 18) | type _C_long type _C_long_long (line 19) | type _C_long_long type Timespec (line 22) | type Timespec struct type Timeval (line 27) | type Timeval struct type Timeval32 (line 33) | type Timeval32 struct type Rusage (line 38) | type Rusage struct type Rlimit (line 57) | type Rlimit struct type _Gid_t (line 62) | type _Gid_t type Stat_t (line 64) | type Stat_t struct type Statfs_t (line 86) | type Statfs_t struct type Flock_t (line 105) | type Flock_t struct type Fstore_t (line 113) | type Fstore_t struct type Radvisory_t (line 121) | type Radvisory_t struct type Fbootstraptransfer_t (line 127) | type Fbootstraptransfer_t struct type Log2phys_t (line 133) | type Log2phys_t struct type Fsid (line 139) | type Fsid struct type Dirent (line 143) | type Dirent struct type RawSockaddrInet4 (line 153) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 161) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 170) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 176) | type RawSockaddrDatalink struct type RawSockaddr (line 187) | type RawSockaddr struct type RawSockaddrAny (line 193) | type RawSockaddrAny struct type _Socklen (line 198) | type _Socklen type Linger (line 200) | type Linger struct type Iovec (line 205) | type Iovec struct type IPMreq (line 210) | type IPMreq struct type IPv6Mreq (line 215) | type IPv6Mreq struct type Msghdr (line 220) | type Msghdr struct type Cmsghdr (line 232) | type Cmsghdr struct type Inet4Pktinfo (line 238) | type Inet4Pktinfo struct type Inet6Pktinfo (line 244) | type Inet6Pktinfo struct type IPv6MTUInfo (line 249) | type IPv6MTUInfo struct type ICMPv6Filter (line 254) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 259) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 260) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 261) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 262) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 263) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 264) | SizeofLinger = 0x8 constant SizeofIPMreq (line 265) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 266) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 267) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 268) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 269) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 270) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 271) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 272) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 276) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 277) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 278) | PTRACE_KILL = 0x8 type Kevent_t (line 281) | type Kevent_t struct type FdSet (line 290) | type FdSet struct constant SizeofIfMsghdr (line 295) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 296) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 297) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 298) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 299) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 300) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 301) | SizeofRtMetrics = 0x38 type IfMsghdr (line 304) | type IfMsghdr struct type IfData (line 315) | type IfData struct type IfaMsghdr (line 347) | type IfaMsghdr struct type IfmaMsghdr (line 358) | type IfmaMsghdr struct type IfmaMsghdr2 (line 368) | type IfmaMsghdr2 struct type RtMsghdr (line 379) | type RtMsghdr struct type RtMetrics (line 395) | type RtMetrics struct constant SizeofBpfVersion (line 410) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 411) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 412) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 413) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 414) | SizeofBpfHdr = 0x14 type BpfVersion (line 417) | type BpfVersion struct type BpfStat (line 422) | type BpfStat struct type BpfProgram (line 427) | type BpfProgram struct type BpfInsn (line 433) | type BpfInsn struct type BpfHdr (line 440) | type BpfHdr struct type Termios (line 448) | type Termios struct type Winsize (line 459) | type Winsize struct constant AT_FDCWD (line 467) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 468) | AT_REMOVEDIR = 0x80 constant AT_SYMLINK_FOLLOW (line 469) | AT_SYMLINK_FOLLOW = 0x40 constant AT_SYMLINK_NOFOLLOW (line 470) | AT_SYMLINK_NOFOLLOW = 0x20 FILE: vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 98) | type Statfs_t struct type Flock_t (line 125) | type Flock_t struct type Dirent (line 133) | type Dirent struct type Fsid (line 142) | type Fsid struct type RawSockaddrInet4 (line 146) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 154) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 163) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 169) | type RawSockaddrDatalink struct type RawSockaddr (line 182) | type RawSockaddr struct type RawSockaddrAny (line 188) | type RawSockaddrAny struct type _Socklen (line 193) | type _Socklen type Linger (line 195) | type Linger struct type Iovec (line 200) | type Iovec struct type IPMreq (line 205) | type IPMreq struct type IPv6Mreq (line 210) | type IPv6Mreq struct type Msghdr (line 215) | type Msghdr struct type Cmsghdr (line 227) | type Cmsghdr struct type Inet6Pktinfo (line 233) | type Inet6Pktinfo struct type IPv6MTUInfo (line 238) | type IPv6MTUInfo struct type ICMPv6Filter (line 243) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 248) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 249) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 250) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 251) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 252) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 253) | SizeofLinger = 0x8 constant SizeofIPMreq (line 254) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 255) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 256) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 257) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 258) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 259) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 260) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 264) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 265) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 266) | PTRACE_KILL = 0x8 type Kevent_t (line 269) | type Kevent_t struct type FdSet (line 278) | type FdSet struct constant SizeofIfMsghdr (line 283) | SizeofIfMsghdr = 0xb0 constant SizeofIfData (line 284) | SizeofIfData = 0xa0 constant SizeofIfaMsghdr (line 285) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 286) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 287) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 288) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 289) | SizeofRtMetrics = 0x70 type IfMsghdr (line 292) | type IfMsghdr struct type IfData (line 303) | type IfData struct type IfaMsghdr (line 331) | type IfaMsghdr struct type IfmaMsghdr (line 342) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 352) | type IfAnnounceMsghdr struct type RtMsghdr (line 361) | type RtMsghdr struct type RtMetrics (line 377) | type RtMetrics struct constant SizeofBpfVersion (line 397) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 398) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 399) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 400) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 401) | SizeofBpfHdr = 0x20 type BpfVersion (line 404) | type BpfVersion struct type BpfStat (line 409) | type BpfStat struct type BpfProgram (line 414) | type BpfProgram struct type BpfInsn (line 420) | type BpfInsn struct type BpfHdr (line 427) | type BpfHdr struct type Termios (line 435) | type Termios struct constant AT_FDCWD (line 446) | AT_FDCWD = 0xfffafdcd constant AT_SYMLINK_NOFOLLOW (line 447) | AT_SYMLINK_NOFOLLOW = 0x1 FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 97) | type Statfs_t struct type Flock_t (line 122) | type Flock_t struct type Dirent (line 131) | type Dirent struct type Fsid (line 139) | type Fsid struct constant FADV_NORMAL (line 144) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 145) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 146) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 147) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 148) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 149) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 152) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 160) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 169) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 175) | type RawSockaddrDatalink struct type RawSockaddr (line 186) | type RawSockaddr struct type RawSockaddrAny (line 192) | type RawSockaddrAny struct type _Socklen (line 197) | type _Socklen type Linger (line 199) | type Linger struct type Iovec (line 204) | type Iovec struct type IPMreq (line 209) | type IPMreq struct type IPMreqn (line 214) | type IPMreqn struct type IPv6Mreq (line 220) | type IPv6Mreq struct type Msghdr (line 225) | type Msghdr struct type Cmsghdr (line 235) | type Cmsghdr struct type Inet6Pktinfo (line 241) | type Inet6Pktinfo struct type IPv6MTUInfo (line 246) | type IPv6MTUInfo struct type ICMPv6Filter (line 251) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 256) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 257) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 258) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 259) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 260) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 261) | SizeofLinger = 0x8 constant SizeofIPMreq (line 262) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 263) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 264) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 265) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 266) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 267) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 268) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 269) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 273) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 274) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 275) | PTRACE_KILL = 0x8 type Kevent_t (line 278) | type Kevent_t struct type FdSet (line 287) | type FdSet struct constant sizeofIfMsghdr (line 292) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 293) | SizeofIfMsghdr = 0x60 constant sizeofIfData (line 294) | sizeofIfData = 0x98 constant SizeofIfData (line 295) | SizeofIfData = 0x50 constant SizeofIfaMsghdr (line 296) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 297) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 298) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 299) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 300) | SizeofRtMetrics = 0x38 type ifMsghdr (line 303) | type ifMsghdr struct type IfMsghdr (line 314) | type IfMsghdr struct type ifData (line 325) | type ifData struct type IfData (line 353) | type IfData struct type IfaMsghdr (line 381) | type IfaMsghdr struct type IfmaMsghdr (line 392) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 402) | type IfAnnounceMsghdr struct type RtMsghdr (line 411) | type RtMsghdr struct type RtMetrics (line 427) | type RtMetrics struct constant SizeofBpfVersion (line 443) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 444) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 445) | SizeofBpfZbuf = 0xc constant SizeofBpfProgram (line 446) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 447) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 448) | SizeofBpfHdr = 0x14 constant SizeofBpfZbufHeader (line 449) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 452) | type BpfVersion struct type BpfStat (line 457) | type BpfStat struct type BpfZbuf (line 462) | type BpfZbuf struct type BpfProgram (line 468) | type BpfProgram struct type BpfInsn (line 473) | type BpfInsn struct type BpfHdr (line 480) | type BpfHdr struct type BpfZbufHeader (line 488) | type BpfZbufHeader struct type Termios (line 495) | type Termios struct type Winsize (line 505) | type Winsize struct constant AT_FDCWD (line 513) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 514) | AT_REMOVEDIR = 0x800 constant AT_SYMLINK_FOLLOW (line 515) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 516) | AT_SYMLINK_NOFOLLOW = 0x200 type CapRights (line 519) | type CapRights struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 96) | type Statfs_t struct type Flock_t (line 121) | type Flock_t struct type Dirent (line 131) | type Dirent struct type Fsid (line 139) | type Fsid struct constant FADV_NORMAL (line 144) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 145) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 146) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 147) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 148) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 149) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 152) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 160) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 169) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 175) | type RawSockaddrDatalink struct type RawSockaddr (line 186) | type RawSockaddr struct type RawSockaddrAny (line 192) | type RawSockaddrAny struct type _Socklen (line 197) | type _Socklen type Linger (line 199) | type Linger struct type Iovec (line 204) | type Iovec struct type IPMreq (line 209) | type IPMreq struct type IPMreqn (line 214) | type IPMreqn struct type IPv6Mreq (line 220) | type IPv6Mreq struct type Msghdr (line 225) | type Msghdr struct type Cmsghdr (line 237) | type Cmsghdr struct type Inet6Pktinfo (line 243) | type Inet6Pktinfo struct type IPv6MTUInfo (line 248) | type IPv6MTUInfo struct type ICMPv6Filter (line 253) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 258) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 259) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 260) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 261) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 262) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 263) | SizeofLinger = 0x8 constant SizeofIPMreq (line 264) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 265) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 266) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 267) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 268) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 269) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 270) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 271) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 275) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 276) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 277) | PTRACE_KILL = 0x8 type Kevent_t (line 280) | type Kevent_t struct type FdSet (line 289) | type FdSet struct constant sizeofIfMsghdr (line 294) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 295) | SizeofIfMsghdr = 0xa8 constant sizeofIfData (line 296) | sizeofIfData = 0x98 constant SizeofIfData (line 297) | SizeofIfData = 0x98 constant SizeofIfaMsghdr (line 298) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 299) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 300) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 301) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 302) | SizeofRtMetrics = 0x70 type ifMsghdr (line 305) | type ifMsghdr struct type IfMsghdr (line 316) | type IfMsghdr struct type ifData (line 327) | type ifData struct type IfData (line 355) | type IfData struct type IfaMsghdr (line 383) | type IfaMsghdr struct type IfmaMsghdr (line 394) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 404) | type IfAnnounceMsghdr struct type RtMsghdr (line 413) | type RtMsghdr struct type RtMetrics (line 429) | type RtMetrics struct constant SizeofBpfVersion (line 445) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 446) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 447) | SizeofBpfZbuf = 0x18 constant SizeofBpfProgram (line 448) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 449) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 450) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 451) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 454) | type BpfVersion struct type BpfStat (line 459) | type BpfStat struct type BpfZbuf (line 464) | type BpfZbuf struct type BpfProgram (line 470) | type BpfProgram struct type BpfInsn (line 476) | type BpfInsn struct type BpfHdr (line 483) | type BpfHdr struct type BpfZbufHeader (line 491) | type BpfZbufHeader struct type Termios (line 498) | type Termios struct type Winsize (line 508) | type Winsize struct constant AT_FDCWD (line 516) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 517) | AT_REMOVEDIR = 0x800 constant AT_SYMLINK_FOLLOW (line 518) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 519) | AT_SYMLINK_NOFOLLOW = 0x200 type CapRights (line 522) | type CapRights struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 29) | type Timeval struct type Rusage (line 35) | type Rusage struct type Rlimit (line 54) | type Rlimit struct type _Gid_t (line 59) | type _Gid_t constant S_IFMT (line 62) | S_IFMT = 0xf000 constant S_IFIFO (line 63) | S_IFIFO = 0x1000 constant S_IFCHR (line 64) | S_IFCHR = 0x2000 constant S_IFDIR (line 65) | S_IFDIR = 0x4000 constant S_IFBLK (line 66) | S_IFBLK = 0x6000 constant S_IFREG (line 67) | S_IFREG = 0x8000 constant S_IFLNK (line 68) | S_IFLNK = 0xa000 constant S_IFSOCK (line 69) | S_IFSOCK = 0xc000 constant S_ISUID (line 70) | S_ISUID = 0x800 constant S_ISGID (line 71) | S_ISGID = 0x400 constant S_ISVTX (line 72) | S_ISVTX = 0x200 constant S_IRUSR (line 73) | S_IRUSR = 0x100 constant S_IWUSR (line 74) | S_IWUSR = 0x80 constant S_IXUSR (line 75) | S_IXUSR = 0x40 type Stat_t (line 78) | type Stat_t struct type Statfs_t (line 98) | type Statfs_t struct type Flock_t (line 123) | type Flock_t struct type Dirent (line 133) | type Dirent struct type Fsid (line 141) | type Fsid struct constant FADV_NORMAL (line 146) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 147) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 148) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 149) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 150) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 151) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 154) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 162) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 171) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 177) | type RawSockaddrDatalink struct type RawSockaddr (line 188) | type RawSockaddr struct type RawSockaddrAny (line 194) | type RawSockaddrAny struct type _Socklen (line 199) | type _Socklen type Linger (line 201) | type Linger struct type Iovec (line 206) | type Iovec struct type IPMreq (line 211) | type IPMreq struct type IPMreqn (line 216) | type IPMreqn struct type IPv6Mreq (line 222) | type IPv6Mreq struct type Msghdr (line 227) | type Msghdr struct type Cmsghdr (line 237) | type Cmsghdr struct type Inet6Pktinfo (line 243) | type Inet6Pktinfo struct type IPv6MTUInfo (line 248) | type IPv6MTUInfo struct type ICMPv6Filter (line 253) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 258) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 259) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 260) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 261) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 262) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 263) | SizeofLinger = 0x8 constant SizeofIPMreq (line 264) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 265) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 266) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 267) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 268) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 269) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 270) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 271) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 275) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 276) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 277) | PTRACE_KILL = 0x8 type Kevent_t (line 280) | type Kevent_t struct type FdSet (line 289) | type FdSet struct constant sizeofIfMsghdr (line 294) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 295) | SizeofIfMsghdr = 0x70 constant sizeofIfData (line 296) | sizeofIfData = 0x98 constant SizeofIfData (line 297) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 298) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 299) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 300) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 301) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 302) | SizeofRtMetrics = 0x38 type ifMsghdr (line 305) | type ifMsghdr struct type IfMsghdr (line 316) | type IfMsghdr struct type ifData (line 327) | type ifData struct type IfData (line 355) | type IfData struct type IfaMsghdr (line 384) | type IfaMsghdr struct type IfmaMsghdr (line 395) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 405) | type IfAnnounceMsghdr struct type RtMsghdr (line 414) | type RtMsghdr struct type RtMetrics (line 430) | type RtMetrics struct constant SizeofBpfVersion (line 446) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 447) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 448) | SizeofBpfZbuf = 0xc constant SizeofBpfProgram (line 449) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 450) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 451) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 452) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 455) | type BpfVersion struct type BpfStat (line 460) | type BpfStat struct type BpfZbuf (line 465) | type BpfZbuf struct type BpfProgram (line 471) | type BpfProgram struct type BpfInsn (line 476) | type BpfInsn struct type BpfHdr (line 483) | type BpfHdr struct type BpfZbufHeader (line 491) | type BpfZbufHeader struct type Termios (line 498) | type Termios struct type Winsize (line 508) | type Winsize struct constant AT_FDCWD (line 516) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 517) | AT_REMOVEDIR = 0x800 constant AT_SYMLINK_FOLLOW (line 518) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 519) | AT_SYMLINK_NOFOLLOW = 0x200 type CapRights (line 522) | type CapRights struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 58) | type Time_t type Tms (line 60) | type Tms struct type Utimbuf (line 67) | type Utimbuf struct type Rusage (line 72) | type Rusage struct type Rlimit (line 91) | type Rlimit struct type _Gid_t (line 96) | type _Gid_t type Stat_t (line 98) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct type FscryptPolicy (line 155) | type FscryptPolicy struct type FscryptKey (line 163) | type FscryptKey struct type KeyctlDHParams (line 169) | type KeyctlDHParams struct constant FADV_NORMAL (line 176) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 177) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 178) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 179) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 180) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 181) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 184) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 191) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 199) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 204) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 214) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 221) | type RawSockaddrHCI struct type RawSockaddrCAN (line 227) | type RawSockaddrCAN struct type RawSockaddrALG (line 234) | type RawSockaddrALG struct type RawSockaddrVM (line 242) | type RawSockaddrVM struct type RawSockaddr (line 250) | type RawSockaddr struct type RawSockaddrAny (line 255) | type RawSockaddrAny struct type _Socklen (line 260) | type _Socklen type Linger (line 262) | type Linger struct type Iovec (line 267) | type Iovec struct type IPMreq (line 272) | type IPMreq struct type IPMreqn (line 277) | type IPMreqn struct type IPv6Mreq (line 283) | type IPv6Mreq struct type PacketMreq (line 288) | type PacketMreq struct type Msghdr (line 295) | type Msghdr struct type Cmsghdr (line 305) | type Cmsghdr struct type Inet4Pktinfo (line 311) | type Inet4Pktinfo struct type Inet6Pktinfo (line 317) | type Inet6Pktinfo struct type IPv6MTUInfo (line 322) | type IPv6MTUInfo struct type ICMPv6Filter (line 327) | type ICMPv6Filter struct type Ucred (line 331) | type Ucred struct type TCPInfo (line 337) | type TCPInfo struct constant SizeofSockaddrInet4 (line 372) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 373) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 374) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 375) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 376) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 377) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 378) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 379) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 380) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 381) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 382) | SizeofLinger = 0x8 constant SizeofIovec (line 383) | SizeofIovec = 0x8 constant SizeofIPMreq (line 384) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 385) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 386) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 387) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 388) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 389) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 390) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 391) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 392) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 393) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 394) | SizeofUcred = 0xc constant SizeofTCPInfo (line 395) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 399) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 400) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 401) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 402) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 403) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 404) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 405) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 406) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 407) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 408) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 409) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 410) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 411) | IFLA_MTU = 0x4 constant IFLA_LINK (line 412) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 413) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 414) | IFLA_STATS = 0x7 constant IFLA_COST (line 415) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 416) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 417) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 418) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 419) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 420) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 421) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 422) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 423) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 424) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 425) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 426) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 427) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 428) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 429) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 430) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 431) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 432) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 433) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 434) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 435) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 436) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 437) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 438) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 439) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 440) | RTA_UNSPEC = 0x0 constant RTA_DST (line 441) | RTA_DST = 0x1 constant RTA_SRC (line 442) | RTA_SRC = 0x2 constant RTA_IIF (line 443) | RTA_IIF = 0x3 constant RTA_OIF (line 444) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 445) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 446) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 447) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 448) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 449) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 450) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 451) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 452) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 453) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 454) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 455) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 456) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 457) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 458) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 459) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 460) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 461) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 462) | RTN_THROW = 0x9 constant RTN_NAT (line 463) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 464) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 465) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 466) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 467) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 468) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 469) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 470) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 471) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 472) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 473) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 474) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 475) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 476) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 477) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 478) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 479) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 480) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 481) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 482) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 483) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 484) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 485) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 486) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 487) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 488) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 489) | SizeofRtNexthop = 0x8 type NlMsghdr (line 492) | type NlMsghdr struct type NlMsgerr (line 500) | type NlMsgerr struct type RtGenmsg (line 505) | type RtGenmsg struct type NlAttr (line 509) | type NlAttr struct type RtAttr (line 514) | type RtAttr struct type IfInfomsg (line 519) | type IfInfomsg struct type IfAddrmsg (line 528) | type IfAddrmsg struct type RtMsg (line 536) | type RtMsg struct type RtNexthop (line 548) | type RtNexthop struct constant SizeofSockFilter (line 556) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 557) | SizeofSockFprog = 0x8 type SockFilter (line 560) | type SockFilter struct type SockFprog (line 567) | type SockFprog struct type InotifyEvent (line 573) | type InotifyEvent struct constant SizeofInotifyEvent (line 580) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 582) | type PtraceRegs struct type FdSet (line 602) | type FdSet struct type Sysinfo_t (line 606) | type Sysinfo_t struct type Utsname (line 623) | type Utsname struct type Ustat_t (line 632) | type Ustat_t struct type EpollEvent (line 639) | type EpollEvent struct constant AT_FDCWD (line 646) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 647) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 648) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 649) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 652) | type PollFd struct constant POLLIN (line 659) | POLLIN = 0x1 constant POLLPRI (line 660) | POLLPRI = 0x2 constant POLLOUT (line 661) | POLLOUT = 0x4 constant POLLRDHUP (line 662) | POLLRDHUP = 0x2000 constant POLLERR (line 663) | POLLERR = 0x8 constant POLLHUP (line 664) | POLLHUP = 0x10 constant POLLNVAL (line 665) | POLLNVAL = 0x20 type Sigset_t (line 668) | type Sigset_t struct constant RNDGETENTCNT (line 672) | RNDGETENTCNT = 0x80045200 constant PERF_IOC_FLAG_GROUP (line 674) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 676) | _SC_PAGESIZE = 0x1e type Termios (line 678) | type Termios struct type Winsize (line 689) | type Winsize struct type Taskstats (line 696) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 747) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 748) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 749) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 750) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 751) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 752) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 753) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 754) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 755) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 756) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 757) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 758) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 759) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 760) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 761) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 764) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 771) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 772) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 773) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 774) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 775) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 776) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 777) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 778) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 779) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 780) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 781) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 782) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 783) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 784) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 785) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 786) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 787) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 788) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 789) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 790) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 791) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 792) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 793) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 794) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct type FscryptPolicy (line 157) | type FscryptPolicy struct type FscryptKey (line 165) | type FscryptKey struct type KeyctlDHParams (line 171) | type KeyctlDHParams struct constant FADV_NORMAL (line 178) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 179) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 180) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 181) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 182) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 183) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 186) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 193) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 201) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 206) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 216) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 223) | type RawSockaddrHCI struct type RawSockaddrCAN (line 229) | type RawSockaddrCAN struct type RawSockaddrALG (line 236) | type RawSockaddrALG struct type RawSockaddrVM (line 244) | type RawSockaddrVM struct type RawSockaddr (line 252) | type RawSockaddr struct type RawSockaddrAny (line 257) | type RawSockaddrAny struct type _Socklen (line 262) | type _Socklen type Linger (line 264) | type Linger struct type Iovec (line 269) | type Iovec struct type IPMreq (line 274) | type IPMreq struct type IPMreqn (line 279) | type IPMreqn struct type IPv6Mreq (line 285) | type IPv6Mreq struct type PacketMreq (line 290) | type PacketMreq struct type Msghdr (line 297) | type Msghdr struct type Cmsghdr (line 309) | type Cmsghdr struct type Inet4Pktinfo (line 315) | type Inet4Pktinfo struct type Inet6Pktinfo (line 321) | type Inet6Pktinfo struct type IPv6MTUInfo (line 326) | type IPv6MTUInfo struct type ICMPv6Filter (line 331) | type ICMPv6Filter struct type Ucred (line 335) | type Ucred struct type TCPInfo (line 341) | type TCPInfo struct constant SizeofSockaddrInet4 (line 376) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 377) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 378) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 379) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 380) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 381) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 382) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 383) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 384) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 385) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 386) | SizeofLinger = 0x8 constant SizeofIovec (line 387) | SizeofIovec = 0x10 constant SizeofIPMreq (line 388) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 389) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 390) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 391) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 392) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 393) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 394) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 395) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 396) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 397) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 398) | SizeofUcred = 0xc constant SizeofTCPInfo (line 399) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 403) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 404) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 405) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 406) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 407) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 408) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 409) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 410) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 411) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 412) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 413) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 414) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 415) | IFLA_MTU = 0x4 constant IFLA_LINK (line 416) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 417) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 418) | IFLA_STATS = 0x7 constant IFLA_COST (line 419) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 420) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 421) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 422) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 423) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 424) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 425) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 426) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 427) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 428) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 429) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 430) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 431) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 432) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 433) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 434) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 435) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 436) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 437) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 438) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 439) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 440) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 441) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 442) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 443) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 444) | RTA_UNSPEC = 0x0 constant RTA_DST (line 445) | RTA_DST = 0x1 constant RTA_SRC (line 446) | RTA_SRC = 0x2 constant RTA_IIF (line 447) | RTA_IIF = 0x3 constant RTA_OIF (line 448) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 449) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 450) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 451) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 452) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 453) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 454) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 455) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 456) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 457) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 458) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 459) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 460) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 461) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 462) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 463) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 464) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 465) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 466) | RTN_THROW = 0x9 constant RTN_NAT (line 467) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 468) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 469) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 470) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 471) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 472) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 473) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 474) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 475) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 476) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 477) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 478) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 479) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 480) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 481) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 482) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 483) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 484) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 485) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 486) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 487) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 488) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 489) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 490) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 491) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 492) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 493) | SizeofRtNexthop = 0x8 type NlMsghdr (line 496) | type NlMsghdr struct type NlMsgerr (line 504) | type NlMsgerr struct type RtGenmsg (line 509) | type RtGenmsg struct type NlAttr (line 513) | type NlAttr struct type RtAttr (line 518) | type RtAttr struct type IfInfomsg (line 523) | type IfInfomsg struct type IfAddrmsg (line 532) | type IfAddrmsg struct type RtMsg (line 540) | type RtMsg struct type RtNexthop (line 552) | type RtNexthop struct constant SizeofSockFilter (line 560) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 561) | SizeofSockFprog = 0x10 type SockFilter (line 564) | type SockFilter struct type SockFprog (line 571) | type SockFprog struct type InotifyEvent (line 577) | type InotifyEvent struct constant SizeofInotifyEvent (line 584) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 586) | type PtraceRegs struct type FdSet (line 616) | type FdSet struct type Sysinfo_t (line 620) | type Sysinfo_t struct type Utsname (line 639) | type Utsname struct type Ustat_t (line 648) | type Ustat_t struct type EpollEvent (line 657) | type EpollEvent struct constant AT_FDCWD (line 664) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 665) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 666) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 667) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 670) | type PollFd struct constant POLLIN (line 677) | POLLIN = 0x1 constant POLLPRI (line 678) | POLLPRI = 0x2 constant POLLOUT (line 679) | POLLOUT = 0x4 constant POLLRDHUP (line 680) | POLLRDHUP = 0x2000 constant POLLERR (line 681) | POLLERR = 0x8 constant POLLHUP (line 682) | POLLHUP = 0x10 constant POLLNVAL (line 683) | POLLNVAL = 0x20 type Sigset_t (line 686) | type Sigset_t struct constant RNDGETENTCNT (line 690) | RNDGETENTCNT = 0x80045200 constant PERF_IOC_FLAG_GROUP (line 692) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 694) | _SC_PAGESIZE = 0x1e type Termios (line 696) | type Termios struct type Winsize (line 707) | type Winsize struct type Taskstats (line 714) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 765) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 766) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 767) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 768) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 769) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 770) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 771) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 772) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 773) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 774) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 775) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 776) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 777) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 778) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 779) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 782) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 789) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 790) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 791) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 792) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 793) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 794) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 795) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 796) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 797) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 798) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 799) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 800) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 801) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 802) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 803) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 804) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 805) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 806) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 807) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 808) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 809) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 810) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 811) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 812) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_arm.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 58) | type Time_t type Tms (line 60) | type Tms struct type Utimbuf (line 67) | type Utimbuf struct type Rusage (line 72) | type Rusage struct type Rlimit (line 91) | type Rlimit struct type _Gid_t (line 96) | type _Gid_t type Stat_t (line 98) | type Stat_t struct type Statfs_t (line 120) | type Statfs_t struct type Dirent (line 136) | type Dirent struct type Fsid (line 145) | type Fsid struct type Flock_t (line 149) | type Flock_t struct type FscryptPolicy (line 159) | type FscryptPolicy struct type FscryptKey (line 167) | type FscryptKey struct type KeyctlDHParams (line 173) | type KeyctlDHParams struct constant FADV_NORMAL (line 180) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 181) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 182) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 183) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 184) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 185) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 188) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 195) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 203) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 208) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 218) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 225) | type RawSockaddrHCI struct type RawSockaddrCAN (line 231) | type RawSockaddrCAN struct type RawSockaddrALG (line 238) | type RawSockaddrALG struct type RawSockaddrVM (line 246) | type RawSockaddrVM struct type RawSockaddr (line 254) | type RawSockaddr struct type RawSockaddrAny (line 259) | type RawSockaddrAny struct type _Socklen (line 264) | type _Socklen type Linger (line 266) | type Linger struct type Iovec (line 271) | type Iovec struct type IPMreq (line 276) | type IPMreq struct type IPMreqn (line 281) | type IPMreqn struct type IPv6Mreq (line 287) | type IPv6Mreq struct type PacketMreq (line 292) | type PacketMreq struct type Msghdr (line 299) | type Msghdr struct type Cmsghdr (line 309) | type Cmsghdr struct type Inet4Pktinfo (line 315) | type Inet4Pktinfo struct type Inet6Pktinfo (line 321) | type Inet6Pktinfo struct type IPv6MTUInfo (line 326) | type IPv6MTUInfo struct type ICMPv6Filter (line 331) | type ICMPv6Filter struct type Ucred (line 335) | type Ucred struct type TCPInfo (line 341) | type TCPInfo struct constant SizeofSockaddrInet4 (line 376) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 377) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 378) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 379) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 380) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 381) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 382) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 383) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 384) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 385) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 386) | SizeofLinger = 0x8 constant SizeofIovec (line 387) | SizeofIovec = 0x8 constant SizeofIPMreq (line 388) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 389) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 390) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 391) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 392) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 393) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 394) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 395) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 396) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 397) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 398) | SizeofUcred = 0xc constant SizeofTCPInfo (line 399) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 403) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 404) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 405) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 406) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 407) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 408) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 409) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 410) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 411) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 412) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 413) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 414) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 415) | IFLA_MTU = 0x4 constant IFLA_LINK (line 416) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 417) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 418) | IFLA_STATS = 0x7 constant IFLA_COST (line 419) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 420) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 421) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 422) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 423) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 424) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 425) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 426) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 427) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 428) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 429) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 430) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 431) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 432) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 433) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 434) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 435) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 436) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 437) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 438) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 439) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 440) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 441) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 442) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 443) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 444) | RTA_UNSPEC = 0x0 constant RTA_DST (line 445) | RTA_DST = 0x1 constant RTA_SRC (line 446) | RTA_SRC = 0x2 constant RTA_IIF (line 447) | RTA_IIF = 0x3 constant RTA_OIF (line 448) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 449) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 450) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 451) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 452) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 453) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 454) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 455) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 456) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 457) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 458) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 459) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 460) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 461) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 462) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 463) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 464) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 465) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 466) | RTN_THROW = 0x9 constant RTN_NAT (line 467) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 468) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 469) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 470) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 471) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 472) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 473) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 474) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 475) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 476) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 477) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 478) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 479) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 480) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 481) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 482) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 483) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 484) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 485) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 486) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 487) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 488) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 489) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 490) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 491) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 492) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 493) | SizeofRtNexthop = 0x8 type NlMsghdr (line 496) | type NlMsghdr struct type NlMsgerr (line 504) | type NlMsgerr struct type RtGenmsg (line 509) | type RtGenmsg struct type NlAttr (line 513) | type NlAttr struct type RtAttr (line 518) | type RtAttr struct type IfInfomsg (line 523) | type IfInfomsg struct type IfAddrmsg (line 532) | type IfAddrmsg struct type RtMsg (line 540) | type RtMsg struct type RtNexthop (line 552) | type RtNexthop struct constant SizeofSockFilter (line 560) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 561) | SizeofSockFprog = 0x8 type SockFilter (line 564) | type SockFilter struct type SockFprog (line 571) | type SockFprog struct type InotifyEvent (line 577) | type InotifyEvent struct constant SizeofInotifyEvent (line 584) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 586) | type PtraceRegs struct type FdSet (line 590) | type FdSet struct type Sysinfo_t (line 594) | type Sysinfo_t struct type Utsname (line 611) | type Utsname struct type Ustat_t (line 620) | type Ustat_t struct type EpollEvent (line 627) | type EpollEvent struct constant AT_FDCWD (line 635) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 636) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 637) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 638) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 641) | type PollFd struct constant POLLIN (line 648) | POLLIN = 0x1 constant POLLPRI (line 649) | POLLPRI = 0x2 constant POLLOUT (line 650) | POLLOUT = 0x4 constant POLLRDHUP (line 651) | POLLRDHUP = 0x2000 constant POLLERR (line 652) | POLLERR = 0x8 constant POLLHUP (line 653) | POLLHUP = 0x10 constant POLLNVAL (line 654) | POLLNVAL = 0x20 type Sigset_t (line 657) | type Sigset_t struct constant RNDGETENTCNT (line 661) | RNDGETENTCNT = 0x80045200 constant PERF_IOC_FLAG_GROUP (line 663) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 665) | _SC_PAGESIZE = 0x1e type Termios (line 667) | type Termios struct type Winsize (line 678) | type Winsize struct type Taskstats (line 685) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 736) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 737) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 738) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 739) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 740) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 741) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 742) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 743) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 744) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 745) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 746) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 747) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 748) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 749) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 750) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 753) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 760) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 761) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 762) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 763) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 764) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 765) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 766) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 767) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 768) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 769) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 770) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 771) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 772) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 773) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 774) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 775) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 776) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 777) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 778) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 779) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 780) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 781) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 782) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 783) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 120) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct type FscryptPolicy (line 158) | type FscryptPolicy struct type FscryptKey (line 166) | type FscryptKey struct type KeyctlDHParams (line 172) | type KeyctlDHParams struct constant FADV_NORMAL (line 179) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 180) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 181) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 182) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 183) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 184) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 187) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 194) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 202) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 207) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 217) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 224) | type RawSockaddrHCI struct type RawSockaddrCAN (line 230) | type RawSockaddrCAN struct type RawSockaddrALG (line 237) | type RawSockaddrALG struct type RawSockaddrVM (line 245) | type RawSockaddrVM struct type RawSockaddr (line 253) | type RawSockaddr struct type RawSockaddrAny (line 258) | type RawSockaddrAny struct type _Socklen (line 263) | type _Socklen type Linger (line 265) | type Linger struct type Iovec (line 270) | type Iovec struct type IPMreq (line 275) | type IPMreq struct type IPMreqn (line 280) | type IPMreqn struct type IPv6Mreq (line 286) | type IPv6Mreq struct type PacketMreq (line 291) | type PacketMreq struct type Msghdr (line 298) | type Msghdr struct type Cmsghdr (line 310) | type Cmsghdr struct type Inet4Pktinfo (line 316) | type Inet4Pktinfo struct type Inet6Pktinfo (line 322) | type Inet6Pktinfo struct type IPv6MTUInfo (line 327) | type IPv6MTUInfo struct type ICMPv6Filter (line 332) | type ICMPv6Filter struct type Ucred (line 336) | type Ucred struct type TCPInfo (line 342) | type TCPInfo struct constant SizeofSockaddrInet4 (line 377) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 378) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 379) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 380) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 381) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 382) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 383) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 384) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 385) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 386) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 387) | SizeofLinger = 0x8 constant SizeofIovec (line 388) | SizeofIovec = 0x10 constant SizeofIPMreq (line 389) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 390) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 391) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 392) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 393) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 394) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 395) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 396) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 397) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 398) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 399) | SizeofUcred = 0xc constant SizeofTCPInfo (line 400) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 404) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 405) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 406) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 407) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 408) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 409) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 410) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 411) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 412) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 413) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 414) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 415) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 416) | IFLA_MTU = 0x4 constant IFLA_LINK (line 417) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 418) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 419) | IFLA_STATS = 0x7 constant IFLA_COST (line 420) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 421) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 422) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 423) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 424) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 425) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 426) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 427) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 428) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 429) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 430) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 431) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 432) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 433) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 434) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 435) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 436) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 437) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 438) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 439) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 440) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 441) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 442) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 443) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 444) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 445) | RTA_UNSPEC = 0x0 constant RTA_DST (line 446) | RTA_DST = 0x1 constant RTA_SRC (line 447) | RTA_SRC = 0x2 constant RTA_IIF (line 448) | RTA_IIF = 0x3 constant RTA_OIF (line 449) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 450) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 451) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 452) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 453) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 454) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 455) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 456) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 457) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 458) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 459) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 460) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 461) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 462) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 463) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 464) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 465) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 466) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 467) | RTN_THROW = 0x9 constant RTN_NAT (line 468) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 469) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 470) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 471) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 472) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 473) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 474) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 475) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 476) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 477) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 478) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 479) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 480) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 481) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 482) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 483) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 484) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 485) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 486) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 487) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 488) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 489) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 490) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 491) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 492) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 493) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 494) | SizeofRtNexthop = 0x8 type NlMsghdr (line 497) | type NlMsghdr struct type NlMsgerr (line 505) | type NlMsgerr struct type RtGenmsg (line 510) | type RtGenmsg struct type NlAttr (line 514) | type NlAttr struct type RtAttr (line 519) | type RtAttr struct type IfInfomsg (line 524) | type IfInfomsg struct type IfAddrmsg (line 533) | type IfAddrmsg struct type RtMsg (line 541) | type RtMsg struct type RtNexthop (line 553) | type RtNexthop struct constant SizeofSockFilter (line 561) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 562) | SizeofSockFprog = 0x10 type SockFilter (line 565) | type SockFilter struct type SockFprog (line 572) | type SockFprog struct type InotifyEvent (line 578) | type InotifyEvent struct constant SizeofInotifyEvent (line 585) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 587) | type PtraceRegs struct type FdSet (line 594) | type FdSet struct type Sysinfo_t (line 598) | type Sysinfo_t struct type Utsname (line 617) | type Utsname struct type Ustat_t (line 626) | type Ustat_t struct type EpollEvent (line 635) | type EpollEvent struct constant AT_FDCWD (line 643) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 644) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 645) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 646) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 649) | type PollFd struct constant POLLIN (line 656) | POLLIN = 0x1 constant POLLPRI (line 657) | POLLPRI = 0x2 constant POLLOUT (line 658) | POLLOUT = 0x4 constant POLLRDHUP (line 659) | POLLRDHUP = 0x2000 constant POLLERR (line 660) | POLLERR = 0x8 constant POLLHUP (line 661) | POLLHUP = 0x10 constant POLLNVAL (line 662) | POLLNVAL = 0x20 type Sigset_t (line 665) | type Sigset_t struct constant RNDGETENTCNT (line 669) | RNDGETENTCNT = 0x80045200 constant PERF_IOC_FLAG_GROUP (line 671) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 673) | _SC_PAGESIZE = 0x1e type Termios (line 675) | type Termios struct type Winsize (line 686) | type Winsize struct type Taskstats (line 693) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 744) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 745) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 746) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 747) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 748) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 749) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 750) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 751) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 752) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 753) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 754) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 755) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 756) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 757) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 758) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 761) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 768) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 769) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 770) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 771) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 772) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 773) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 774) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 775) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 776) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 777) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 778) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 779) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 780) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 781) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 782) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 783) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 784) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 785) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 786) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 787) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 788) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 789) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 790) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 791) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 58) | type Time_t type Tms (line 60) | type Tms struct type Utimbuf (line 67) | type Utimbuf struct type Rusage (line 72) | type Rusage struct type Rlimit (line 91) | type Rlimit struct type _Gid_t (line 96) | type _Gid_t type Stat_t (line 98) | type Stat_t struct type Statfs_t (line 118) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct type FscryptPolicy (line 158) | type FscryptPolicy struct type FscryptKey (line 166) | type FscryptKey struct type KeyctlDHParams (line 172) | type KeyctlDHParams struct constant FADV_NORMAL (line 179) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 180) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 181) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 182) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 183) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 184) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 187) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 194) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 202) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 207) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 217) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 224) | type RawSockaddrHCI struct type RawSockaddrCAN (line 230) | type RawSockaddrCAN struct type RawSockaddrALG (line 237) | type RawSockaddrALG struct type RawSockaddrVM (line 245) | type RawSockaddrVM struct type RawSockaddr (line 253) | type RawSockaddr struct type RawSockaddrAny (line 258) | type RawSockaddrAny struct type _Socklen (line 263) | type _Socklen type Linger (line 265) | type Linger struct type Iovec (line 270) | type Iovec struct type IPMreq (line 275) | type IPMreq struct type IPMreqn (line 280) | type IPMreqn struct type IPv6Mreq (line 286) | type IPv6Mreq struct type PacketMreq (line 291) | type PacketMreq struct type Msghdr (line 298) | type Msghdr struct type Cmsghdr (line 308) | type Cmsghdr struct type Inet4Pktinfo (line 314) | type Inet4Pktinfo struct type Inet6Pktinfo (line 320) | type Inet6Pktinfo struct type IPv6MTUInfo (line 325) | type IPv6MTUInfo struct type ICMPv6Filter (line 330) | type ICMPv6Filter struct type Ucred (line 334) | type Ucred struct type TCPInfo (line 340) | type TCPInfo struct constant SizeofSockaddrInet4 (line 375) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 376) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 377) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 378) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 379) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 380) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 381) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 382) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 383) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 384) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 385) | SizeofLinger = 0x8 constant SizeofIovec (line 386) | SizeofIovec = 0x8 constant SizeofIPMreq (line 387) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 388) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 389) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 390) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 391) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 392) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 393) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 394) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 395) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 396) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 397) | SizeofUcred = 0xc constant SizeofTCPInfo (line 398) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 402) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 403) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 404) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 405) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 406) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 407) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 408) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 409) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 410) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 411) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 412) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 413) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 414) | IFLA_MTU = 0x4 constant IFLA_LINK (line 415) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 416) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 417) | IFLA_STATS = 0x7 constant IFLA_COST (line 418) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 419) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 420) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 421) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 422) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 423) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 424) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 425) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 426) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 427) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 428) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 429) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 430) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 431) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 432) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 433) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 434) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 435) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 436) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 437) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 438) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 439) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 440) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 441) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 442) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 443) | RTA_UNSPEC = 0x0 constant RTA_DST (line 444) | RTA_DST = 0x1 constant RTA_SRC (line 445) | RTA_SRC = 0x2 constant RTA_IIF (line 446) | RTA_IIF = 0x3 constant RTA_OIF (line 447) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 448) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 449) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 450) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 451) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 452) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 453) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 454) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 455) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 456) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 457) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 458) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 459) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 460) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 461) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 462) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 463) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 464) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 465) | RTN_THROW = 0x9 constant RTN_NAT (line 466) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 467) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 468) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 469) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 470) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 471) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 472) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 473) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 474) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 475) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 476) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 477) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 478) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 479) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 480) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 481) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 482) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 483) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 484) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 485) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 486) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 487) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 488) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 489) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 490) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 491) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 492) | SizeofRtNexthop = 0x8 type NlMsghdr (line 495) | type NlMsghdr struct type NlMsgerr (line 503) | type NlMsgerr struct type RtGenmsg (line 508) | type RtGenmsg struct type NlAttr (line 512) | type NlAttr struct type RtAttr (line 517) | type RtAttr struct type IfInfomsg (line 522) | type IfInfomsg struct type IfAddrmsg (line 531) | type IfAddrmsg struct type RtMsg (line 539) | type RtMsg struct type RtNexthop (line 551) | type RtNexthop struct constant SizeofSockFilter (line 559) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 560) | SizeofSockFprog = 0x8 type SockFilter (line 563) | type SockFilter struct type SockFprog (line 570) | type SockFprog struct type InotifyEvent (line 576) | type InotifyEvent struct constant SizeofInotifyEvent (line 583) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 585) | type PtraceRegs struct type FdSet (line 595) | type FdSet struct type Sysinfo_t (line 599) | type Sysinfo_t struct type Utsname (line 616) | type Utsname struct type Ustat_t (line 625) | type Ustat_t struct type EpollEvent (line 632) | type EpollEvent struct constant AT_FDCWD (line 640) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 641) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 642) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 643) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 646) | type PollFd struct constant POLLIN (line 653) | POLLIN = 0x1 constant POLLPRI (line 654) | POLLPRI = 0x2 constant POLLOUT (line 655) | POLLOUT = 0x4 constant POLLRDHUP (line 656) | POLLRDHUP = 0x2000 constant POLLERR (line 657) | POLLERR = 0x8 constant POLLHUP (line 658) | POLLHUP = 0x10 constant POLLNVAL (line 659) | POLLNVAL = 0x20 type Sigset_t (line 662) | type Sigset_t struct constant RNDGETENTCNT (line 666) | RNDGETENTCNT = 0x40045200 constant PERF_IOC_FLAG_GROUP (line 668) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 670) | _SC_PAGESIZE = 0x1e type Termios (line 672) | type Termios struct type Winsize (line 683) | type Winsize struct type Taskstats (line 690) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 741) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 742) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 743) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 744) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 745) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 746) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 747) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 748) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 749) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 750) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 751) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 752) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 753) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 754) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 755) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 758) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 765) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 766) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 767) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 768) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 769) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 770) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 771) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 772) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 773) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 774) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 775) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 776) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 777) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 778) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 779) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 780) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 781) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 782) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 783) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 784) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 785) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 786) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 787) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 788) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 120) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct type FscryptPolicy (line 158) | type FscryptPolicy struct type FscryptKey (line 166) | type FscryptKey struct type KeyctlDHParams (line 172) | type KeyctlDHParams struct constant FADV_NORMAL (line 179) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 180) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 181) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 182) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 183) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 184) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 187) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 194) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 202) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 207) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 217) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 224) | type RawSockaddrHCI struct type RawSockaddrCAN (line 230) | type RawSockaddrCAN struct type RawSockaddrALG (line 237) | type RawSockaddrALG struct type RawSockaddrVM (line 245) | type RawSockaddrVM struct type RawSockaddr (line 253) | type RawSockaddr struct type RawSockaddrAny (line 258) | type RawSockaddrAny struct type _Socklen (line 263) | type _Socklen type Linger (line 265) | type Linger struct type Iovec (line 270) | type Iovec struct type IPMreq (line 275) | type IPMreq struct type IPMreqn (line 280) | type IPMreqn struct type IPv6Mreq (line 286) | type IPv6Mreq struct type PacketMreq (line 291) | type PacketMreq struct type Msghdr (line 298) | type Msghdr struct type Cmsghdr (line 310) | type Cmsghdr struct type Inet4Pktinfo (line 316) | type Inet4Pktinfo struct type Inet6Pktinfo (line 322) | type Inet6Pktinfo struct type IPv6MTUInfo (line 327) | type IPv6MTUInfo struct type ICMPv6Filter (line 332) | type ICMPv6Filter struct type Ucred (line 336) | type Ucred struct type TCPInfo (line 342) | type TCPInfo struct constant SizeofSockaddrInet4 (line 377) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 378) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 379) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 380) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 381) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 382) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 383) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 384) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 385) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 386) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 387) | SizeofLinger = 0x8 constant SizeofIovec (line 388) | SizeofIovec = 0x10 constant SizeofIPMreq (line 389) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 390) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 391) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 392) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 393) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 394) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 395) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 396) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 397) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 398) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 399) | SizeofUcred = 0xc constant SizeofTCPInfo (line 400) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 404) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 405) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 406) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 407) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 408) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 409) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 410) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 411) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 412) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 413) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 414) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 415) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 416) | IFLA_MTU = 0x4 constant IFLA_LINK (line 417) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 418) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 419) | IFLA_STATS = 0x7 constant IFLA_COST (line 420) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 421) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 422) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 423) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 424) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 425) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 426) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 427) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 428) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 429) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 430) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 431) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 432) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 433) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 434) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 435) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 436) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 437) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 438) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 439) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 440) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 441) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 442) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 443) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 444) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 445) | RTA_UNSPEC = 0x0 constant RTA_DST (line 446) | RTA_DST = 0x1 constant RTA_SRC (line 447) | RTA_SRC = 0x2 constant RTA_IIF (line 448) | RTA_IIF = 0x3 constant RTA_OIF (line 449) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 450) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 451) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 452) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 453) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 454) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 455) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 456) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 457) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 458) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 459) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 460) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 461) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 462) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 463) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 464) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 465) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 466) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 467) | RTN_THROW = 0x9 constant RTN_NAT (line 468) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 469) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 470) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 471) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 472) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 473) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 474) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 475) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 476) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 477) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 478) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 479) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 480) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 481) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 482) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 483) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 484) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 485) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 486) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 487) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 488) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 489) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 490) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 491) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 492) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 493) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 494) | SizeofRtNexthop = 0x8 type NlMsghdr (line 497) | type NlMsghdr struct type NlMsgerr (line 505) | type NlMsgerr struct type RtGenmsg (line 510) | type RtGenmsg struct type NlAttr (line 514) | type NlAttr struct type RtAttr (line 519) | type RtAttr struct type IfInfomsg (line 524) | type IfInfomsg struct type IfAddrmsg (line 533) | type IfAddrmsg struct type RtMsg (line 541) | type RtMsg struct type RtNexthop (line 553) | type RtNexthop struct constant SizeofSockFilter (line 561) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 562) | SizeofSockFprog = 0x10 type SockFilter (line 565) | type SockFilter struct type SockFprog (line 572) | type SockFprog struct type InotifyEvent (line 578) | type InotifyEvent struct constant SizeofInotifyEvent (line 585) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 587) | type PtraceRegs struct type FdSet (line 597) | type FdSet struct type Sysinfo_t (line 601) | type Sysinfo_t struct type Utsname (line 620) | type Utsname struct type Ustat_t (line 629) | type Ustat_t struct type EpollEvent (line 638) | type EpollEvent struct constant AT_FDCWD (line 645) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 646) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 647) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 648) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 651) | type PollFd struct constant POLLIN (line 658) | POLLIN = 0x1 constant POLLPRI (line 659) | POLLPRI = 0x2 constant POLLOUT (line 660) | POLLOUT = 0x4 constant POLLRDHUP (line 661) | POLLRDHUP = 0x2000 constant POLLERR (line 662) | POLLERR = 0x8 constant POLLHUP (line 663) | POLLHUP = 0x10 constant POLLNVAL (line 664) | POLLNVAL = 0x20 type Sigset_t (line 667) | type Sigset_t struct constant RNDGETENTCNT (line 671) | RNDGETENTCNT = 0x40045200 constant PERF_IOC_FLAG_GROUP (line 673) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 675) | _SC_PAGESIZE = 0x1e type Termios (line 677) | type Termios struct type Winsize (line 688) | type Winsize struct type Taskstats (line 695) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 746) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 747) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 748) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 749) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 750) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 751) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 752) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 753) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 754) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 755) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 756) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 757) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 758) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 759) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 760) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 763) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 770) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 771) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 772) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 773) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 774) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 775) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 776) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 777) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 778) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 779) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 780) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 781) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 782) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 783) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 784) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 785) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 786) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 787) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 788) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 789) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 790) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 791) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 792) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 793) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 120) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct type FscryptPolicy (line 158) | type FscryptPolicy struct type FscryptKey (line 166) | type FscryptKey struct type KeyctlDHParams (line 172) | type KeyctlDHParams struct constant FADV_NORMAL (line 179) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 180) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 181) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 182) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 183) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 184) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 187) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 194) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 202) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 207) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 217) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 224) | type RawSockaddrHCI struct type RawSockaddrCAN (line 230) | type RawSockaddrCAN struct type RawSockaddrALG (line 237) | type RawSockaddrALG struct type RawSockaddrVM (line 245) | type RawSockaddrVM struct type RawSockaddr (line 253) | type RawSockaddr struct type RawSockaddrAny (line 258) | type RawSockaddrAny struct type _Socklen (line 263) | type _Socklen type Linger (line 265) | type Linger struct type Iovec (line 270) | type Iovec struct type IPMreq (line 275) | type IPMreq struct type IPMreqn (line 280) | type IPMreqn struct type IPv6Mreq (line 286) | type IPv6Mreq struct type PacketMreq (line 291) | type PacketMreq struct type Msghdr (line 298) | type Msghdr struct type Cmsghdr (line 310) | type Cmsghdr struct type Inet4Pktinfo (line 316) | type Inet4Pktinfo struct type Inet6Pktinfo (line 322) | type Inet6Pktinfo struct type IPv6MTUInfo (line 327) | type IPv6MTUInfo struct type ICMPv6Filter (line 332) | type ICMPv6Filter struct type Ucred (line 336) | type Ucred struct type TCPInfo (line 342) | type TCPInfo struct constant SizeofSockaddrInet4 (line 377) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 378) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 379) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 380) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 381) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 382) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 383) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 384) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 385) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 386) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 387) | SizeofLinger = 0x8 constant SizeofIovec (line 388) | SizeofIovec = 0x10 constant SizeofIPMreq (line 389) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 390) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 391) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 392) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 393) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 394) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 395) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 396) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 397) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 398) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 399) | SizeofUcred = 0xc constant SizeofTCPInfo (line 400) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 404) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 405) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 406) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 407) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 408) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 409) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 410) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 411) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 412) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 413) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 414) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 415) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 416) | IFLA_MTU = 0x4 constant IFLA_LINK (line 417) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 418) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 419) | IFLA_STATS = 0x7 constant IFLA_COST (line 420) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 421) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 422) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 423) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 424) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 425) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 426) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 427) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 428) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 429) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 430) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 431) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 432) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 433) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 434) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 435) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 436) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 437) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 438) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 439) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 440) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 441) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 442) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 443) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 444) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 445) | RTA_UNSPEC = 0x0 constant RTA_DST (line 446) | RTA_DST = 0x1 constant RTA_SRC (line 447) | RTA_SRC = 0x2 constant RTA_IIF (line 448) | RTA_IIF = 0x3 constant RTA_OIF (line 449) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 450) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 451) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 452) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 453) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 454) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 455) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 456) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 457) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 458) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 459) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 460) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 461) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 462) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 463) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 464) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 465) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 466) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 467) | RTN_THROW = 0x9 constant RTN_NAT (line 468) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 469) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 470) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 471) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 472) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 473) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 474) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 475) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 476) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 477) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 478) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 479) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 480) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 481) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 482) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 483) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 484) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 485) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 486) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 487) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 488) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 489) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 490) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 491) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 492) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 493) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 494) | SizeofRtNexthop = 0x8 type NlMsghdr (line 497) | type NlMsghdr struct type NlMsgerr (line 505) | type NlMsgerr struct type RtGenmsg (line 510) | type RtGenmsg struct type NlAttr (line 514) | type NlAttr struct type RtAttr (line 519) | type RtAttr struct type IfInfomsg (line 524) | type IfInfomsg struct type IfAddrmsg (line 533) | type IfAddrmsg struct type RtMsg (line 541) | type RtMsg struct type RtNexthop (line 553) | type RtNexthop struct constant SizeofSockFilter (line 561) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 562) | SizeofSockFprog = 0x10 type SockFilter (line 565) | type SockFilter struct type SockFprog (line 572) | type SockFprog struct type InotifyEvent (line 578) | type InotifyEvent struct constant SizeofInotifyEvent (line 585) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 587) | type PtraceRegs struct type FdSet (line 597) | type FdSet struct type Sysinfo_t (line 601) | type Sysinfo_t struct type Utsname (line 620) | type Utsname struct type Ustat_t (line 629) | type Ustat_t struct type EpollEvent (line 638) | type EpollEvent struct constant AT_FDCWD (line 645) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 646) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 647) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 648) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 651) | type PollFd struct constant POLLIN (line 658) | POLLIN = 0x1 constant POLLPRI (line 659) | POLLPRI = 0x2 constant POLLOUT (line 660) | POLLOUT = 0x4 constant POLLRDHUP (line 661) | POLLRDHUP = 0x2000 constant POLLERR (line 662) | POLLERR = 0x8 constant POLLHUP (line 663) | POLLHUP = 0x10 constant POLLNVAL (line 664) | POLLNVAL = 0x20 type Sigset_t (line 667) | type Sigset_t struct constant RNDGETENTCNT (line 671) | RNDGETENTCNT = 0x40045200 constant PERF_IOC_FLAG_GROUP (line 673) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 675) | _SC_PAGESIZE = 0x1e type Termios (line 677) | type Termios struct type Winsize (line 688) | type Winsize struct type Taskstats (line 695) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 746) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 747) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 748) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 749) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 750) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 751) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 752) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 753) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 754) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 755) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 756) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 757) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 758) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 759) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 760) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 763) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 770) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 771) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 772) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 773) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 774) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 775) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 776) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 777) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 778) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 779) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 780) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 781) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 782) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 783) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 784) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 785) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 786) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 787) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 788) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 789) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 790) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 791) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 792) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 793) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 58) | type Time_t type Tms (line 60) | type Tms struct type Utimbuf (line 67) | type Utimbuf struct type Rusage (line 72) | type Rusage struct type Rlimit (line 91) | type Rlimit struct type _Gid_t (line 96) | type _Gid_t type Stat_t (line 98) | type Stat_t struct type Statfs_t (line 118) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct type FscryptPolicy (line 158) | type FscryptPolicy struct type FscryptKey (line 166) | type FscryptKey struct type KeyctlDHParams (line 172) | type KeyctlDHParams struct constant FADV_NORMAL (line 179) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 180) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 181) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 182) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 183) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 184) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 187) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 194) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 202) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 207) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 217) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 224) | type RawSockaddrHCI struct type RawSockaddrCAN (line 230) | type RawSockaddrCAN struct type RawSockaddrALG (line 237) | type RawSockaddrALG struct type RawSockaddrVM (line 245) | type RawSockaddrVM struct type RawSockaddr (line 253) | type RawSockaddr struct type RawSockaddrAny (line 258) | type RawSockaddrAny struct type _Socklen (line 263) | type _Socklen type Linger (line 265) | type Linger struct type Iovec (line 270) | type Iovec struct type IPMreq (line 275) | type IPMreq struct type IPMreqn (line 280) | type IPMreqn struct type IPv6Mreq (line 286) | type IPv6Mreq struct type PacketMreq (line 291) | type PacketMreq struct type Msghdr (line 298) | type Msghdr struct type Cmsghdr (line 308) | type Cmsghdr struct type Inet4Pktinfo (line 314) | type Inet4Pktinfo struct type Inet6Pktinfo (line 320) | type Inet6Pktinfo struct type IPv6MTUInfo (line 325) | type IPv6MTUInfo struct type ICMPv6Filter (line 330) | type ICMPv6Filter struct type Ucred (line 334) | type Ucred struct type TCPInfo (line 340) | type TCPInfo struct constant SizeofSockaddrInet4 (line 375) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 376) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 377) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 378) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 379) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 380) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 381) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 382) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 383) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 384) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 385) | SizeofLinger = 0x8 constant SizeofIovec (line 386) | SizeofIovec = 0x8 constant SizeofIPMreq (line 387) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 388) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 389) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 390) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 391) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 392) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 393) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 394) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 395) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 396) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 397) | SizeofUcred = 0xc constant SizeofTCPInfo (line 398) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 402) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 403) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 404) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 405) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 406) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 407) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 408) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 409) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 410) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 411) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 412) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 413) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 414) | IFLA_MTU = 0x4 constant IFLA_LINK (line 415) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 416) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 417) | IFLA_STATS = 0x7 constant IFLA_COST (line 418) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 419) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 420) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 421) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 422) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 423) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 424) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 425) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 426) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 427) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 428) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 429) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 430) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 431) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 432) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 433) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 434) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 435) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 436) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 437) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 438) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 439) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 440) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 441) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 442) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 443) | RTA_UNSPEC = 0x0 constant RTA_DST (line 444) | RTA_DST = 0x1 constant RTA_SRC (line 445) | RTA_SRC = 0x2 constant RTA_IIF (line 446) | RTA_IIF = 0x3 constant RTA_OIF (line 447) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 448) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 449) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 450) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 451) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 452) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 453) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 454) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 455) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 456) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 457) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 458) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 459) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 460) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 461) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 462) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 463) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 464) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 465) | RTN_THROW = 0x9 constant RTN_NAT (line 466) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 467) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 468) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 469) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 470) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 471) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 472) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 473) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 474) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 475) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 476) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 477) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 478) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 479) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 480) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 481) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 482) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 483) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 484) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 485) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 486) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 487) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 488) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 489) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 490) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 491) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 492) | SizeofRtNexthop = 0x8 type NlMsghdr (line 495) | type NlMsghdr struct type NlMsgerr (line 503) | type NlMsgerr struct type RtGenmsg (line 508) | type RtGenmsg struct type NlAttr (line 512) | type NlAttr struct type RtAttr (line 517) | type RtAttr struct type IfInfomsg (line 522) | type IfInfomsg struct type IfAddrmsg (line 531) | type IfAddrmsg struct type RtMsg (line 539) | type RtMsg struct type RtNexthop (line 551) | type RtNexthop struct constant SizeofSockFilter (line 559) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 560) | SizeofSockFprog = 0x8 type SockFilter (line 563) | type SockFilter struct type SockFprog (line 570) | type SockFprog struct type InotifyEvent (line 576) | type InotifyEvent struct constant SizeofInotifyEvent (line 583) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 585) | type PtraceRegs struct type FdSet (line 595) | type FdSet struct type Sysinfo_t (line 599) | type Sysinfo_t struct type Utsname (line 616) | type Utsname struct type Ustat_t (line 625) | type Ustat_t struct type EpollEvent (line 632) | type EpollEvent struct constant AT_FDCWD (line 640) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 641) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 642) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 643) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 646) | type PollFd struct constant POLLIN (line 653) | POLLIN = 0x1 constant POLLPRI (line 654) | POLLPRI = 0x2 constant POLLOUT (line 655) | POLLOUT = 0x4 constant POLLRDHUP (line 656) | POLLRDHUP = 0x2000 constant POLLERR (line 657) | POLLERR = 0x8 constant POLLHUP (line 658) | POLLHUP = 0x10 constant POLLNVAL (line 659) | POLLNVAL = 0x20 type Sigset_t (line 662) | type Sigset_t struct constant RNDGETENTCNT (line 666) | RNDGETENTCNT = 0x40045200 constant PERF_IOC_FLAG_GROUP (line 668) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 670) | _SC_PAGESIZE = 0x1e type Termios (line 672) | type Termios struct type Winsize (line 683) | type Winsize struct type Taskstats (line 690) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 741) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 742) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 743) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 744) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 745) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 746) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 747) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 748) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 749) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 750) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 751) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 752) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 753) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 754) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 755) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 758) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 765) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 766) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 767) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 768) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 769) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 770) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 771) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 772) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 773) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 774) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 775) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 776) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 777) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 778) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 779) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 780) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 781) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 782) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 783) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 784) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 785) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 786) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 787) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 788) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 121) | type Statfs_t struct type Dirent (line 136) | type Dirent struct type Fsid (line 145) | type Fsid struct type Flock_t (line 149) | type Flock_t struct type FscryptPolicy (line 159) | type FscryptPolicy struct type FscryptKey (line 167) | type FscryptKey struct type KeyctlDHParams (line 173) | type KeyctlDHParams struct constant FADV_NORMAL (line 180) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 181) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 182) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 183) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 184) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 185) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 188) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 195) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 203) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 208) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 218) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 225) | type RawSockaddrHCI struct type RawSockaddrCAN (line 231) | type RawSockaddrCAN struct type RawSockaddrALG (line 238) | type RawSockaddrALG struct type RawSockaddrVM (line 246) | type RawSockaddrVM struct type RawSockaddr (line 254) | type RawSockaddr struct type RawSockaddrAny (line 259) | type RawSockaddrAny struct type _Socklen (line 264) | type _Socklen type Linger (line 266) | type Linger struct type Iovec (line 271) | type Iovec struct type IPMreq (line 276) | type IPMreq struct type IPMreqn (line 281) | type IPMreqn struct type IPv6Mreq (line 287) | type IPv6Mreq struct type PacketMreq (line 292) | type PacketMreq struct type Msghdr (line 299) | type Msghdr struct type Cmsghdr (line 311) | type Cmsghdr struct type Inet4Pktinfo (line 317) | type Inet4Pktinfo struct type Inet6Pktinfo (line 323) | type Inet6Pktinfo struct type IPv6MTUInfo (line 328) | type IPv6MTUInfo struct type ICMPv6Filter (line 333) | type ICMPv6Filter struct type Ucred (line 337) | type Ucred struct type TCPInfo (line 343) | type TCPInfo struct constant SizeofSockaddrInet4 (line 378) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 379) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 380) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 381) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 382) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 383) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 384) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 385) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 386) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 387) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 388) | SizeofLinger = 0x8 constant SizeofIovec (line 389) | SizeofIovec = 0x10 constant SizeofIPMreq (line 390) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 391) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 392) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 393) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 394) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 395) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 396) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 397) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 398) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 399) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 400) | SizeofUcred = 0xc constant SizeofTCPInfo (line 401) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 405) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 406) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 407) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 408) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 409) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 410) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 411) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 412) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 413) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 414) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 415) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 416) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 417) | IFLA_MTU = 0x4 constant IFLA_LINK (line 418) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 419) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 420) | IFLA_STATS = 0x7 constant IFLA_COST (line 421) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 422) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 423) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 424) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 425) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 426) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 427) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 428) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 429) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 430) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 431) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 432) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 433) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 434) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 435) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 436) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 437) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 438) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 439) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 440) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 441) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 442) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 443) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 444) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 445) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 446) | RTA_UNSPEC = 0x0 constant RTA_DST (line 447) | RTA_DST = 0x1 constant RTA_SRC (line 448) | RTA_SRC = 0x2 constant RTA_IIF (line 449) | RTA_IIF = 0x3 constant RTA_OIF (line 450) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 451) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 452) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 453) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 454) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 455) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 456) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 457) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 458) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 459) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 460) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 461) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 462) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 463) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 464) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 465) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 466) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 467) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 468) | RTN_THROW = 0x9 constant RTN_NAT (line 469) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 470) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 471) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 472) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 473) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 474) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 475) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 476) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 477) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 478) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 479) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 480) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 481) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 482) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 483) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 484) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 485) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 486) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 487) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 488) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 489) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 490) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 491) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 492) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 493) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 494) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 495) | SizeofRtNexthop = 0x8 type NlMsghdr (line 498) | type NlMsghdr struct type NlMsgerr (line 506) | type NlMsgerr struct type RtGenmsg (line 511) | type RtGenmsg struct type NlAttr (line 515) | type NlAttr struct type RtAttr (line 520) | type RtAttr struct type IfInfomsg (line 525) | type IfInfomsg struct type IfAddrmsg (line 534) | type IfAddrmsg struct type RtMsg (line 542) | type RtMsg struct type RtNexthop (line 554) | type RtNexthop struct constant SizeofSockFilter (line 562) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 563) | SizeofSockFprog = 0x10 type SockFilter (line 566) | type SockFilter struct type SockFprog (line 573) | type SockFprog struct type InotifyEvent (line 579) | type InotifyEvent struct constant SizeofInotifyEvent (line 586) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 588) | type PtraceRegs struct type FdSet (line 604) | type FdSet struct type Sysinfo_t (line 608) | type Sysinfo_t struct type Utsname (line 627) | type Utsname struct type Ustat_t (line 636) | type Ustat_t struct type EpollEvent (line 645) | type EpollEvent struct constant AT_FDCWD (line 653) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 654) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 655) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 656) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 659) | type PollFd struct constant POLLIN (line 666) | POLLIN = 0x1 constant POLLPRI (line 667) | POLLPRI = 0x2 constant POLLOUT (line 668) | POLLOUT = 0x4 constant POLLRDHUP (line 669) | POLLRDHUP = 0x2000 constant POLLERR (line 670) | POLLERR = 0x8 constant POLLHUP (line 671) | POLLHUP = 0x10 constant POLLNVAL (line 672) | POLLNVAL = 0x20 type Sigset_t (line 675) | type Sigset_t struct constant RNDGETENTCNT (line 679) | RNDGETENTCNT = 0x40045200 constant PERF_IOC_FLAG_GROUP (line 681) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 683) | _SC_PAGESIZE = 0x1e type Termios (line 685) | type Termios struct type Winsize (line 696) | type Winsize struct type Taskstats (line 703) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 754) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 755) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 756) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 757) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 758) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 759) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 760) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 761) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 762) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 763) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 764) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 765) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 766) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 767) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 768) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 771) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 778) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 779) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 780) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 781) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 782) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 783) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 784) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 785) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 786) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 787) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 788) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 789) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 790) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 791) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 792) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 793) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 794) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 795) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 796) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 797) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 798) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 799) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 800) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 801) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 121) | type Statfs_t struct type Dirent (line 136) | type Dirent struct type Fsid (line 145) | type Fsid struct type Flock_t (line 149) | type Flock_t struct type FscryptPolicy (line 159) | type FscryptPolicy struct type FscryptKey (line 167) | type FscryptKey struct type KeyctlDHParams (line 173) | type KeyctlDHParams struct constant FADV_NORMAL (line 180) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 181) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 182) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 183) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 184) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 185) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 188) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 195) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 203) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 208) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 218) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 225) | type RawSockaddrHCI struct type RawSockaddrCAN (line 231) | type RawSockaddrCAN struct type RawSockaddrALG (line 238) | type RawSockaddrALG struct type RawSockaddrVM (line 246) | type RawSockaddrVM struct type RawSockaddr (line 254) | type RawSockaddr struct type RawSockaddrAny (line 259) | type RawSockaddrAny struct type _Socklen (line 264) | type _Socklen type Linger (line 266) | type Linger struct type Iovec (line 271) | type Iovec struct type IPMreq (line 276) | type IPMreq struct type IPMreqn (line 281) | type IPMreqn struct type IPv6Mreq (line 287) | type IPv6Mreq struct type PacketMreq (line 292) | type PacketMreq struct type Msghdr (line 299) | type Msghdr struct type Cmsghdr (line 311) | type Cmsghdr struct type Inet4Pktinfo (line 317) | type Inet4Pktinfo struct type Inet6Pktinfo (line 323) | type Inet6Pktinfo struct type IPv6MTUInfo (line 328) | type IPv6MTUInfo struct type ICMPv6Filter (line 333) | type ICMPv6Filter struct type Ucred (line 337) | type Ucred struct type TCPInfo (line 343) | type TCPInfo struct constant SizeofSockaddrInet4 (line 378) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 379) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 380) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 381) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 382) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 383) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 384) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 385) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 386) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 387) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 388) | SizeofLinger = 0x8 constant SizeofIovec (line 389) | SizeofIovec = 0x10 constant SizeofIPMreq (line 390) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 391) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 392) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 393) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 394) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 395) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 396) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 397) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 398) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 399) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 400) | SizeofUcred = 0xc constant SizeofTCPInfo (line 401) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 405) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 406) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 407) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 408) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 409) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 410) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 411) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 412) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 413) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 414) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 415) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 416) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 417) | IFLA_MTU = 0x4 constant IFLA_LINK (line 418) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 419) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 420) | IFLA_STATS = 0x7 constant IFLA_COST (line 421) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 422) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 423) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 424) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 425) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 426) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 427) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 428) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 429) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 430) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 431) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 432) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 433) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 434) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 435) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 436) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 437) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 438) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 439) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 440) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 441) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 442) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 443) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 444) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 445) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 446) | RTA_UNSPEC = 0x0 constant RTA_DST (line 447) | RTA_DST = 0x1 constant RTA_SRC (line 448) | RTA_SRC = 0x2 constant RTA_IIF (line 449) | RTA_IIF = 0x3 constant RTA_OIF (line 450) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 451) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 452) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 453) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 454) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 455) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 456) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 457) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 458) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 459) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 460) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 461) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 462) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 463) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 464) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 465) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 466) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 467) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 468) | RTN_THROW = 0x9 constant RTN_NAT (line 469) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 470) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 471) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 472) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 473) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 474) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 475) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 476) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 477) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 478) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 479) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 480) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 481) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 482) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 483) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 484) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 485) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 486) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 487) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 488) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 489) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 490) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 491) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 492) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 493) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 494) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 495) | SizeofRtNexthop = 0x8 type NlMsghdr (line 498) | type NlMsghdr struct type NlMsgerr (line 506) | type NlMsgerr struct type RtGenmsg (line 511) | type RtGenmsg struct type NlAttr (line 515) | type NlAttr struct type RtAttr (line 520) | type RtAttr struct type IfInfomsg (line 525) | type IfInfomsg struct type IfAddrmsg (line 534) | type IfAddrmsg struct type RtMsg (line 542) | type RtMsg struct type RtNexthop (line 554) | type RtNexthop struct constant SizeofSockFilter (line 562) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 563) | SizeofSockFprog = 0x10 type SockFilter (line 566) | type SockFilter struct type SockFprog (line 573) | type SockFprog struct type InotifyEvent (line 579) | type InotifyEvent struct constant SizeofInotifyEvent (line 586) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 588) | type PtraceRegs struct type FdSet (line 604) | type FdSet struct type Sysinfo_t (line 608) | type Sysinfo_t struct type Utsname (line 627) | type Utsname struct type Ustat_t (line 636) | type Ustat_t struct type EpollEvent (line 645) | type EpollEvent struct constant AT_FDCWD (line 653) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 654) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 655) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 656) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 659) | type PollFd struct constant POLLIN (line 666) | POLLIN = 0x1 constant POLLPRI (line 667) | POLLPRI = 0x2 constant POLLOUT (line 668) | POLLOUT = 0x4 constant POLLRDHUP (line 669) | POLLRDHUP = 0x2000 constant POLLERR (line 670) | POLLERR = 0x8 constant POLLHUP (line 671) | POLLHUP = 0x10 constant POLLNVAL (line 672) | POLLNVAL = 0x20 type Sigset_t (line 675) | type Sigset_t struct constant RNDGETENTCNT (line 679) | RNDGETENTCNT = 0x40045200 constant PERF_IOC_FLAG_GROUP (line 681) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 683) | _SC_PAGESIZE = 0x1e type Termios (line 685) | type Termios struct type Winsize (line 696) | type Winsize struct type Taskstats (line 703) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 754) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 755) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 756) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 757) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 758) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 759) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 760) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 761) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 762) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 763) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 764) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 765) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 766) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 767) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 768) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 771) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 778) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 779) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 780) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 781) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 782) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 783) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 784) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 785) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 786) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 787) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 788) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 789) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 790) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 791) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 792) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 793) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 794) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 795) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 796) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 797) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 798) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 799) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 800) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 801) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x1000 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct type FscryptPolicy (line 158) | type FscryptPolicy struct type FscryptKey (line 166) | type FscryptKey struct type KeyctlDHParams (line 172) | type KeyctlDHParams struct constant FADV_NORMAL (line 179) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 180) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 181) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 182) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 183) | FADV_DONTNEED = 0x6 constant FADV_NOREUSE (line 184) | FADV_NOREUSE = 0x7 type RawSockaddrInet4 (line 187) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 194) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 202) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 207) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 217) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 224) | type RawSockaddrHCI struct type RawSockaddrCAN (line 230) | type RawSockaddrCAN struct type RawSockaddrALG (line 237) | type RawSockaddrALG struct type RawSockaddrVM (line 245) | type RawSockaddrVM struct type RawSockaddr (line 253) | type RawSockaddr struct type RawSockaddrAny (line 258) | type RawSockaddrAny struct type _Socklen (line 263) | type _Socklen type Linger (line 265) | type Linger struct type Iovec (line 270) | type Iovec struct type IPMreq (line 275) | type IPMreq struct type IPMreqn (line 280) | type IPMreqn struct type IPv6Mreq (line 286) | type IPv6Mreq struct type PacketMreq (line 291) | type PacketMreq struct type Msghdr (line 298) | type Msghdr struct type Cmsghdr (line 310) | type Cmsghdr struct type Inet4Pktinfo (line 316) | type Inet4Pktinfo struct type Inet6Pktinfo (line 322) | type Inet6Pktinfo struct type IPv6MTUInfo (line 327) | type IPv6MTUInfo struct type ICMPv6Filter (line 332) | type ICMPv6Filter struct type Ucred (line 336) | type Ucred struct type TCPInfo (line 342) | type TCPInfo struct constant SizeofSockaddrInet4 (line 377) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 378) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 379) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 380) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 381) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 382) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 383) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 384) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 385) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 386) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 387) | SizeofLinger = 0x8 constant SizeofIovec (line 388) | SizeofIovec = 0x10 constant SizeofIPMreq (line 389) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 390) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 391) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 392) | SizeofPacketMreq = 0x10 constant SizeofMsghdr (line 393) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 394) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 395) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 396) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 397) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 398) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 399) | SizeofUcred = 0xc constant SizeofTCPInfo (line 400) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 404) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 405) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 406) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 407) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 408) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 409) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 410) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 411) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 412) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 413) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 414) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 415) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 416) | IFLA_MTU = 0x4 constant IFLA_LINK (line 417) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 418) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 419) | IFLA_STATS = 0x7 constant IFLA_COST (line 420) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 421) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 422) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 423) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 424) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 425) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 426) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 427) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 428) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 429) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 430) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 431) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 432) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 433) | IFLA_MAX = 0x2b constant RT_SCOPE_UNIVERSE (line 434) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 435) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 436) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 437) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 438) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 439) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 440) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 441) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 442) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 443) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 444) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 445) | RTA_UNSPEC = 0x0 constant RTA_DST (line 446) | RTA_DST = 0x1 constant RTA_SRC (line 447) | RTA_SRC = 0x2 constant RTA_IIF (line 448) | RTA_IIF = 0x3 constant RTA_OIF (line 449) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 450) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 451) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 452) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 453) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 454) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 455) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 456) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 457) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 458) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 459) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 460) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 461) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 462) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 463) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 464) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 465) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 466) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 467) | RTN_THROW = 0x9 constant RTN_NAT (line 468) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 469) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 470) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 471) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 472) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 473) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 474) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 475) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 476) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 477) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 478) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 479) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 480) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 481) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 482) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 483) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 484) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 485) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 486) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 487) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 488) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 489) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 490) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 491) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 492) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 493) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 494) | SizeofRtNexthop = 0x8 type NlMsghdr (line 497) | type NlMsghdr struct type NlMsgerr (line 505) | type NlMsgerr struct type RtGenmsg (line 510) | type RtGenmsg struct type NlAttr (line 514) | type NlAttr struct type RtAttr (line 519) | type RtAttr struct type IfInfomsg (line 524) | type IfInfomsg struct type IfAddrmsg (line 533) | type IfAddrmsg struct type RtMsg (line 541) | type RtMsg struct type RtNexthop (line 553) | type RtNexthop struct constant SizeofSockFilter (line 561) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 562) | SizeofSockFprog = 0x10 type SockFilter (line 565) | type SockFilter struct type SockFprog (line 572) | type SockFprog struct type InotifyEvent (line 578) | type InotifyEvent struct constant SizeofInotifyEvent (line 585) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 587) | type PtraceRegs struct type PtracePsw (line 597) | type PtracePsw struct type PtraceFpregs (line 602) | type PtraceFpregs struct type PtracePer (line 608) | type PtracePer struct type FdSet (line 621) | type FdSet struct type Sysinfo_t (line 625) | type Sysinfo_t struct type Utsname (line 644) | type Utsname struct type Ustat_t (line 653) | type Ustat_t struct type EpollEvent (line 662) | type EpollEvent struct constant AT_FDCWD (line 670) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 671) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 672) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 673) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 676) | type PollFd struct constant POLLIN (line 683) | POLLIN = 0x1 constant POLLPRI (line 684) | POLLPRI = 0x2 constant POLLOUT (line 685) | POLLOUT = 0x4 constant POLLRDHUP (line 686) | POLLRDHUP = 0x2000 constant POLLERR (line 687) | POLLERR = 0x8 constant POLLHUP (line 688) | POLLHUP = 0x10 constant POLLNVAL (line 689) | POLLNVAL = 0x20 type Sigset_t (line 692) | type Sigset_t struct constant RNDGETENTCNT (line 696) | RNDGETENTCNT = 0x80045200 constant PERF_IOC_FLAG_GROUP (line 698) | PERF_IOC_FLAG_GROUP = 0x1 constant _SC_PAGESIZE (line 700) | _SC_PAGESIZE = 0x1e type Termios (line 702) | type Termios struct type Winsize (line 713) | type Winsize struct type Taskstats (line 720) | type Taskstats struct constant TASKSTATS_CMD_UNSPEC (line 771) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 772) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 773) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 774) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 775) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 776) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 777) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 778) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 779) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 780) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 781) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 782) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 783) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 784) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 785) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type Genlmsghdr (line 788) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 795) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 796) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 797) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 798) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 799) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 800) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 801) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 802) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 803) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 804) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 805) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 806) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 807) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 808) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 809) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 810) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 811) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 812) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 813) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 814) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 815) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 816) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 817) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 818) | CTRL_ATTR_MCAST_GRP_ID = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 123) | type Statfs_t struct type Dirent (line 138) | type Dirent struct type Fsid (line 147) | type Fsid struct type Flock_t (line 151) | type Flock_t struct constant FADV_NORMAL (line 163) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 164) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 165) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 166) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 167) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 168) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 171) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 178) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 186) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 191) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 201) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 208) | type RawSockaddrHCI struct type RawSockaddrCAN (line 214) | type RawSockaddrCAN struct type RawSockaddrALG (line 221) | type RawSockaddrALG struct type RawSockaddrVM (line 229) | type RawSockaddrVM struct type RawSockaddr (line 237) | type RawSockaddr struct type RawSockaddrAny (line 242) | type RawSockaddrAny struct type _Socklen (line 247) | type _Socklen type Linger (line 249) | type Linger struct type Iovec (line 254) | type Iovec struct type IPMreq (line 259) | type IPMreq struct type IPMreqn (line 264) | type IPMreqn struct type IPv6Mreq (line 270) | type IPv6Mreq struct type Msghdr (line 275) | type Msghdr struct type Cmsghdr (line 287) | type Cmsghdr struct type Inet4Pktinfo (line 293) | type Inet4Pktinfo struct type Inet6Pktinfo (line 299) | type Inet6Pktinfo struct type IPv6MTUInfo (line 304) | type IPv6MTUInfo struct type ICMPv6Filter (line 309) | type ICMPv6Filter struct type Ucred (line 313) | type Ucred struct type TCPInfo (line 319) | type TCPInfo struct constant SizeofSockaddrInet4 (line 354) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 355) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 356) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 357) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 358) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 359) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 360) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 361) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 362) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 363) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 364) | SizeofLinger = 0x8 constant SizeofIPMreq (line 365) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 366) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 367) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 368) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 369) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 370) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 371) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 372) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 373) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 374) | SizeofUcred = 0xc constant SizeofTCPInfo (line 375) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 379) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 380) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 381) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 382) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 383) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 384) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 385) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 386) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 387) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 388) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 389) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 390) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 391) | IFLA_MTU = 0x4 constant IFLA_LINK (line 392) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 393) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 394) | IFLA_STATS = 0x7 constant IFLA_COST (line 395) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 396) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 397) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 398) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 399) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 400) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 401) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 402) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 403) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 404) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 405) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 406) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 407) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 408) | IFLA_MAX = 0x2a constant RT_SCOPE_UNIVERSE (line 409) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 410) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 411) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 412) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 413) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 414) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 415) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 416) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 417) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 418) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 419) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 420) | RTA_UNSPEC = 0x0 constant RTA_DST (line 421) | RTA_DST = 0x1 constant RTA_SRC (line 422) | RTA_SRC = 0x2 constant RTA_IIF (line 423) | RTA_IIF = 0x3 constant RTA_OIF (line 424) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 425) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 426) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 427) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 428) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 429) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 430) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 431) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 432) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 433) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 434) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 435) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 436) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 437) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 438) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 439) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 440) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 441) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 442) | RTN_THROW = 0x9 constant RTN_NAT (line 443) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 444) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 445) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 446) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 447) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 448) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 449) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 450) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 451) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 452) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 453) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 454) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 455) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 456) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 457) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 458) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 459) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 460) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 461) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 462) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 463) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 464) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 465) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 466) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 467) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 468) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 469) | SizeofRtNexthop = 0x8 type NlMsghdr (line 472) | type NlMsghdr struct type NlMsgerr (line 480) | type NlMsgerr struct type RtGenmsg (line 485) | type RtGenmsg struct type NlAttr (line 489) | type NlAttr struct type RtAttr (line 494) | type RtAttr struct type IfInfomsg (line 499) | type IfInfomsg struct type IfAddrmsg (line 508) | type IfAddrmsg struct type RtMsg (line 516) | type RtMsg struct type RtNexthop (line 528) | type RtNexthop struct constant SizeofSockFilter (line 536) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 537) | SizeofSockFprog = 0x10 type SockFilter (line 540) | type SockFilter struct type SockFprog (line 547) | type SockFprog struct type InotifyEvent (line 553) | type InotifyEvent struct constant SizeofInotifyEvent (line 560) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 562) | type PtraceRegs struct type ptracePsw (line 571) | type ptracePsw struct type ptraceFpregs (line 574) | type ptraceFpregs struct type ptracePer (line 577) | type ptracePer struct type FdSet (line 580) | type FdSet struct type Sysinfo_t (line 584) | type Sysinfo_t struct type Utsname (line 603) | type Utsname struct type Ustat_t (line 612) | type Ustat_t struct type EpollEvent (line 621) | type EpollEvent struct constant AT_FDCWD (line 629) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 630) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 631) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 632) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 635) | type PollFd struct constant POLLIN (line 642) | POLLIN = 0x1 constant POLLPRI (line 643) | POLLPRI = 0x2 constant POLLOUT (line 644) | POLLOUT = 0x4 constant POLLRDHUP (line 645) | POLLRDHUP = 0x800 constant POLLERR (line 646) | POLLERR = 0x8 constant POLLHUP (line 647) | POLLHUP = 0x10 constant POLLNVAL (line 648) | POLLNVAL = 0x20 type Sigset_t (line 651) | type Sigset_t struct constant _SC_PAGESIZE (line 655) | _SC_PAGESIZE = 0x1e type Termios (line 657) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t type Stat_t (line 59) | type Stat_t struct type Statfs_t (line 79) | type Statfs_t type Flock_t (line 81) | type Flock_t struct type Dirent (line 89) | type Dirent struct type Fsid (line 98) | type Fsid struct type RawSockaddrInet4 (line 102) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 110) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 119) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 125) | type RawSockaddrDatalink struct type RawSockaddr (line 136) | type RawSockaddr struct type RawSockaddrAny (line 142) | type RawSockaddrAny struct type _Socklen (line 147) | type _Socklen type Linger (line 149) | type Linger struct type Iovec (line 154) | type Iovec struct type IPMreq (line 159) | type IPMreq struct type IPv6Mreq (line 164) | type IPv6Mreq struct type Msghdr (line 169) | type Msghdr struct type Cmsghdr (line 179) | type Cmsghdr struct type Inet6Pktinfo (line 185) | type Inet6Pktinfo struct type IPv6MTUInfo (line 190) | type IPv6MTUInfo struct type ICMPv6Filter (line 195) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 200) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 201) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 202) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 203) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 204) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 205) | SizeofLinger = 0x8 constant SizeofIPMreq (line 206) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 207) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 208) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 209) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 210) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 211) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 212) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 216) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 217) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 218) | PTRACE_KILL = 0x8 type Kevent_t (line 221) | type Kevent_t struct type FdSet (line 230) | type FdSet struct constant SizeofIfMsghdr (line 235) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 236) | SizeofIfData = 0x84 constant SizeofIfaMsghdr (line 237) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 238) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 239) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 240) | SizeofRtMetrics = 0x50 type IfMsghdr (line 243) | type IfMsghdr struct type IfData (line 255) | type IfData struct type IfaMsghdr (line 278) | type IfaMsghdr struct type IfAnnounceMsghdr (line 289) | type IfAnnounceMsghdr struct type RtMsghdr (line 298) | type RtMsghdr struct type RtMetrics (line 315) | type RtMetrics struct type Mclpool (line 328) | type Mclpool constant SizeofBpfVersion (line 331) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 332) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 333) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 334) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 335) | SizeofBpfHdr = 0x14 type BpfVersion (line 338) | type BpfVersion struct type BpfStat (line 343) | type BpfStat struct type BpfProgram (line 350) | type BpfProgram struct type BpfInsn (line 355) | type BpfInsn struct type BpfHdr (line 362) | type BpfHdr struct type BpfTimeval (line 370) | type BpfTimeval struct type Termios (line 375) | type Termios struct constant AT_FDCWD (line 386) | AT_FDCWD = -0x64 constant AT_SYMLINK_NOFOLLOW (line 387) | AT_SYMLINK_NOFOLLOW = 0x200 type Sysctlnode (line 390) | type Sysctlnode struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 34) | type Rusage struct type Rlimit (line 53) | type Rlimit struct type _Gid_t (line 58) | type _Gid_t type Stat_t (line 60) | type Stat_t struct type Statfs_t (line 83) | type Statfs_t type Flock_t (line 85) | type Flock_t struct type Dirent (line 93) | type Dirent struct type Fsid (line 102) | type Fsid struct type RawSockaddrInet4 (line 106) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 114) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 123) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 129) | type RawSockaddrDatalink struct type RawSockaddr (line 140) | type RawSockaddr struct type RawSockaddrAny (line 146) | type RawSockaddrAny struct type _Socklen (line 151) | type _Socklen type Linger (line 153) | type Linger struct type Iovec (line 158) | type Iovec struct type IPMreq (line 163) | type IPMreq struct type IPv6Mreq (line 168) | type IPv6Mreq struct type Msghdr (line 173) | type Msghdr struct type Cmsghdr (line 185) | type Cmsghdr struct type Inet6Pktinfo (line 191) | type Inet6Pktinfo struct type IPv6MTUInfo (line 196) | type IPv6MTUInfo struct type ICMPv6Filter (line 201) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 206) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 207) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 208) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 209) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 210) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 211) | SizeofLinger = 0x8 constant SizeofIPMreq (line 212) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 213) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 214) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 215) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 216) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 217) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 218) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 222) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 223) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 224) | PTRACE_KILL = 0x8 type Kevent_t (line 227) | type Kevent_t struct type FdSet (line 237) | type FdSet struct constant SizeofIfMsghdr (line 242) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 243) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 244) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 245) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 246) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 247) | SizeofRtMetrics = 0x50 type IfMsghdr (line 250) | type IfMsghdr struct type IfData (line 261) | type IfData struct type IfaMsghdr (line 284) | type IfaMsghdr struct type IfAnnounceMsghdr (line 295) | type IfAnnounceMsghdr struct type RtMsghdr (line 304) | type RtMsghdr struct type RtMetrics (line 321) | type RtMetrics struct type Mclpool (line 334) | type Mclpool constant SizeofBpfVersion (line 337) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 338) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 339) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 340) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 341) | SizeofBpfHdr = 0x20 type BpfVersion (line 344) | type BpfVersion struct type BpfStat (line 349) | type BpfStat struct type BpfProgram (line 356) | type BpfProgram struct type BpfInsn (line 362) | type BpfInsn struct type BpfHdr (line 369) | type BpfHdr struct type BpfTimeval (line 377) | type BpfTimeval struct type Termios (line 382) | type Termios struct constant AT_FDCWD (line 393) | AT_FDCWD = -0x64 constant AT_SYMLINK_NOFOLLOW (line 394) | AT_SYMLINK_NOFOLLOW = 0x200 type Sysctlnode (line 397) | type Sysctlnode struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 29) | type Timeval struct type Rusage (line 35) | type Rusage struct type Rlimit (line 54) | type Rlimit struct type _Gid_t (line 59) | type _Gid_t type Stat_t (line 61) | type Stat_t struct type Statfs_t (line 84) | type Statfs_t type Flock_t (line 86) | type Flock_t struct type Dirent (line 94) | type Dirent struct type Fsid (line 103) | type Fsid struct type RawSockaddrInet4 (line 107) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 115) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 124) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 130) | type RawSockaddrDatalink struct type RawSockaddr (line 141) | type RawSockaddr struct type RawSockaddrAny (line 147) | type RawSockaddrAny struct type _Socklen (line 152) | type _Socklen type Linger (line 154) | type Linger struct type Iovec (line 159) | type Iovec struct type IPMreq (line 164) | type IPMreq struct type IPv6Mreq (line 169) | type IPv6Mreq struct type Msghdr (line 174) | type Msghdr struct type Cmsghdr (line 184) | type Cmsghdr struct type Inet6Pktinfo (line 190) | type Inet6Pktinfo struct type IPv6MTUInfo (line 195) | type IPv6MTUInfo struct type ICMPv6Filter (line 200) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 205) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 206) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 207) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 208) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 209) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 210) | SizeofLinger = 0x8 constant SizeofIPMreq (line 211) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 212) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 213) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 214) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 215) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 216) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 217) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 221) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 222) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 223) | PTRACE_KILL = 0x8 type Kevent_t (line 226) | type Kevent_t struct type FdSet (line 236) | type FdSet struct constant SizeofIfMsghdr (line 241) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 242) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 243) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 244) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 245) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 246) | SizeofRtMetrics = 0x50 type IfMsghdr (line 249) | type IfMsghdr struct type IfData (line 260) | type IfData struct type IfaMsghdr (line 283) | type IfaMsghdr struct type IfAnnounceMsghdr (line 294) | type IfAnnounceMsghdr struct type RtMsghdr (line 303) | type RtMsghdr struct type RtMetrics (line 320) | type RtMetrics struct type Mclpool (line 333) | type Mclpool constant SizeofBpfVersion (line 336) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 337) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 338) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 339) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 340) | SizeofBpfHdr = 0x14 type BpfVersion (line 343) | type BpfVersion struct type BpfStat (line 348) | type BpfStat struct type BpfProgram (line 355) | type BpfProgram struct type BpfInsn (line 360) | type BpfInsn struct type BpfHdr (line 367) | type BpfHdr struct type BpfTimeval (line 375) | type BpfTimeval struct type Termios (line 380) | type Termios struct constant AT_FDCWD (line 391) | AT_FDCWD = -0x64 constant AT_SYMLINK_NOFOLLOW (line 392) | AT_SYMLINK_NOFOLLOW = 0x200 type Sysctlnode (line 395) | type Sysctlnode struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 95) | type Statfs_t struct type Flock_t (line 121) | type Flock_t struct type Dirent (line 129) | type Dirent struct type Fsid (line 139) | type Fsid struct type RawSockaddrInet4 (line 143) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 151) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 160) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 166) | type RawSockaddrDatalink struct type RawSockaddr (line 177) | type RawSockaddr struct type RawSockaddrAny (line 183) | type RawSockaddrAny struct type _Socklen (line 188) | type _Socklen type Linger (line 190) | type Linger struct type Iovec (line 195) | type Iovec struct type IPMreq (line 200) | type IPMreq struct type IPv6Mreq (line 205) | type IPv6Mreq struct type Msghdr (line 210) | type Msghdr struct type Cmsghdr (line 220) | type Cmsghdr struct type Inet6Pktinfo (line 226) | type Inet6Pktinfo struct type IPv6MTUInfo (line 231) | type IPv6MTUInfo struct type ICMPv6Filter (line 236) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 241) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 242) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 243) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 244) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 245) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 246) | SizeofLinger = 0x8 constant SizeofIPMreq (line 247) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 248) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 249) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 250) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 251) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 252) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 253) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 257) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 258) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 259) | PTRACE_KILL = 0x8 type Kevent_t (line 262) | type Kevent_t struct type FdSet (line 271) | type FdSet struct constant SizeofIfMsghdr (line 276) | SizeofIfMsghdr = 0xec constant SizeofIfData (line 277) | SizeofIfData = 0xd4 constant SizeofIfaMsghdr (line 278) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 279) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 280) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 281) | SizeofRtMetrics = 0x38 type IfMsghdr (line 284) | type IfMsghdr struct type IfData (line 299) | type IfData struct type IfaMsghdr (line 324) | type IfaMsghdr struct type IfAnnounceMsghdr (line 338) | type IfAnnounceMsghdr struct type RtMsghdr (line 348) | type RtMsghdr struct type RtMetrics (line 367) | type RtMetrics struct type Mclpool (line 382) | type Mclpool struct constant SizeofBpfVersion (line 391) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 392) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 393) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 394) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 395) | SizeofBpfHdr = 0x14 type BpfVersion (line 398) | type BpfVersion struct type BpfStat (line 403) | type BpfStat struct type BpfProgram (line 408) | type BpfProgram struct type BpfInsn (line 413) | type BpfInsn struct type BpfHdr (line 420) | type BpfHdr struct type BpfTimeval (line 428) | type BpfTimeval struct type Termios (line 433) | type Termios struct constant AT_FDCWD (line 444) | AT_FDCWD = -0x64 constant AT_SYMLINK_NOFOLLOW (line 445) | AT_SYMLINK_NOFOLLOW = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 96) | type Statfs_t struct type Flock_t (line 123) | type Flock_t struct type Dirent (line 131) | type Dirent struct type Fsid (line 141) | type Fsid struct type RawSockaddrInet4 (line 145) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 153) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 162) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 168) | type RawSockaddrDatalink struct type RawSockaddr (line 179) | type RawSockaddr struct type RawSockaddrAny (line 185) | type RawSockaddrAny struct type _Socklen (line 190) | type _Socklen type Linger (line 192) | type Linger struct type Iovec (line 197) | type Iovec struct type IPMreq (line 202) | type IPMreq struct type IPv6Mreq (line 207) | type IPv6Mreq struct type Msghdr (line 212) | type Msghdr struct type Cmsghdr (line 224) | type Cmsghdr struct type Inet6Pktinfo (line 230) | type Inet6Pktinfo struct type IPv6MTUInfo (line 235) | type IPv6MTUInfo struct type ICMPv6Filter (line 240) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 245) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 246) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 247) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 248) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 249) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 250) | SizeofLinger = 0x8 constant SizeofIPMreq (line 251) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 252) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 253) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 254) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 255) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 256) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 257) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 261) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 262) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 263) | PTRACE_KILL = 0x8 type Kevent_t (line 266) | type Kevent_t struct type FdSet (line 275) | type FdSet struct constant SizeofIfMsghdr (line 280) | SizeofIfMsghdr = 0xf8 constant SizeofIfData (line 281) | SizeofIfData = 0xe0 constant SizeofIfaMsghdr (line 282) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 283) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 284) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 285) | SizeofRtMetrics = 0x38 type IfMsghdr (line 288) | type IfMsghdr struct type IfData (line 303) | type IfData struct type IfaMsghdr (line 330) | type IfaMsghdr struct type IfAnnounceMsghdr (line 344) | type IfAnnounceMsghdr struct type RtMsghdr (line 354) | type RtMsghdr struct type RtMetrics (line 373) | type RtMetrics struct type Mclpool (line 388) | type Mclpool struct constant SizeofBpfVersion (line 397) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 398) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 399) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 400) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 401) | SizeofBpfHdr = 0x14 type BpfVersion (line 404) | type BpfVersion struct type BpfStat (line 409) | type BpfStat struct type BpfProgram (line 414) | type BpfProgram struct type BpfInsn (line 420) | type BpfInsn struct type BpfHdr (line 427) | type BpfHdr struct type BpfTimeval (line 435) | type BpfTimeval struct type Termios (line 440) | type Termios struct constant AT_FDCWD (line 451) | AT_FDCWD = -0x64 constant AT_SYMLINK_NOFOLLOW (line 452) | AT_SYMLINK_NOFOLLOW = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 95) | type Statfs_t struct type Flock_t (line 121) | type Flock_t struct type Dirent (line 129) | type Dirent struct type Fsid (line 139) | type Fsid struct type RawSockaddrInet4 (line 143) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 151) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 160) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 166) | type RawSockaddrDatalink struct type RawSockaddr (line 177) | type RawSockaddr struct type RawSockaddrAny (line 183) | type RawSockaddrAny struct type _Socklen (line 188) | type _Socklen type Linger (line 190) | type Linger struct type Iovec (line 195) | type Iovec struct type IPMreq (line 200) | type IPMreq struct type IPv6Mreq (line 205) | type IPv6Mreq struct type Msghdr (line 210) | type Msghdr struct type Cmsghdr (line 220) | type Cmsghdr struct type Inet6Pktinfo (line 226) | type Inet6Pktinfo struct type IPv6MTUInfo (line 231) | type IPv6MTUInfo struct type ICMPv6Filter (line 236) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 241) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 242) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 243) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 244) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 245) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 246) | SizeofLinger = 0x8 constant SizeofIPMreq (line 247) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 248) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 249) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 250) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 251) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 252) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 253) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 257) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 258) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 259) | PTRACE_KILL = 0x8 type Kevent_t (line 262) | type Kevent_t struct type FdSet (line 271) | type FdSet struct constant SizeofIfMsghdr (line 276) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 277) | SizeofIfData = 0x80 constant SizeofIfaMsghdr (line 278) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 279) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 280) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 281) | SizeofRtMetrics = 0x38 type IfMsghdr (line 284) | type IfMsghdr struct type IfData (line 299) | type IfData struct type IfaMsghdr (line 323) | type IfaMsghdr struct type IfAnnounceMsghdr (line 337) | type IfAnnounceMsghdr struct type RtMsghdr (line 347) | type RtMsghdr struct type RtMetrics (line 366) | type RtMetrics struct type Mclpool (line 381) | type Mclpool struct constant SizeofBpfVersion (line 384) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 385) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 386) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 387) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 388) | SizeofBpfHdr = 0x14 type BpfVersion (line 391) | type BpfVersion struct type BpfStat (line 396) | type BpfStat struct type BpfProgram (line 401) | type BpfProgram struct type BpfInsn (line 406) | type BpfInsn struct type BpfHdr (line 413) | type BpfHdr struct type BpfTimeval (line 421) | type BpfTimeval struct type Termios (line 426) | type Termios struct constant AT_FDCWD (line 437) | AT_FDCWD = -0x64 constant AT_SYMLINK_NOFOLLOW (line 438) | AT_SYMLINK_NOFOLLOW = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 constant PathMax (line 14) | PathMax = 0x400 constant MaxHostNameLen (line 15) | MaxHostNameLen = 0x100 type _C_short (line 19) | type _C_short type _C_int (line 20) | type _C_int type _C_long (line 21) | type _C_long type _C_long_long (line 22) | type _C_long_long type Timespec (line 25) | type Timespec struct type Timeval (line 30) | type Timeval struct type Timeval32 (line 35) | type Timeval32 struct type Tms (line 40) | type Tms struct type Utimbuf (line 47) | type Utimbuf struct type Rusage (line 52) | type Rusage struct type Rlimit (line 71) | type Rlimit struct type _Gid_t (line 76) | type _Gid_t constant S_IFMT (line 79) | S_IFMT = 0xf000 constant S_IFIFO (line 80) | S_IFIFO = 0x1000 constant S_IFCHR (line 81) | S_IFCHR = 0x2000 constant S_IFDIR (line 82) | S_IFDIR = 0x4000 constant S_IFBLK (line 83) | S_IFBLK = 0x6000 constant S_IFREG (line 84) | S_IFREG = 0x8000 constant S_IFLNK (line 85) | S_IFLNK = 0xa000 constant S_IFSOCK (line 86) | S_IFSOCK = 0xc000 constant S_ISUID (line 87) | S_ISUID = 0x800 constant S_ISGID (line 88) | S_ISGID = 0x400 constant S_ISVTX (line 89) | S_ISVTX = 0x200 constant S_IRUSR (line 90) | S_IRUSR = 0x100 constant S_IWUSR (line 91) | S_IWUSR = 0x80 constant S_IXUSR (line 92) | S_IXUSR = 0x40 type Stat_t (line 95) | type Stat_t struct type Flock_t (line 113) | type Flock_t struct type Dirent (line 124) | type Dirent struct type _Fsblkcnt_t (line 132) | type _Fsblkcnt_t type Statvfs_t (line 134) | type Statvfs_t struct type RawSockaddrInet4 (line 150) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 157) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 166) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 171) | type RawSockaddrDatalink struct type RawSockaddr (line 181) | type RawSockaddr struct type RawSockaddrAny (line 186) | type RawSockaddrAny struct type _Socklen (line 191) | type _Socklen type Linger (line 193) | type Linger struct type Iovec (line 198) | type Iovec struct type IPMreq (line 203) | type IPMreq struct type IPv6Mreq (line 208) | type IPv6Mreq struct type Msghdr (line 213) | type Msghdr struct type Cmsghdr (line 225) | type Cmsghdr struct type Inet6Pktinfo (line 231) | type Inet6Pktinfo struct type IPv6MTUInfo (line 236) | type IPv6MTUInfo struct type ICMPv6Filter (line 241) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 246) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 247) | SizeofSockaddrInet6 = 0x20 constant SizeofSockaddrAny (line 248) | SizeofSockaddrAny = 0xfc constant SizeofSockaddrUnix (line 249) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrDatalink (line 250) | SizeofSockaddrDatalink = 0xfc constant SizeofLinger (line 251) | SizeofLinger = 0x8 constant SizeofIPMreq (line 252) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 253) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 254) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 255) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 256) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 257) | SizeofIPv6MTUInfo = 0x24 constant SizeofICMPv6Filter (line 258) | SizeofICMPv6Filter = 0x20 type FdSet (line 261) | type FdSet struct type Utsname (line 265) | type Utsname struct type Ustat_t (line 273) | type Ustat_t struct constant AT_FDCWD (line 282) | AT_FDCWD = 0xffd19553 constant AT_SYMLINK_NOFOLLOW (line 283) | AT_SYMLINK_NOFOLLOW = 0x1000 constant AT_SYMLINK_FOLLOW (line 284) | AT_SYMLINK_FOLLOW = 0x2000 constant AT_REMOVEDIR (line 285) | AT_REMOVEDIR = 0x1 constant AT_EACCESS (line 286) | AT_EACCESS = 0x4 constant SizeofIfMsghdr (line 290) | SizeofIfMsghdr = 0x54 constant SizeofIfData (line 291) | SizeofIfData = 0x44 constant SizeofIfaMsghdr (line 292) | SizeofIfaMsghdr = 0x14 constant SizeofRtMsghdr (line 293) | SizeofRtMsghdr = 0x4c constant SizeofRtMetrics (line 294) | SizeofRtMetrics = 0x28 type IfMsghdr (line 297) | type IfMsghdr struct type IfData (line 308) | type IfData struct type IfaMsghdr (line 330) | type IfaMsghdr struct type RtMsghdr (line 341) | type RtMsghdr struct type RtMetrics (line 357) | type RtMetrics struct constant SizeofBpfVersion (line 371) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 372) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 373) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 374) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 375) | SizeofBpfHdr = 0x14 type BpfVersion (line 378) | type BpfVersion struct type BpfStat (line 383) | type BpfStat struct type BpfProgram (line 390) | type BpfProgram struct type BpfInsn (line 396) | type BpfInsn struct type BpfTimeval (line 403) | type BpfTimeval struct type BpfHdr (line 408) | type BpfHdr struct constant _SC_PAGESIZE (line 416) | _SC_PAGESIZE = 0xb type Termios (line 418) | type Termios struct type Termio (line 427) | type Termio struct type Winsize (line 437) | type Winsize struct FILE: vendor/gopkg.in/yaml.v2/apic.go function yaml_insert_token (line 8) | func yaml_insert_token(parser *yaml_parser_t, pos int, token *yaml_token... function yaml_parser_initialize (line 28) | func yaml_parser_initialize(parser *yaml_parser_t) bool { function yaml_parser_delete (line 37) | func yaml_parser_delete(parser *yaml_parser_t) { function yaml_string_read_handler (line 42) | func yaml_string_read_handler(parser *yaml_parser_t, buffer []byte) (n i... function yaml_file_read_handler (line 52) | func yaml_file_read_handler(parser *yaml_parser_t, buffer []byte) (n int... function yaml_parser_set_input_string (line 57) | func yaml_parser_set_input_string(parser *yaml_parser_t, input []byte) { function yaml_parser_set_input_file (line 67) | func yaml_parser_set_input_file(parser *yaml_parser_t, file *os.File) { function yaml_parser_set_encoding (line 76) | func yaml_parser_set_encoding(parser *yaml_parser_t, encoding yaml_encod... function yaml_emitter_initialize (line 84) | func yaml_emitter_initialize(emitter *yaml_emitter_t) bool { function yaml_emitter_delete (line 95) | func yaml_emitter_delete(emitter *yaml_emitter_t) { function yaml_string_write_handler (line 100) | func yaml_string_write_handler(emitter *yaml_emitter_t, buffer []byte) e... function yaml_file_write_handler (line 106) | func yaml_file_write_handler(emitter *yaml_emitter_t, buffer []byte) err... function yaml_emitter_set_output_string (line 112) | func yaml_emitter_set_output_string(emitter *yaml_emitter_t, output_buff... function yaml_emitter_set_output_file (line 121) | func yaml_emitter_set_output_file(emitter *yaml_emitter_t, file io.Write... function yaml_emitter_set_encoding (line 130) | func yaml_emitter_set_encoding(emitter *yaml_emitter_t, encoding yaml_en... function yaml_emitter_set_canonical (line 138) | func yaml_emitter_set_canonical(emitter *yaml_emitter_t, canonical bool) { function yaml_emitter_set_indent (line 143) | func yaml_emitter_set_indent(emitter *yaml_emitter_t, indent int) { function yaml_emitter_set_width (line 151) | func yaml_emitter_set_width(emitter *yaml_emitter_t, width int) { function yaml_emitter_set_unicode (line 159) | func yaml_emitter_set_unicode(emitter *yaml_emitter_t, unicode bool) { function yaml_emitter_set_break (line 164) | func yaml_emitter_set_break(emitter *yaml_emitter_t, line_break yaml_bre... function yaml_stream_start_event_initialize (line 255) | func yaml_stream_start_event_initialize(event *yaml_event_t, encoding ya... function yaml_stream_end_event_initialize (line 264) | func yaml_stream_end_event_initialize(event *yaml_event_t) bool { function yaml_document_start_event_initialize (line 272) | func yaml_document_start_event_initialize(event *yaml_event_t, version_d... function yaml_document_end_event_initialize (line 284) | func yaml_document_end_event_initialize(event *yaml_event_t, implicit bo... function yaml_scalar_event_initialize (line 317) | func yaml_scalar_event_initialize(event *yaml_event_t, anchor, tag, valu... function yaml_sequence_start_event_initialize (line 331) | func yaml_sequence_start_event_initialize(event *yaml_event_t, anchor, t... function yaml_sequence_end_event_initialize (line 343) | func yaml_sequence_end_event_initialize(event *yaml_event_t) bool { function yaml_mapping_start_event_initialize (line 351) | func yaml_mapping_start_event_initialize(event *yaml_event_t, anchor, ta... function yaml_mapping_end_event_initialize (line 363) | func yaml_mapping_end_event_initialize(event *yaml_event_t) bool { function yaml_event_delete (line 371) | func yaml_event_delete(event *yaml_event_t) { FILE: vendor/gopkg.in/yaml.v2/decode.go constant documentNode (line 14) | documentNode = 1 << iota constant mappingNode (line 15) | mappingNode constant sequenceNode (line 16) | sequenceNode constant scalarNode (line 17) | scalarNode constant aliasNode (line 18) | aliasNode type node (line 21) | type node struct type parser (line 34) | type parser struct method destroy (line 60) | func (p *parser) destroy() { method skip (line 67) | func (p *parser) skip() { method fail (line 79) | func (p *parser) fail() { method anchor (line 99) | func (p *parser) anchor(n *node, anchor []byte) { method parse (line 105) | func (p *parser) parse() *node { method node (line 125) | func (p *parser) node(kind int) *node { method document (line 133) | func (p *parser) document() *node { method alias (line 146) | func (p *parser) alias() *node { method scalar (line 153) | func (p *parser) scalar() *node { method sequence (line 163) | func (p *parser) sequence() *node { method mapping (line 174) | func (p *parser) mapping() *node { function newParser (line 40) | func newParser(b []byte) *parser { type decoder (line 188) | type decoder struct method terror (line 209) | func (d *decoder) terror(n *node, tag string, out reflect.Value) { method callUnmarshaler (line 224) | func (d *decoder) callUnmarshaler(n *node, u Unmarshaler) (good bool) { method prepare (line 253) | func (d *decoder) prepare(n *node, out reflect.Value) (newout reflect.... method unmarshal (line 277) | func (d *decoder) unmarshal(n *node, out reflect.Value) (good bool) { method document (line 301) | func (d *decoder) document(n *node, out reflect.Value) (good bool) { method alias (line 310) | func (d *decoder) alias(n *node, out reflect.Value) (good bool) { method scalar (line 332) | func (d *decoder) scalar(n *node, out reflect.Value) (good bool) { method sequence (line 478) | func (d *decoder) sequence(n *node, out reflect.Value) (good bool) { method mapping (line 510) | func (d *decoder) mapping(n *node, out reflect.Value) (good bool) { method mappingSlice (line 572) | func (d *decoder) mappingSlice(n *node, out reflect.Value) (good bool) { method mappingStruct (line 603) | func (d *decoder) mappingStruct(n *node, out reflect.Value) (good bool) { method merge (line 654) | func (d *decoder) merge(n *node, out reflect.Value) { function newDecoder (line 203) | func newDecoder(strict bool) *decoder { function resetMap (line 326) | func resetMap(out reflect.Value) { function settableValueOf (line 471) | func settableValueOf(i interface{}) reflect.Value { function failWantMap (line 650) | func failWantMap() { function isMerge (line 683) | func isMerge(n *node) bool { FILE: vendor/gopkg.in/yaml.v2/emitterc.go function flush (line 8) | func flush(emitter *yaml_emitter_t) bool { function put (line 16) | func put(emitter *yaml_emitter_t, value byte) bool { function put_break (line 27) | func put_break(emitter *yaml_emitter_t) bool { function write (line 51) | func write(emitter *yaml_emitter_t, s []byte, i *int) bool { function write_all (line 79) | func write_all(emitter *yaml_emitter_t, s []byte) bool { function write_break (line 89) | func write_break(emitter *yaml_emitter_t, s []byte, i *int) bool { function yaml_emitter_set_emitter_error (line 106) | func yaml_emitter_set_emitter_error(emitter *yaml_emitter_t, problem str... function yaml_emitter_emit (line 113) | func yaml_emitter_emit(emitter *yaml_emitter_t, event *yaml_event_t) bool { function yaml_emitter_need_more_events (line 136) | func yaml_emitter_need_more_events(emitter *yaml_emitter_t) bool { function yaml_emitter_append_tag_directive (line 173) | func yaml_emitter_append_tag_directive(emitter *yaml_emitter_t, value *y... function yaml_emitter_increase_indent (line 196) | func yaml_emitter_increase_indent(emitter *yaml_emitter_t, flow, indentl... function yaml_emitter_state_machine (line 211) | func yaml_emitter_state_machine(emitter *yaml_emitter_t, event *yaml_eve... function yaml_emitter_emit_stream_start (line 272) | func yaml_emitter_emit_stream_start(emitter *yaml_emitter_t, event *yaml... function yaml_emitter_emit_document_start (line 311) | func yaml_emitter_emit_document_start(emitter *yaml_emitter_t, event *ya... function yaml_emitter_emit_document_content (line 425) | func yaml_emitter_emit_document_content(emitter *yaml_emitter_t, event *... function yaml_emitter_emit_document_end (line 431) | func yaml_emitter_emit_document_end(emitter *yaml_emitter_t, event *yaml... function yaml_emitter_emit_flow_sequence_item (line 456) | func yaml_emitter_emit_flow_sequence_item(emitter *yaml_emitter_t, event... function yaml_emitter_emit_flow_mapping_key (line 504) | func yaml_emitter_emit_flow_mapping_key(emitter *yaml_emitter_t, event *... function yaml_emitter_emit_flow_mapping_value (line 558) | func yaml_emitter_emit_flow_mapping_value(emitter *yaml_emitter_t, event... function yaml_emitter_emit_block_sequence_item (line 578) | func yaml_emitter_emit_block_sequence_item(emitter *yaml_emitter_t, even... function yaml_emitter_emit_block_mapping_key (line 602) | func yaml_emitter_emit_block_mapping_key(emitter *yaml_emitter_t, event ... function yaml_emitter_emit_block_mapping_value (line 630) | func yaml_emitter_emit_block_mapping_value(emitter *yaml_emitter_t, even... function yaml_emitter_emit_node (line 648) | func yaml_emitter_emit_node(emitter *yaml_emitter_t, event *yaml_event_t, function yaml_emitter_emit_alias (line 672) | func yaml_emitter_emit_alias(emitter *yaml_emitter_t, event *yaml_event_... function yaml_emitter_emit_scalar (line 682) | func yaml_emitter_emit_scalar(emitter *yaml_emitter_t, event *yaml_event... function yaml_emitter_emit_sequence_start (line 706) | func yaml_emitter_emit_sequence_start(emitter *yaml_emitter_t, event *ya... function yaml_emitter_emit_mapping_start (line 723) | func yaml_emitter_emit_mapping_start(emitter *yaml_emitter_t, event *yam... function yaml_emitter_check_empty_document (line 740) | func yaml_emitter_check_empty_document(emitter *yaml_emitter_t) bool { function yaml_emitter_check_empty_sequence (line 745) | func yaml_emitter_check_empty_sequence(emitter *yaml_emitter_t) bool { function yaml_emitter_check_empty_mapping (line 754) | func yaml_emitter_check_empty_mapping(emitter *yaml_emitter_t) bool { function yaml_emitter_check_simple_key (line 763) | func yaml_emitter_check_simple_key(emitter *yaml_emitter_t) bool { function yaml_emitter_select_scalar_style (line 797) | func yaml_emitter_select_scalar_style(emitter *yaml_emitter_t, event *ya... function yaml_emitter_process_anchor (line 846) | func yaml_emitter_process_anchor(emitter *yaml_emitter_t) bool { function yaml_emitter_process_tag (line 861) | func yaml_emitter_process_tag(emitter *yaml_emitter_t) bool { function yaml_emitter_process_scalar (line 890) | func yaml_emitter_process_scalar(emitter *yaml_emitter_t) bool { function yaml_emitter_analyze_version_directive (line 911) | func yaml_emitter_analyze_version_directive(emitter *yaml_emitter_t, ver... function yaml_emitter_analyze_tag_directive (line 919) | func yaml_emitter_analyze_tag_directive(emitter *yaml_emitter_t, tag_dir... function yaml_emitter_analyze_anchor (line 943) | func yaml_emitter_analyze_anchor(emitter *yaml_emitter_t, anchor []byte,... function yaml_emitter_analyze_tag (line 966) | func yaml_emitter_analyze_tag(emitter *yaml_emitter_t, tag []byte) bool { function yaml_emitter_analyze_scalar (line 983) | func yaml_emitter_analyze_scalar(emitter *yaml_emitter_t, value []byte) ... function yaml_emitter_analyze_event (line 1132) | func yaml_emitter_analyze_event(emitter *yaml_emitter_t, event *yaml_eve... function yaml_emitter_write_bom (line 1188) | func yaml_emitter_write_bom(emitter *yaml_emitter_t) bool { function yaml_emitter_write_indent (line 1200) | func yaml_emitter_write_indent(emitter *yaml_emitter_t) bool { function yaml_emitter_write_indicator (line 1220) | func yaml_emitter_write_indicator(emitter *yaml_emitter_t, indicator []b... function yaml_emitter_write_anchor (line 1235) | func yaml_emitter_write_anchor(emitter *yaml_emitter_t, value []byte) bo... function yaml_emitter_write_tag_handle (line 1244) | func yaml_emitter_write_tag_handle(emitter *yaml_emitter_t, value []byte... function yaml_emitter_write_tag_content (line 1258) | func yaml_emitter_write_tag_content(emitter *yaml_emitter_t, value []byt... function yaml_emitter_write_plain_scalar (line 1312) | func yaml_emitter_write_plain_scalar(emitter *yaml_emitter_t, value []by... function yaml_emitter_write_single_quoted_scalar (line 1369) | func yaml_emitter_write_single_quoted_scalar(emitter *yaml_emitter_t, va... function yaml_emitter_write_double_quoted_scalar (line 1428) | func yaml_emitter_write_double_quoted_scalar(emitter *yaml_emitter_t, va... function yaml_emitter_write_block_scalar_hints (line 1549) | func yaml_emitter_write_block_scalar_hints(emitter *yaml_emitter_t, valu... function yaml_emitter_write_literal_scalar (line 1591) | func yaml_emitter_write_literal_scalar(emitter *yaml_emitter_t, value []... function yaml_emitter_write_folded_scalar (line 1628) | func yaml_emitter_write_folded_scalar(emitter *yaml_emitter_t, value []b... FILE: vendor/gopkg.in/yaml.v2/encode.go type encoder (line 14) | type encoder struct method finish (line 33) | func (e *encoder) finish() { method destroy (line 41) | func (e *encoder) destroy() { method emit (line 45) | func (e *encoder) emit() { method must (line 52) | func (e *encoder) must(ok bool) { method marshal (line 62) | func (e *encoder) marshal(tag string, in reflect.Value) { method mapv (line 127) | func (e *encoder) mapv(tag string, in reflect.Value) { method itemsv (line 138) | func (e *encoder) itemsv(tag string, in reflect.Value) { method structv (line 148) | func (e *encoder) structv(tag string, in reflect.Value) { method mappingv (line 187) | func (e *encoder) mappingv(tag string, f func()) { method slicev (line 201) | func (e *encoder) slicev(tag string, in reflect.Value) { method stringv (line 240) | func (e *encoder) stringv(tag string, in reflect.Value) { method boolv (line 264) | func (e *encoder) boolv(tag string, in reflect.Value) { method intv (line 274) | func (e *encoder) intv(tag string, in reflect.Value) { method uintv (line 279) | func (e *encoder) uintv(tag string, in reflect.Value) { method floatv (line 284) | func (e *encoder) floatv(tag string, in reflect.Value) { method nilv (line 298) | func (e *encoder) nilv() { method emitScalar (line 302) | func (e *encoder) emitScalar(value, anchor, tag string, style yaml_sca... function newEncoder (line 21) | func newEncoder() (e *encoder) { function isBase60Float (line 223) | func isBase60Float(s string) (result bool) { FILE: vendor/gopkg.in/yaml.v2/parserc.go function peek_token (line 46) | func peek_token(parser *yaml_parser_t) *yaml_token_t { function skip_token (line 54) | func skip_token(parser *yaml_parser_t) { function yaml_parser_parse (line 62) | func yaml_parser_parse(parser *yaml_parser_t, event *yaml_event_t) bool { function yaml_parser_set_parser_error (line 76) | func yaml_parser_set_parser_error(parser *yaml_parser_t, problem string,... function yaml_parser_set_parser_error_context (line 83) | func yaml_parser_set_parser_error_context(parser *yaml_parser_t, context... function yaml_parser_state_machine (line 93) | func yaml_parser_state_machine(parser *yaml_parser_t, event *yaml_event_... function yaml_parser_parse_stream_start (line 174) | func yaml_parser_parse_stream_start(parser *yaml_parser_t, event *yaml_e... function yaml_parser_parse_document_start (line 198) | func yaml_parser_parse_document_start(parser *yaml_parser_t, event *yaml... function yaml_parser_parse_document_content (line 282) | func yaml_parser_parse_document_content(parser *yaml_parser_t, event *ya... function yaml_parser_parse_document_end (line 305) | func yaml_parser_parse_document_end(parser *yaml_parser_t, event *yaml_e... function yaml_parser_parse_node (line 359) | func yaml_parser_parse_node(parser *yaml_parser_t, event *yaml_event_t, ... function yaml_parser_parse_block_sequence_entry (line 579) | func yaml_parser_parse_block_sequence_entry(parser *yaml_parser_t, event... function yaml_parser_parse_indentless_sequence_entry (line 631) | func yaml_parser_parse_indentless_sequence_entry(parser *yaml_parser_t, ... function yaml_parser_parse_block_mapping_key (line 675) | func yaml_parser_parse_block_mapping_key(parser *yaml_parser_t, event *y... function yaml_parser_parse_block_mapping_value (line 733) | func yaml_parser_parse_block_mapping_value(parser *yaml_parser_t, event ... function yaml_parser_parse_flow_sequence_entry (line 770) | func yaml_parser_parse_flow_sequence_entry(parser *yaml_parser_t, event ... function yaml_parser_parse_flow_sequence_entry_mapping_key (line 833) | func yaml_parser_parse_flow_sequence_entry_mapping_key(parser *yaml_pars... function yaml_parser_parse_flow_sequence_entry_mapping_value (line 854) | func yaml_parser_parse_flow_sequence_entry_mapping_value(parser *yaml_pa... function yaml_parser_parse_flow_sequence_entry_mapping_end (line 878) | func yaml_parser_parse_flow_sequence_entry_mapping_end(parser *yaml_pars... function yaml_parser_parse_flow_mapping_key (line 904) | func yaml_parser_parse_flow_mapping_key(parser *yaml_parser_t, event *ya... function yaml_parser_parse_flow_mapping_value (line 970) | func yaml_parser_parse_flow_mapping_value(parser *yaml_parser_t, event *... function yaml_parser_process_empty_scalar (line 995) | func yaml_parser_process_empty_scalar(parser *yaml_parser_t, event *yaml... function yaml_parser_process_directives (line 1013) | func yaml_parser_process_directives(parser *yaml_parser_t, function yaml_parser_append_tag_directive (line 1075) | func yaml_parser_append_tag_directive(parser *yaml_parser_t, value yaml_... FILE: vendor/gopkg.in/yaml.v2/readerc.go function yaml_parser_set_reader_error (line 8) | func yaml_parser_set_reader_error(parser *yaml_parser_t, problem string,... constant bom_UTF8 (line 18) | bom_UTF8 = "\xef\xbb\xbf" constant bom_UTF16LE (line 19) | bom_UTF16LE = "\xff\xfe" constant bom_UTF16BE (line 20) | bom_UTF16BE = "\xfe\xff" function yaml_parser_determine_encoding (line 25) | func yaml_parser_determine_encoding(parser *yaml_parser_t) bool { function yaml_parser_update_raw_buffer (line 56) | func yaml_parser_update_raw_buffer(parser *yaml_parser_t) bool { function yaml_parser_update_buffer (line 91) | func yaml_parser_update_buffer(parser *yaml_parser_t, length int) bool { FILE: vendor/gopkg.in/yaml.v2/resolve.go type resolveMapItem (line 12) | type resolveMapItem struct function init (line 20) | func init() { constant longTagPrefix (line 59) | longTagPrefix = "tag:yaml.org,2002:" function shortTag (line 61) | func shortTag(tag string) string { function longTag (line 69) | func longTag(tag string) string { function resolvableTag (line 76) | func resolvableTag(tag string) bool { function resolve (line 86) | func resolve(tag string, in string) (rtag string, out interface{}) { function encodeBase64 (line 187) | func encodeBase64(s string) string { FILE: vendor/gopkg.in/yaml.v2/scannerc.go function cache (line 485) | func cache(parser *yaml_parser_t, length int) bool { function skip (line 491) | func skip(parser *yaml_parser_t) { function skip_line (line 498) | func skip_line(parser *yaml_parser_t) { function read (line 515) | func read(parser *yaml_parser_t, s []byte) []byte { function read_line (line 538) | func read_line(parser *yaml_parser_t, s []byte) []byte { function yaml_parser_scan (line 571) | func yaml_parser_scan(parser *yaml_parser_t, token *yaml_token_t) bool { function yaml_parser_set_scanner_error (line 600) | func yaml_parser_set_scanner_error(parser *yaml_parser_t, context string... function yaml_parser_set_scanner_tag_error (line 609) | func yaml_parser_set_scanner_tag_error(parser *yaml_parser_t, directive ... function trace (line 617) | func trace(args ...interface{}) func() { function yaml_parser_fetch_more_tokens (line 626) | func yaml_parser_fetch_more_tokens(parser *yaml_parser_t) bool { function yaml_parser_fetch_next_token (line 665) | func yaml_parser_fetch_next_token(parser *yaml_parser_t) bool { function yaml_parser_stale_simple_keys (line 842) | func yaml_parser_stale_simple_keys(parser *yaml_parser_t) bool { function yaml_parser_save_simple_key (line 867) | func yaml_parser_save_simple_key(parser *yaml_parser_t) bool { function yaml_parser_remove_simple_key (line 900) | func yaml_parser_remove_simple_key(parser *yaml_parser_t) bool { function yaml_parser_increase_flow_level (line 916) | func yaml_parser_increase_flow_level(parser *yaml_parser_t) bool { function yaml_parser_decrease_flow_level (line 926) | func yaml_parser_decrease_flow_level(parser *yaml_parser_t) bool { function yaml_parser_roll_indent (line 937) | func yaml_parser_roll_indent(parser *yaml_parser_t, column, number int, ... function yaml_parser_unroll_indent (line 966) | func yaml_parser_unroll_indent(parser *yaml_parser_t, column int) bool { function yaml_parser_fetch_stream_start (line 990) | func yaml_parser_fetch_stream_start(parser *yaml_parser_t) bool { function yaml_parser_fetch_stream_end (line 1016) | func yaml_parser_fetch_stream_end(parser *yaml_parser_t) bool { function yaml_parser_fetch_directive (line 1047) | func yaml_parser_fetch_directive(parser *yaml_parser_t) bool { function yaml_parser_fetch_document_indicator (line 1071) | func yaml_parser_fetch_document_indicator(parser *yaml_parser_t, typ yam... function yaml_parser_fetch_flow_collection_start (line 1105) | func yaml_parser_fetch_flow_collection_start(parser *yaml_parser_t, typ ... function yaml_parser_fetch_flow_collection_end (line 1136) | func yaml_parser_fetch_flow_collection_end(parser *yaml_parser_t, typ ya... function yaml_parser_fetch_flow_entry (line 1168) | func yaml_parser_fetch_flow_entry(parser *yaml_parser_t) bool { function yaml_parser_fetch_block_entry (line 1193) | func yaml_parser_fetch_block_entry(parser *yaml_parser_t) bool { function yaml_parser_fetch_key (line 1235) | func yaml_parser_fetch_key(parser *yaml_parser_t) bool { function yaml_parser_fetch_value (line 1274) | func yaml_parser_fetch_value(parser *yaml_parser_t) bool { function yaml_parser_fetch_anchor (line 1339) | func yaml_parser_fetch_anchor(parser *yaml_parser_t, typ yaml_token_type... function yaml_parser_fetch_tag (line 1358) | func yaml_parser_fetch_tag(parser *yaml_parser_t) bool { function yaml_parser_fetch_block_scalar (line 1377) | func yaml_parser_fetch_block_scalar(parser *yaml_parser_t, literal bool)... function yaml_parser_fetch_flow_scalar (line 1396) | func yaml_parser_fetch_flow_scalar(parser *yaml_parser_t, single bool) b... function yaml_parser_fetch_plain_scalar (line 1415) | func yaml_parser_fetch_plain_scalar(parser *yaml_parser_t) bool { function yaml_parser_scan_to_next_token (line 1434) | func yaml_parser_scan_to_next_token(parser *yaml_parser_t) bool { function yaml_parser_scan_directive (line 1499) | func yaml_parser_scan_directive(parser *yaml_parser_t, token *yaml_token... function yaml_parser_scan_directive_name (line 1600) | func yaml_parser_scan_directive_name(parser *yaml_parser_t, start_mark y... function yaml_parser_scan_version_directive_value (line 1636) | func yaml_parser_scan_version_directive_value(parser *yaml_parser_t, sta... constant max_number_length (line 1668) | max_number_length = 2 function yaml_parser_scan_version_directive_number (line 1677) | func yaml_parser_scan_version_directive_number(parser *yaml_parser_t, st... function yaml_parser_scan_tag_directive_value (line 1713) | func yaml_parser_scan_tag_directive_value(parser *yaml_parser_t, start_m... function yaml_parser_scan_anchor (line 1771) | func yaml_parser_scan_anchor(parser *yaml_parser_t, token *yaml_token_t,... function yaml_parser_scan_tag (line 1829) | func yaml_parser_scan_tag(parser *yaml_parser_t, token *yaml_token_t) bo... function yaml_parser_scan_tag_handle (line 1914) | func yaml_parser_scan_tag_handle(parser *yaml_parser_t, directive bool, ... function yaml_parser_scan_tag_uri (line 1959) | func yaml_parser_scan_tag_uri(parser *yaml_parser_t, directive bool, hea... function yaml_parser_scan_uri_escapes (line 2017) | func yaml_parser_scan_uri_escapes(parser *yaml_parser_t, directive bool,... function yaml_parser_scan_block_scalar (line 2063) | func yaml_parser_scan_block_scalar(parser *yaml_parser_t, token *yaml_to... function yaml_parser_scan_block_scalar_breaks (line 2251) | func yaml_parser_scan_block_scalar_breaks(parser *yaml_parser_t, indent ... function yaml_parser_scan_flow_scalar (line 2305) | func yaml_parser_scan_flow_scalar(parser *yaml_parser_t, token *yaml_tok... function yaml_parser_scan_plain_scalar (line 2561) | func yaml_parser_scan_plain_scalar(parser *yaml_parser_t, token *yaml_to... FILE: vendor/gopkg.in/yaml.v2/sorter.go type keyList (line 8) | type keyList method Len (line 10) | func (l keyList) Len() int { return len(l) } method Swap (line 11) | func (l keyList) Swap(i, j int) { l[i], l[j] = l[j], l[i] } method Less (line 12) | func (l keyList) Less(i, j int) bool { function keyFloat (line 73) | func keyFloat(v reflect.Value) (f float64, ok bool) { function numLess (line 92) | func numLess(a, b reflect.Value) bool { FILE: vendor/gopkg.in/yaml.v2/writerc.go function yaml_emitter_set_writer_error (line 4) | func yaml_emitter_set_writer_error(emitter *yaml_emitter_t, problem stri... function yaml_emitter_flush (line 11) | func yaml_emitter_flush(emitter *yaml_emitter_t) bool { FILE: vendor/gopkg.in/yaml.v2/yaml.go type MapSlice (line 19) | type MapSlice type MapItem (line 22) | type MapItem struct type Unmarshaler (line 31) | type Unmarshaler interface type Marshaler (line 41) | type Marshaler interface function Unmarshal (line 79) | func Unmarshal(in []byte, out interface{}) (err error) { function UnmarshalStrict (line 86) | func UnmarshalStrict(in []byte, out interface{}) (err error) { function unmarshal (line 90) | func unmarshal(in []byte, out interface{}, strict bool) (err error) { function Marshal (line 149) | func Marshal(in interface{}) (out []byte, err error) { function handleErr (line 159) | func handleErr(err *error) { type yamlError (line 169) | type yamlError struct function fail (line 173) | func fail(err error) { function failf (line 177) | func failf(format string, args ...interface{}) { type TypeError (line 185) | type TypeError struct method Error (line 189) | func (e *TypeError) Error() string { type structInfo (line 200) | type structInfo struct type fieldInfo (line 209) | type fieldInfo struct function getStructInfo (line 222) | func getStructInfo(st reflect.Type) (*structInfo, error) { function isZero (line 326) | func isZero(v reflect.Value) bool { FILE: vendor/gopkg.in/yaml.v2/yamlh.go type yaml_version_directive_t (line 8) | type yaml_version_directive_t struct type yaml_tag_directive_t (line 14) | type yaml_tag_directive_t struct type yaml_encoding_t (line 19) | type yaml_encoding_t constant yaml_ANY_ENCODING (line 24) | yaml_ANY_ENCODING yaml_encoding_t = iota constant yaml_UTF8_ENCODING (line 26) | yaml_UTF8_ENCODING constant yaml_UTF16LE_ENCODING (line 27) | yaml_UTF16LE_ENCODING constant yaml_UTF16BE_ENCODING (line 28) | yaml_UTF16BE_ENCODING type yaml_break_t (line 31) | type yaml_break_t constant yaml_ANY_BREAK (line 36) | yaml_ANY_BREAK yaml_break_t = iota constant yaml_CR_BREAK (line 38) | yaml_CR_BREAK constant yaml_LN_BREAK (line 39) | yaml_LN_BREAK constant yaml_CRLN_BREAK (line 40) | yaml_CRLN_BREAK type yaml_error_type_t (line 43) | type yaml_error_type_t constant yaml_NO_ERROR (line 48) | yaml_NO_ERROR yaml_error_type_t = iota constant yaml_MEMORY_ERROR (line 50) | yaml_MEMORY_ERROR constant yaml_READER_ERROR (line 51) | yaml_READER_ERROR constant yaml_SCANNER_ERROR (line 52) | yaml_SCANNER_ERROR constant yaml_PARSER_ERROR (line 53) | yaml_PARSER_ERROR constant yaml_COMPOSER_ERROR (line 54) | yaml_COMPOSER_ERROR constant yaml_WRITER_ERROR (line 55) | yaml_WRITER_ERROR constant yaml_EMITTER_ERROR (line 56) | yaml_EMITTER_ERROR type yaml_mark_t (line 60) | type yaml_mark_t struct type yaml_style_t (line 68) | type yaml_style_t type yaml_scalar_style_t (line 70) | type yaml_scalar_style_t constant yaml_ANY_SCALAR_STYLE (line 75) | yaml_ANY_SCALAR_STYLE yaml_scalar_style_t = iota constant yaml_PLAIN_SCALAR_STYLE (line 77) | yaml_PLAIN_SCALAR_STYLE constant yaml_SINGLE_QUOTED_SCALAR_STYLE (line 78) | yaml_SINGLE_QUOTED_SCALAR_STYLE constant yaml_DOUBLE_QUOTED_SCALAR_STYLE (line 79) | yaml_DOUBLE_QUOTED_SCALAR_STYLE constant yaml_LITERAL_SCALAR_STYLE (line 80) | yaml_LITERAL_SCALAR_STYLE constant yaml_FOLDED_SCALAR_STYLE (line 81) | yaml_FOLDED_SCALAR_STYLE type yaml_sequence_style_t (line 84) | type yaml_sequence_style_t constant yaml_ANY_SEQUENCE_STYLE (line 89) | yaml_ANY_SEQUENCE_STYLE yaml_sequence_style_t = iota constant yaml_BLOCK_SEQUENCE_STYLE (line 91) | yaml_BLOCK_SEQUENCE_STYLE constant yaml_FLOW_SEQUENCE_STYLE (line 92) | yaml_FLOW_SEQUENCE_STYLE type yaml_mapping_style_t (line 95) | type yaml_mapping_style_t constant yaml_ANY_MAPPING_STYLE (line 100) | yaml_ANY_MAPPING_STYLE yaml_mapping_style_t = iota constant yaml_BLOCK_MAPPING_STYLE (line 102) | yaml_BLOCK_MAPPING_STYLE constant yaml_FLOW_MAPPING_STYLE (line 103) | yaml_FLOW_MAPPING_STYLE type yaml_token_type_t (line 108) | type yaml_token_type_t method String (line 143) | func (tt yaml_token_type_t) String() string { constant yaml_NO_TOKEN (line 113) | yaml_NO_TOKEN yaml_token_type_t = iota constant yaml_STREAM_START_TOKEN (line 115) | yaml_STREAM_START_TOKEN constant yaml_STREAM_END_TOKEN (line 116) | yaml_STREAM_END_TOKEN constant yaml_VERSION_DIRECTIVE_TOKEN (line 118) | yaml_VERSION_DIRECTIVE_TOKEN constant yaml_TAG_DIRECTIVE_TOKEN (line 119) | yaml_TAG_DIRECTIVE_TOKEN constant yaml_DOCUMENT_START_TOKEN (line 120) | yaml_DOCUMENT_START_TOKEN constant yaml_DOCUMENT_END_TOKEN (line 121) | yaml_DOCUMENT_END_TOKEN constant yaml_BLOCK_SEQUENCE_START_TOKEN (line 123) | yaml_BLOCK_SEQUENCE_START_TOKEN constant yaml_BLOCK_MAPPING_START_TOKEN (line 124) | yaml_BLOCK_MAPPING_START_TOKEN constant yaml_BLOCK_END_TOKEN (line 125) | yaml_BLOCK_END_TOKEN constant yaml_FLOW_SEQUENCE_START_TOKEN (line 127) | yaml_FLOW_SEQUENCE_START_TOKEN constant yaml_FLOW_SEQUENCE_END_TOKEN (line 128) | yaml_FLOW_SEQUENCE_END_TOKEN constant yaml_FLOW_MAPPING_START_TOKEN (line 129) | yaml_FLOW_MAPPING_START_TOKEN constant yaml_FLOW_MAPPING_END_TOKEN (line 130) | yaml_FLOW_MAPPING_END_TOKEN constant yaml_BLOCK_ENTRY_TOKEN (line 132) | yaml_BLOCK_ENTRY_TOKEN constant yaml_FLOW_ENTRY_TOKEN (line 133) | yaml_FLOW_ENTRY_TOKEN constant yaml_KEY_TOKEN (line 134) | yaml_KEY_TOKEN constant yaml_VALUE_TOKEN (line 135) | yaml_VALUE_TOKEN constant yaml_ALIAS_TOKEN (line 137) | yaml_ALIAS_TOKEN constant yaml_ANCHOR_TOKEN (line 138) | yaml_ANCHOR_TOKEN constant yaml_TAG_TOKEN (line 139) | yaml_TAG_TOKEN constant yaml_SCALAR_TOKEN (line 140) | yaml_SCALAR_TOKEN type yaml_token_t (line 194) | type yaml_token_t struct type yaml_event_type_t (line 223) | type yaml_event_type_t constant yaml_NO_EVENT (line 228) | yaml_NO_EVENT yaml_event_type_t = iota constant yaml_STREAM_START_EVENT (line 230) | yaml_STREAM_START_EVENT constant yaml_STREAM_END_EVENT (line 231) | yaml_STREAM_END_EVENT constant yaml_DOCUMENT_START_EVENT (line 232) | yaml_DOCUMENT_START_EVENT constant yaml_DOCUMENT_END_EVENT (line 233) | yaml_DOCUMENT_END_EVENT constant yaml_ALIAS_EVENT (line 234) | yaml_ALIAS_EVENT constant yaml_SCALAR_EVENT (line 235) | yaml_SCALAR_EVENT constant yaml_SEQUENCE_START_EVENT (line 236) | yaml_SEQUENCE_START_EVENT constant yaml_SEQUENCE_END_EVENT (line 237) | yaml_SEQUENCE_END_EVENT constant yaml_MAPPING_START_EVENT (line 238) | yaml_MAPPING_START_EVENT constant yaml_MAPPING_END_EVENT (line 239) | yaml_MAPPING_END_EVENT type yaml_event_t (line 243) | type yaml_event_t struct method scalar_style (line 280) | func (e *yaml_event_t) scalar_style() yaml_scalar_style_t { return... method sequence_style (line 281) | func (e *yaml_event_t) sequence_style() yaml_sequence_style_t { return... method mapping_style (line 282) | func (e *yaml_event_t) mapping_style() yaml_mapping_style_t { return... constant yaml_NULL_TAG (line 287) | yaml_NULL_TAG = "tag:yaml.org,2002:null" constant yaml_BOOL_TAG (line 288) | yaml_BOOL_TAG = "tag:yaml.org,2002:bool" constant yaml_STR_TAG (line 289) | yaml_STR_TAG = "tag:yaml.org,2002:str" constant yaml_INT_TAG (line 290) | yaml_INT_TAG = "tag:yaml.org,2002:int" constant yaml_FLOAT_TAG (line 291) | yaml_FLOAT_TAG = "tag:yaml.org,2002:float" constant yaml_TIMESTAMP_TAG (line 292) | yaml_TIMESTAMP_TAG = "tag:yaml.org,2002:timestamp" constant yaml_SEQ_TAG (line 294) | yaml_SEQ_TAG = "tag:yaml.org,2002:seq" constant yaml_MAP_TAG (line 295) | yaml_MAP_TAG = "tag:yaml.org,2002:map" constant yaml_BINARY_TAG (line 298) | yaml_BINARY_TAG = "tag:yaml.org,2002:binary" constant yaml_MERGE_TAG (line 299) | yaml_MERGE_TAG = "tag:yaml.org,2002:merge" constant yaml_DEFAULT_SCALAR_TAG (line 301) | yaml_DEFAULT_SCALAR_TAG = yaml_STR_TAG constant yaml_DEFAULT_SEQUENCE_TAG (line 302) | yaml_DEFAULT_SEQUENCE_TAG = yaml_SEQ_TAG constant yaml_DEFAULT_MAPPING_TAG (line 303) | yaml_DEFAULT_MAPPING_TAG = yaml_MAP_TAG type yaml_node_type_t (line 306) | type yaml_node_type_t constant yaml_NO_NODE (line 311) | yaml_NO_NODE yaml_node_type_t = iota constant yaml_SCALAR_NODE (line 313) | yaml_SCALAR_NODE constant yaml_SEQUENCE_NODE (line 314) | yaml_SEQUENCE_NODE constant yaml_MAPPING_NODE (line 315) | yaml_MAPPING_NODE type yaml_node_item_t (line 319) | type yaml_node_item_t type yaml_node_pair_t (line 322) | type yaml_node_pair_t struct type yaml_node_t (line 328) | type yaml_node_t struct type yaml_document_t (line 362) | type yaml_document_t struct type yaml_read_handler_t (line 397) | type yaml_read_handler_t type yaml_simple_key_t (line 400) | type yaml_simple_key_t struct type yaml_parser_state_t (line 408) | type yaml_parser_state_t method String (line 438) | func (ps yaml_parser_state_t) String() string { constant yaml_PARSE_STREAM_START_STATE (line 411) | yaml_PARSE_STREAM_START_STATE yaml_parser_state_t = iota constant yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE (line 413) | yaml_PARSE_IMPLICIT_DOCUMENT_START_STATE constant yaml_PARSE_DOCUMENT_START_STATE (line 414) | yaml_PARSE_DOCUMENT_START_STATE constant yaml_PARSE_DOCUMENT_CONTENT_STATE (line 415) | yaml_PARSE_DOCUMENT_CONTENT_STATE constant yaml_PARSE_DOCUMENT_END_STATE (line 416) | yaml_PARSE_DOCUMENT_END_STATE constant yaml_PARSE_BLOCK_NODE_STATE (line 417) | yaml_PARSE_BLOCK_NODE_STATE constant yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE (line 418) | yaml_PARSE_BLOCK_NODE_OR_INDENTLESS_SEQUENCE_STATE constant yaml_PARSE_FLOW_NODE_STATE (line 419) | yaml_PARSE_FLOW_NODE_STATE constant yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE (line 420) | yaml_PARSE_BLOCK_SEQUENCE_FIRST_ENTRY_STATE constant yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE (line 421) | yaml_PARSE_BLOCK_SEQUENCE_ENTRY_STATE constant yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE (line 422) | yaml_PARSE_INDENTLESS_SEQUENCE_ENTRY_STATE constant yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE (line 423) | yaml_PARSE_BLOCK_MAPPING_FIRST_KEY_STATE constant yaml_PARSE_BLOCK_MAPPING_KEY_STATE (line 424) | yaml_PARSE_BLOCK_MAPPING_KEY_STATE constant yaml_PARSE_BLOCK_MAPPING_VALUE_STATE (line 425) | yaml_PARSE_BLOCK_MAPPING_VALUE_STATE constant yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE (line 426) | yaml_PARSE_FLOW_SEQUENCE_FIRST_ENTRY_STATE constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE (line 427) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_STATE constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE (line 428) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_KEY_STATE constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE (line 429) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_VALUE_STATE constant yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE (line 430) | yaml_PARSE_FLOW_SEQUENCE_ENTRY_MAPPING_END_STATE constant yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE (line 431) | yaml_PARSE_FLOW_MAPPING_FIRST_KEY_STATE constant yaml_PARSE_FLOW_MAPPING_KEY_STATE (line 432) | yaml_PARSE_FLOW_MAPPING_KEY_STATE constant yaml_PARSE_FLOW_MAPPING_VALUE_STATE (line 433) | yaml_PARSE_FLOW_MAPPING_VALUE_STATE constant yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE (line 434) | yaml_PARSE_FLOW_MAPPING_EMPTY_VALUE_STATE constant yaml_PARSE_END_STATE (line 435) | yaml_PARSE_END_STATE type yaml_alias_data_t (line 493) | type yaml_alias_data_t struct type yaml_parser_t (line 503) | type yaml_parser_t struct type yaml_write_handler_t (line 591) | type yaml_write_handler_t type yaml_emitter_state_t (line 593) | type yaml_emitter_state_t constant yaml_EMIT_STREAM_START_STATE (line 598) | yaml_EMIT_STREAM_START_STATE yaml_emitter_state_t = iota constant yaml_EMIT_FIRST_DOCUMENT_START_STATE (line 600) | yaml_EMIT_FIRST_DOCUMENT_START_STATE constant yaml_EMIT_DOCUMENT_START_STATE (line 601) | yaml_EMIT_DOCUMENT_START_STATE constant yaml_EMIT_DOCUMENT_CONTENT_STATE (line 602) | yaml_EMIT_DOCUMENT_CONTENT_STATE constant yaml_EMIT_DOCUMENT_END_STATE (line 603) | yaml_EMIT_DOCUMENT_END_STATE constant yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE (line 604) | yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE constant yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE (line 605) | yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE constant yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE (line 606) | yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE constant yaml_EMIT_FLOW_MAPPING_KEY_STATE (line 607) | yaml_EMIT_FLOW_MAPPING_KEY_STATE constant yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE (line 608) | yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE constant yaml_EMIT_FLOW_MAPPING_VALUE_STATE (line 609) | yaml_EMIT_FLOW_MAPPING_VALUE_STATE constant yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE (line 610) | yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE constant yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE (line 611) | yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE constant yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE (line 612) | yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE constant yaml_EMIT_BLOCK_MAPPING_KEY_STATE (line 613) | yaml_EMIT_BLOCK_MAPPING_KEY_STATE constant yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE (line 614) | yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE constant yaml_EMIT_BLOCK_MAPPING_VALUE_STATE (line 615) | yaml_EMIT_BLOCK_MAPPING_VALUE_STATE constant yaml_EMIT_END_STATE (line 616) | yaml_EMIT_END_STATE type yaml_emitter_t (line 623) | type yaml_emitter_t struct FILE: vendor/gopkg.in/yaml.v2/yamlprivateh.go constant input_raw_buffer_size (line 5) | input_raw_buffer_size = 512 constant input_buffer_size (line 9) | input_buffer_size = input_raw_buffer_size * 3 constant output_buffer_size (line 12) | output_buffer_size = 128 constant output_raw_buffer_size (line 16) | output_raw_buffer_size = (output_buffer_size*2 + 2) constant initial_stack_size (line 19) | initial_stack_size = 16 constant initial_queue_size (line 20) | initial_queue_size = 16 constant initial_string_size (line 21) | initial_string_size = 16 function is_alpha (line 26) | func is_alpha(b []byte, i int) bool { function is_digit (line 31) | func is_digit(b []byte, i int) bool { function as_digit (line 36) | func as_digit(b []byte, i int) int { function is_hex (line 41) | func is_hex(b []byte, i int) bool { function as_hex (line 46) | func as_hex(b []byte, i int) int { function is_ascii (line 58) | func is_ascii(b []byte, i int) bool { function is_printable (line 63) | func is_printable(b []byte, i int) bool { function is_z (line 76) | func is_z(b []byte, i int) bool { function is_bom (line 81) | func is_bom(b []byte, i int) bool { function is_space (line 86) | func is_space(b []byte, i int) bool { function is_tab (line 91) | func is_tab(b []byte, i int) bool { function is_blank (line 96) | func is_blank(b []byte, i int) bool { function is_break (line 102) | func is_break(b []byte, i int) bool { function is_crlf (line 110) | func is_crlf(b []byte, i int) bool { function is_breakz (line 115) | func is_breakz(b []byte, i int) bool { function is_spacez (line 128) | func is_spacez(b []byte, i int) bool { function is_blankz (line 142) | func is_blankz(b []byte, i int) bool { function width (line 156) | func width(b byte) int { FILE: website/core/Footer.js class Footer (line 5) | class Footer extends React.Component { method render (line 6) | render() { FILE: website/pages/en/help.js class Help (line 9) | class Help extends React.Component { method render (line 10) | render() { FILE: website/pages/en/index.js class Button (line 10) | class Button extends React.Component { method render (line 11) | render() { function assetUrl (line 22) | function assetUrl(img) { function docUrl (line 26) | function docUrl(doc, language) { class HomeSplash (line 63) | class HomeSplash extends React.Component { method render (line 64) | render() { class Index (line 82) | class Index extends React.Component { method render (line 83) | render() { FILE: website/pages/en/users.js class Users (line 8) | class Users extends React.Component { method render (line 9) | render() {